:root {
  --ink: #111827;
  --ink-soft: #374151;
  --muted: #6b7280;
  --paper: #ffffff;
  --canvas: #f6f7fb;
  --canvas-deep: #eceff5;
  --line: #e4e7ee;
  --accent: #6d3ce8;
  --accent-dark: #4d24af;
  --accent-pale: #f1ecff;
  --success: #16734b;
  --danger: #b33a3a;
  --radius: 14px;
  --shadow: 0 18px 48px rgba(17, 24, 39, .10);
  --shadow-soft: 0 8px 26px rgba(17, 24, 39, .06);
  --shell: 1200px;
}

* { 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", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body, button, input, textarea, select { font: inherit; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
::selection { color: #fff; background: var(--accent); }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.narrow { width: min(calc(100% - 48px), 880px); }
.section { padding: 96px 0; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; padding: 10px 16px; border-radius: 8px; color: #fff; background: var(--ink); }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(228, 231, 238, .86);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 4px 20px rgba(17, 24, 39, .035);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { flex: 0 1 238px; min-width: 138px; display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: auto; max-width: 205px; height: 45px; object-fit: contain; object-position: left center; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: linear-gradient(145deg, var(--accent), var(--accent-dark)); font-weight: 700; }
.brand-name { overflow: hidden; font-size: 17px; font-weight: 700; letter-spacing: .01em; text-overflow: ellipsis; white-space: nowrap; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.main-nav a { position: relative; padding: 9px 12px; border-radius: 8px; color: var(--ink-soft); font-size: 14px; font-weight: 500; white-space: nowrap; transition: color .2s ease, background .2s ease; }
.main-nav a:hover { color: var(--accent-dark); background: #f7f5fd; }
.main-nav a.is-active { color: var(--accent-dark); background: var(--accent-pale); font-weight: 650; }
.menu-toggle { display: none; width: 42px; height: 42px; margin-left: auto; padding: 10px; border: 0; border-radius: 9px; background: var(--canvas); cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--ink); transition: transform .2s, opacity .2s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: 620px; overflow: hidden; }
.hero-with-media { color: #fff; background: #151b29; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { visibility: hidden; opacity: 0; transition: opacity .7s ease, visibility .7s ease; }
.hero-slide.is-active { visibility: visible; opacity: 1; }
.hero-slide > img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.002); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 15, 28, .88) 0%, rgba(10, 15, 28, .68) 44%, rgba(10, 15, 28, .22) 78%), linear-gradient(0deg, rgba(8, 12, 24, .38), transparent 58%); }
.hero-copy { position: relative; z-index: 2; min-height: 620px; padding-top: 96px; padding-bottom: 112px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.hero-copy h1 { max-width: 790px; margin: 18px 0 24px; font-size: clamp(44px, 5.2vw, 68px); font-weight: 750; line-height: 1.14; letter-spacing: -.035em; }
.hero-with-media .hero-copy h1 { text-shadow: 0 3px 24px rgba(0, 0, 0, .24); }
.hero-description { max-width: 680px; margin: 0; color: rgba(255, 255, 255, .82); font-size: clamp(17px, 1.7vw, 20px); line-height: 1.85; }
.hero-plain { min-height: 580px; color: var(--ink); background: radial-gradient(circle at 86% 24%, rgba(109, 60, 232, .13), transparent 25%), linear-gradient(125deg, #f8f7fc 0%, #fff 70%); }
.hero-plain::before { content: ""; position: absolute; top: 110px; right: 8vw; width: 320px; height: 320px; border: 1px solid rgba(109, 60, 232, .18); border-radius: 50%; }
.hero-plain::after { content: ""; position: absolute; top: 165px; right: calc(8vw + 55px); width: 210px; height: 210px; border-radius: 50%; background: rgba(109, 60, 232, .06); }
.hero-plain .hero-description { color: var(--ink-soft); }
.eyebrow, .section-kicker { margin: 0; color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: .16em; }
.eyebrow { padding: 6px 11px; border-radius: 999px; background: var(--accent-pale); letter-spacing: .1em; }
.hero-with-media .eyebrow { color: #fff; background: rgba(255, 255, 255, .14); backdrop-filter: blur(10px); }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 26px; }
.button { min-height: 48px; padding: 11px 24px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 10px; font-size: 14px; font-weight: 650; cursor: pointer; transition: transform .2s, box-shadow .2s, color .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(17, 24, 39, .14); }
.button-dark { color: #fff; background: var(--ink); border-color: var(--ink); }
.button-dark:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.button-light { color: var(--ink); background: #fff; border-color: #fff; }
.button-light:hover { color: #fff; background: var(--accent); border-color: var(--accent); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 14px; font-weight: 650; }
.text-link span { transition: transform .2s; }
.text-link:hover { color: var(--accent-dark); }
.text-link:hover span { transform: translateX(4px); }
.text-link.light { color: #fff; }
.slider-controls { position: absolute; z-index: 5; right: 0; bottom: 34px; left: 0; display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.slider-controls > button { width: 42px; height: 42px; border: 1px solid rgba(255, 255, 255, .42); border-radius: 9px; color: #fff; background: rgba(10, 15, 28, .22); backdrop-filter: blur(8px); cursor: pointer; }
.slider-dots { display: flex; gap: 8px; }
.slider-dots button { width: 22px; height: 3px; padding: 0; border: 0; border-radius: 4px; background: rgba(255, 255, 255, .42); cursor: pointer; transition: width .2s, background .2s; }
.slider-dots button.is-active { width: 40px; background: #fff; }

.split-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 78px; align-items: start; }
.split-layout h2, .section-heading h2, .closing-panel h2, .contact-copy h2, .about-layout h2 { margin: 14px 0 0; font-size: clamp(34px, 3.6vw, 48px); font-weight: 720; line-height: 1.28; letter-spacing: -.03em; }
.company-intro .split-layout { padding: 54px 58px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(135deg, #fff 0%, #faf9fd 100%); box-shadow: var(--shadow-soft); }
.intro-body { padding-top: 30px; }
.intro-body > p { margin: 0 0 28px; color: var(--ink-soft); font-size: 18px; line-height: 1.95; }
.section-heading { margin-bottom: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: end; }
.section-heading > div:last-child { padding-bottom: 4px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.section-heading > div:last-child > p { max-width: 400px; margin: 0; color: var(--muted); }
.product-section, .muted-section { background: var(--canvas); }
.news-home-section { background: #fff; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.content-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 4px 16px rgba(17, 24, 39, .035); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.content-card:hover { transform: translateY(-5px); border-color: #d8d0f1; box-shadow: var(--shadow); }
.card-media { height: 226px; overflow: hidden; display: block; background: var(--canvas-deep); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.content-card:hover .card-media img { transform: scale(1.035); }
.card-media.no-image { display: grid; place-items: center; background: linear-gradient(145deg, #f7f5fd, var(--accent-pale)); }
.card-media.no-image span { color: var(--accent-dark); font-size: 48px; font-weight: 700; }
.card-body { padding: 25px 26px 27px; }
.content-label { margin: 0 0 9px; color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.card-body h3 { margin: 0; font-size: 22px; font-weight: 680; line-height: 1.45; }
.card-body h3 a:hover { color: var(--accent-dark); }
.card-body > p:not(.content-label) { min-height: 54px; margin: 12px 0 21px; color: var(--muted); font-size: 14px; line-height: 1.85; }
.card-link { display: inline-flex; gap: 9px; color: var(--ink-soft); font-size: 13px; font-weight: 650; }
.card-link:hover { color: var(--accent-dark); }
.case-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.case-card:first-child .card-media { height: 226px; }
.news-list { display: grid; gap: 12px; }
.news-row { min-height: 156px; padding: 21px 24px; display: grid; grid-template-columns: 78px 1fr 210px; gap: 28px; align-items: center; border: 1px solid var(--line); border-radius: 14px; background: #fff; transition: border-color .2s, box-shadow .2s; }
.news-row:hover { border-color: #d8d0f1; box-shadow: var(--shadow-soft); }
.news-row time { align-self: stretch; padding: 14px 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 10px; color: var(--muted); background: var(--accent-pale); text-align: center; }
.news-row time strong { display: block; color: var(--accent-dark); font-size: 32px; font-weight: 700; line-height: 1; }
.news-row time span { display: block; margin-top: 8px; font-size: 11px; letter-spacing: .05em; }
.news-row h3 { margin: 3px 0 8px; font-size: 21px; font-weight: 680; line-height: 1.45; }
.news-row h3 a:hover { color: var(--accent); }
.news-row div > p:last-child { margin: 0; color: var(--muted); font-size: 14px; }
.news-thumb { height: 112px; overflow: hidden; border-radius: 10px; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.news-row:hover .news-thumb img { transform: scale(1.035); }
.closing-section { padding: 0 0 96px; color: #fff; background: #fff; }
.closing-panel { padding: 62px 66px; display: grid; grid-template-columns: 1fr 1fr; gap: 86px; align-items: end; border-radius: 24px; background: linear-gradient(130deg, #171f31 0%, #262042 100%); box-shadow: var(--shadow); }
.closing-panel .section-kicker { color: #c7b8f5; }
.closing-panel p { margin: 0 0 26px; color: rgba(255, 255, 255, .7); }

.page-intro { position: relative; overflow: hidden; padding: 74px 0 70px; color: #fff; background: linear-gradient(125deg, #111827 0%, #1b2235 58%, #281f48 100%); }
.page-intro::before { content: ""; position: absolute; inset: 0; opacity: .34; background-image: linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(90deg, transparent 12%, #000 58%, #000); }
.page-intro::after { content: ""; position: absolute; top: -150px; right: 5%; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(139, 92, 246, .34), rgba(109, 60, 232, .08) 48%, transparent 70%); }
.page-intro-shell { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; align-items: center; }
.page-intro-content { max-width: 820px; }
.page-intro .breadcrumb { margin-bottom: 25px; color: rgba(255, 255, 255, .56); }
.page-intro .breadcrumb a:hover { color: #fff; }
.page-intro .section-kicker { color: #bfaeff; }
.page-intro h1 { max-width: 920px; margin: 14px 0 17px; color: #fff; font-size: clamp(42px, 4.8vw, 60px); font-weight: 740; line-height: 1.18; letter-spacing: -.035em; }
.page-intro-content > p:not(.section-kicker):not(.detail-lead) { max-width: 760px; margin: 0; color: rgba(255, 255, 255, .72); font-size: 17px; line-height: 1.85; }
.listing-section { min-height: 430px; }
.listing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.quiet-empty { min-height: 260px; display: grid; place-items: center; border: 1px dashed #ccd1dc; border-radius: var(--radius); color: var(--muted); background: var(--canvas); }
.promo-grid { display: grid; gap: 30px; }
.promo-card { overflow: hidden; scroll-margin-top: 100px; display: grid; grid-template-columns: 1.15fr .85fr; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-soft); }
.promo-media { min-height: 350px; background: var(--canvas-deep); }
.promo-media img, .promo-media video { width: 100%; height: 100%; max-height: 500px; }
.promo-media img { object-fit: cover; }
.promo-media video { object-fit: contain; background: #0d1220; }
.document-cover { height: 100%; min-height: 350px; display: grid; place-items: center; color: var(--accent-dark); background: linear-gradient(135deg, var(--canvas), var(--accent-pale)); font-size: 34px; font-weight: 700; }
.promo-body { padding: 52px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.promo-body h2 { margin: 0 0 18px; font-size: 32px; font-weight: 700; }
.promo-body p { margin: 0 0 28px; color: var(--muted); }

.about-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr); gap: 78px; align-items: start; }
.prose { color: var(--ink-soft); font-size: 17px; line-height: 1.9; }
.prose > *:first-child { margin-top: 0; }
.prose h2 { color: var(--ink); }
.prose h3 { margin: 40px 0 14px; color: var(--ink); font-size: 27px; font-weight: 700; }
.prose h4 { color: var(--ink); font-size: 20px; }
.prose p { margin: 0 0 20px; }
.prose ul, .prose ol { padding-left: 24px; }
.prose blockquote { margin: 30px 0; padding: 18px 22px; border-left: 3px solid var(--accent); border-radius: 0 10px 10px 0; color: var(--ink); background: var(--canvas); font-size: 18px; }
.prose img { height: auto; margin: 30px auto; border-radius: 12px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose table { width: 100%; margin: 28px 0; border-collapse: collapse; }
.prose th, .prose td { padding: 12px; border: 1px solid var(--line); text-align: left; }
.fact-panel { position: sticky; top: 108px; padding: 32px; border: 1px solid var(--line); border-top: 4px solid var(--accent); border-radius: 14px; background: var(--canvas); }
.fact-panel dl { margin: 0; padding: 17px 0; border-bottom: 1px solid var(--line); }
.fact-panel dl:last-child { border-bottom: 0; }
.fact-panel dt { color: var(--muted); font-size: 12px; }
.fact-panel dd { margin: 5px 0 0; color: var(--ink); font-size: 15px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 12px; }
.tag-list span { padding: 11px 17px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); background: #fff; }

.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 76px; align-items: start; }
.contact-copy h2 { margin-bottom: 42px; }
.contact-copy dl { margin: 0; padding: 18px 0; border-top: 1px solid var(--line); }
.contact-copy dt { color: var(--muted); font-size: 12px; }
.contact-copy dd { margin: 5px 0 0; color: var(--ink); font-size: 17px; }
.contact-copy a:hover { color: var(--accent); }
.contact-form-panel { padding: 42px; border: 1px solid var(--line); border-radius: 18px; background: var(--canvas); box-shadow: var(--shadow-soft); }
.contact-form-panel form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form-panel label { display: grid; gap: 8px; color: var(--ink-soft); font-size: 13px; }
.contact-form-panel label span { color: var(--danger); }
.contact-form-panel input, .contact-form-panel textarea, .contact-form-panel select { width: 100%; border: 1px solid #cfd4de; border-radius: 9px; outline: 0; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s; }
.contact-form-panel input, .contact-form-panel select { height: 48px; padding: 0 14px; }
.contact-form-panel textarea { padding: 12px 14px; resize: vertical; }
.contact-form-panel input:focus, .contact-form-panel textarea:focus, .contact-form-panel select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(109, 60, 232, .11); }
.contact-form-panel .full { grid-column: 1 / -1; }
.form-notice { margin-bottom: 22px; padding: 13px 16px; border-left: 3px solid; border-radius: 8px; background: #fff; font-size: 14px; }
.form-notice.success { border-color: var(--success); color: var(--success); }
.form-notice.error { border-color: var(--danger); color: var(--danger); }

.detail-header { padding: 74px 0 70px; }
.breadcrumb { margin-bottom: 42px; display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 13px; }
.breadcrumb a:hover { color: var(--accent); }
.detail-lead { max-width: 760px; margin: 0 0 20px; color: rgba(255, 255, 255, .74); font-size: 18px; }
.detail-header time { color: rgba(255, 255, 255, .52); font-size: 13px; }
.detail-cover { overflow: hidden; margin: 0 0 50px; border-radius: 16px; box-shadow: var(--shadow-soft); }
.detail-cover img { width: 100%; max-height: 580px; object-fit: cover; }
.detail-video { width: 100%; margin-top: 42px; border-radius: 12px; background: #111; }
.geo-summary { margin: 0 0 32px; padding: 22px 26px; border-left: 3px solid var(--accent); border-radius: 0 10px 10px 0; color: var(--ink-soft); background: var(--canvas); }
.geo-summary strong { display: block; margin-bottom: 8px; color: var(--ink); font-size: 15px; }
.geo-summary p { margin: 0; }
.detail-download { margin-top: 34px; }
.detail-back { margin-top: 66px; padding-top: 26px; border-top: 1px solid var(--line); }
.sitemap-list { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.sitemap-list h2 { margin: 0 0 20px; font-size: 28px; font-weight: 700; }
.sitemap-list a { padding: 14px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.sitemap-list a:hover { color: var(--accent); }
.status-page { min-height: 620px; padding: 80px 24px; display: grid; place-items: center; text-align: center; background: var(--canvas); }
.status-code { margin: 0; color: var(--accent); font-size: 88px; font-weight: 750; line-height: 1; }
.status-page h1 { margin: 18px 0 12px; font-size: 36px; font-weight: 700; }
.status-page p:not(.status-code) { margin: 0 0 28px; color: var(--muted); }

.site-footer { color: rgba(255, 255, 255, .72); background: #121827; }
.footer-main { padding: 72px 0 60px; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 52px; }
.footer-main h2 { margin: 0 0 16px; color: #fff; font-size: 28px; font-weight: 700; }
.footer-main h3 { margin: 0 0 18px; color: #fff; font-size: 13px; letter-spacing: .06em; }
.footer-main p { margin: 0 0 10px; font-size: 13px; }
.footer-brand p { max-width: 340px; line-height: 1.8; }
.footer-main > div:not(.footer-brand) a { margin-bottom: 9px; display: block; font-size: 13px; }
.footer-main a:hover { color: #fff; }
.footer-bottom { padding: 18px 0; display: flex; justify-content: space-between; gap: 28px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; flex-wrap: wrap; gap: 22px; }

@media (max-width: 1080px) {
  .header-inner { gap: 16px; }
  .brand { flex-basis: 190px; }
  .main-nav a { padding-inline: 9px; font-size: 13px; }
  .card-grid, .listing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
  .shell, .narrow { width: min(calc(100% - 32px), var(--shell)); }
  .section { padding: 72px 0; }
  .header-inner { min-height: 68px; }
  .brand img { height: 38px; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 68px; right: 0; left: 0; margin: 0; padding: 10px 16px 20px; display: none; align-items: stretch; flex-direction: column; gap: 3px; border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 18px 30px rgba(17, 24, 39, .09); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 11px 12px; font-size: 15px; }
  .hero, .hero-copy { min-height: 540px; }
  .hero-copy { padding-top: 76px; padding-bottom: 92px; }
  .hero-copy h1 { font-size: clamp(40px, 9vw, 56px); }
  .hero-plain::before, .hero-plain::after { display: none; }
  .split-layout, .section-heading, .closing-panel, .about-layout, .contact-layout { grid-template-columns: 1fr; gap: 34px; }
  .company-intro .split-layout { padding: 38px; }
  .intro-body { padding-top: 0; }
  .section-heading > div:last-child { align-items: flex-start; flex-direction: column; }
  .news-row { grid-template-columns: 68px 1fr; gap: 20px; }
  .news-thumb { display: none; }
  .closing-panel { padding: 48px; gap: 30px; }
  .fact-panel { position: static; }
  .contact-form-panel { padding: 34px 26px; }
  .promo-card { grid-template-columns: 1fr; }
  .promo-body { padding: 38px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .section { padding: 58px 0; }
  .hero, .hero-copy { min-height: 500px; }
  .hero-copy h1 { margin-bottom: 18px; font-size: 38px; }
  .hero-description { font-size: 16px; line-height: 1.75; }
  .hero-actions { margin-top: 28px; align-items: flex-start; flex-direction: column; gap: 17px; }
  .slider-controls { justify-content: flex-start; }
  .company-intro .split-layout { padding: 28px 24px; border-radius: 16px; }
  .split-layout h2, .section-heading h2, .closing-panel h2, .contact-copy h2, .about-layout h2 { font-size: 32px; }
  .card-grid, .listing-grid, .case-grid { grid-template-columns: 1fr; }
  .card-media, .case-card:first-child .card-media { height: 230px; }
  .news-row { grid-template-columns: 1fr; padding: 20px; }
  .news-row time { width: 88px; min-height: 74px; align-items: center; flex-direction: row; gap: 8px; }
  .news-row time strong { font-size: 26px; }
  .news-row time span { margin-top: 0; }
  .closing-section { padding-bottom: 58px; }
  .closing-panel { padding: 34px 26px; border-radius: 18px; }
  .page-intro, .detail-header { padding: 60px 0 56px; }
  .page-intro h1 { font-size: 38px; }
  .contact-form-panel form { grid-template-columns: 1fr; }
  .contact-form-panel .full { grid-column: auto; }
  .promo-media, .document-cover { min-height: 250px; }
  .sitemap-list, .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

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