/* Global foundation, forms and shared delivery components.  * Extracted from main.css; enqueue order is part of the contract.  */ 
:root {
  --red: var(--c-brand);
  --red-dark: var(--c-brand-dark);
  --blue: #2b7fff;
  --ink: #14213d;
  --text: #3e4a5f;
  --muted: #6e7788;
  --line: #dfe5ec;
  --surface: #ffffff;
  --soft: #f5f8fc;
  --green: #16855b;
  --shadow: 0 14px 38px rgba(20, 33, 61, 0.08);
  --shell: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
#main-content,#industries,#quote,#journey,.about-redesign [id],.site-footer [id] { scroll-margin-top: 84px; }
body { margin: 0; color: var(--ink); background: var(--surface); font-family: var(--font-family-base); font-size: var(--font-size-body); line-height: var(--line-height-base); letter-spacing: 0; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
.reveal-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal-ready .reveal.is-revealed { opacity: 1; transform: translateY(0); }
.home #main-content > section:not(.hero) { content-visibility: visible; contain-intrinsic-block-size: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: var(--line-height-heading); letter-spacing: 0; }
h1 { margin-bottom: 22px; font-size: var(--font-size-h1); font-weight: var(--font-weight-heading); }
h1 em { display: block; color: var(--red); font-style: normal; }
h2 { margin-bottom: 14px; font-size: var(--font-size-h2); font-weight: var(--font-weight-heading); }
h3 { font-size: var(--font-size-lead); }
p { color: var(--text); }
svg { flex: 0 0 auto; }

.shell { width: min(100% - 32px, var(--shell)); margin-inline: auto; }
.section-pad { padding-block: 68px; }
.section-band { background: var(--soft); }
.section-grid { background-image: linear-gradient(rgba(43,127,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(43,127,255,.04) 1px, transparent 1px); background-size: 42px 42px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; left: 16px; top: -80px; padding: 10px 16px; color: #fff; background: var(--ink); }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; z-index: 1000; top: 0; background: rgba(255,255,255,.98); border-bottom: 1px solid rgba(223,229,236,.55); backdrop-filter: blur(14px); }
.header-inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: block; width: min(250px, calc(100vw - 94px)); }
.brand img { width: 100%; }
.icon-button { width: 44px; height: 44px; display: inline-grid; place-items: center; padding: 0; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 6px; cursor: pointer; }
.icon-button svg { width: 22px; height: 22px; }
.header-navigation { position: fixed; inset: 70px 0 auto; max-height: calc(100vh - 70px); padding: 20px 16px 28px; overflow-y: auto; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-130%); visibility: hidden; transition: transform .25s ease, visibility .25s; }
.header-navigation.is-open { transform: translateY(0); visibility: visible; }
.primary-nav { display: block; }
.menu { display: grid; gap: 2px; margin: 0 0 16px; padding: 0; list-style: none; }
.menu a { min-height: 48px; display: flex; align-items: center; padding: 0 8px; font-size: var(--font-size-body); font-weight: var(--font-weight-semibold); border-bottom: 1px solid #edf0f4; }
.header-tools { display: grid; grid-template-columns: 44px 1fr; gap: 8px; align-items: center; }
.header-search { width: 44px; height: 44px; display: grid; place-items: center; color: #566274; }
.header-search svg { width: 19px; height: 19px; }
.language-switcher { position: relative; }
.language-switcher summary { min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 6px; color: #566274; font-size: var(--font-size-caption); font-weight: var(--font-weight-bold); list-style: none; cursor: pointer; }
.language-switcher summary::-webkit-details-marker { display: none; }
.language-switcher summary svg { width: 16px; height: 16px; }
.language-switcher summary svg:last-child { width: 13px; transition: transform .2s ease; }
.language-switcher[open] summary svg:last-child { transform: rotate(180deg); }
.language-menu { display: grid; padding: 7px; background: #fff; border: 1px solid var(--line); border-radius: 5px; box-shadow: var(--shadow); }
.language-menu a { min-width: 120px; padding: 7px 10px; color: #566274; font-size: var(--font-size-caption); }
.language-menu a:hover,.language-menu a[aria-current="page"] { color: var(--red); background: #f7f8fa; }

.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 11px 18px; border: 1px solid transparent; border-radius: 5px; font-size: var(--font-size-small); font-weight: var(--font-weight-bold); line-height: var(--line-height-heading); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease; }
.button svg { width: 17px; height: 17px; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--red); border-color: var(--red); box-shadow: 0 9px 20px rgba(217,0,0,.2); }
.button-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.button-outline { color: var(--red); background: #fff; border-color: rgba(217,0,0,.42); }
.button-outline:hover { color: #fff; background: var(--red); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-size: var(--font-size-small); font-weight: var(--font-weight-bold); }
.text-link svg { width: 17px; }
.nav-quote { width: 100%; }

.hero { position: relative; overflow: hidden; background: #f7f9fb; }
.hero::after { content: ''; position: absolute; z-index: 6; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, var(--blue), transparent); opacity: .3; }
.hero-carousel { width: 100%; max-width: 1916px; height: clamp(560px, 42.85vw, 821px); margin-inline: auto; }
.hero-carousel-track, .hero-slide { position: absolute; inset: 0; }
.hero-carousel-track { overflow: hidden; }
.hero-slide { visibility: hidden; opacity: 0; pointer-events: none; transition: opacity .65s ease, visibility .65s ease; }
.hero-slide.is-active { visibility: visible; opacity: 1; pointer-events: auto; }
.hero-slide-inner { position: relative; width: 100%; height: 100%; display: grid; grid-template-columns: minmax(390px, 37%) 1fr; background: linear-gradient(105deg, #fff 0%, #f7f9fb 42%, #eaf2f8 100%); }
.hero-slide-copy { position: relative; z-index: 2; align-self: center; padding: clamp(42px, 5vw, 92px) clamp(56px, 5.4vw, 104px); padding-right: 20px; }
.hero-kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; color: var(--red); font-size: var(--font-size-small); font-weight: var(--font-weight-heading); letter-spacing: .15em; text-transform: uppercase; }
.hero-kicker::before { content: ''; width: 30px; height: 2px; background: currentColor; }
.hero-slide-copy h1, .hero-slide-copy h2 { max-width: 620px; margin: 0; color: #171a1f; font-size: var(--font-size-display); line-height: var(--line-height-display); letter-spacing: -.05em; }
.hero-slide-copy h1 em, .hero-slide-copy h2 em { display: block; color: var(--red); font-style: normal; }
.hero-slide-description { max-width: 520px; margin: clamp(18px, 2vw, 30px) 0 0; color: #4f5966; font-size: var(--font-size-h3); line-height: var(--line-height-copy); }
.hero-slide-benefits { display: grid; gap: clamp(8px, 1vw, 14px); margin: clamp(20px, 2.2vw, 36px) 0; padding: 0; list-style: none; }
.hero-slide-benefits li { display: flex; align-items: center; gap: 10px; color: #252b33; font-size: var(--font-size-lead); font-weight: var(--font-weight-semibold); }
.hero-slide-benefits svg { width: 21px; height: 21px; flex: 0 0 auto; color: var(--red); }
.hero-slide-cta { min-width: 176px; justify-content: center; }
.hero-slide-visual { position: relative; min-width: 0; overflow: hidden; }
.hero-slide-visual::before { content: ''; position: absolute; z-index: 1; inset: 0 auto 0 0; width: 18%; background: linear-gradient(90deg, #f7f9fb, transparent); pointer-events: none; }
.hero-slide-visual img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.hero-carousel-arrow { position: absolute; z-index: 7; top: 50%; width: 46px; height: 46px; display: grid; place-items: center; padding: 0; color: #fff; background: rgba(16,28,44,.38); border: 1px solid rgba(255,255,255,.72); border-radius: 50%; box-shadow: 0 5px 18px rgba(16,28,44,.18); opacity: .25; transform: translateY(-50%); transition: opacity .2s ease, background .2s ease, transform .2s ease; cursor: pointer; backdrop-filter: blur(5px); }
.hero-carousel:hover .hero-carousel-arrow, .hero-carousel:focus-within .hero-carousel-arrow { opacity: 1; }
.hero-carousel-arrow:hover { background: var(--red); transform: translateY(-50%) scale(1.06); }
.hero-carousel-arrow svg { width: 24px; height: 24px; }
.hero-carousel-prev { left: clamp(10px, 1.4vw, 26px); }
.hero-carousel-next { right: clamp(10px, 1.4vw, 26px); }
.hero-carousel-dots { position: absolute; z-index: 7; left: 50%; bottom: clamp(14px, 1.7vw, 28px); display: flex; gap: 9px; padding: 7px 10px; background: rgba(255,255,255,.82); border-radius: 999px; box-shadow: 0 3px 14px rgba(16,28,44,.14); transform: translateX(-50%); backdrop-filter: blur(6px); }
.hero-carousel-dot { width: 9px; height: 9px; padding: 0; background: rgba(20,33,61,.3); border: 0; border-radius: 50%; cursor: pointer; transition: width .25s ease, background .25s ease; }
.hero-carousel-dot.is-active { width: 28px; background: var(--red); border-radius: 999px; }
.hero-carousel-progress { position: absolute; z-index: 7; inset: auto 0 0; height: 3px; background: rgba(20,33,61,.08); }
.hero-carousel-progress span { display: block; width: 0; height: 100%; background: var(--red); }
.hero-carousel.is-playing .hero-carousel-progress span { animation: banner-progress 6s linear forwards; }
@keyframes banner-progress { from { width: 0; } to { width: 100%; } }
@media (max-width: 900px) {
  .hero-carousel { height: 720px; }
  .hero-slide-inner { grid-template-columns: 1fr; grid-template-rows: auto 44%; }
  .hero-slide-copy { align-self: start; padding: 42px clamp(28px, 8vw, 72px) 20px; text-align: center; }
  .hero-kicker { justify-content: center; }
  .hero-slide-copy h1, .hero-slide-copy h2, .hero-slide-description { margin-inline: auto; }
  .hero-slide-copy h1, .hero-slide-copy h2 { font-size: var(--font-size-h1); }
  .hero-slide-copy h1 em, .hero-slide-copy h2 em { display: inline; }
  .hero-slide-benefits { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-block: 22px; }
  .hero-slide-benefits li { justify-content: center; font-size: var(--font-size-caption); }
  .hero-slide-visual::before { inset: 0 0 auto; width: 100%; height: 20%; background: linear-gradient(180deg, #f7f9fb, transparent); }
}
@media (max-width: 560px) {
  .hero-carousel { height: 690px; }
  .hero-slide-inner { grid-template-rows: auto 38%; }
  .hero-slide-copy { padding: 32px 28px 12px; }
  .hero-kicker { margin-bottom: 10px; font-size: var(--font-size-caption); }
  .hero-slide-copy h1, .hero-slide-copy h2 { font-size: var(--font-size-h1); }
  .hero-slide-description { margin-top: 14px; font-size: var(--font-size-small); }
  .hero-slide-benefits { grid-template-columns: 1fr; gap: 6px; margin-block: 16px; }
  .hero-slide-benefits li { font-size: var(--font-size-caption); }
  .hero-slide-benefits svg { width: 17px; height: 17px; }
  .hero-slide-cta { min-width: 158px; min-height: 42px; }
  .hero-carousel-arrow { width: 36px; height: 36px; opacity: .75; }
  .hero-carousel-arrow svg { width: 19px; height: 19px; }
  .hero-carousel-dots { bottom: 7px; gap: 6px; padding: 5px 7px; }
  .hero-carousel-dot { width: 6px; height: 6px; }
  .hero-carousel-dot.is-active { width: 18px; }
  .hero-carousel-progress { height: 2px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-carousel-progress { display: none; }
}

/* Shared delivery-contract components. */
.form-consent,.resource-form-consent{display:grid;grid-template-columns:auto minmax(0,1fr);gap:9px;align-items:start}.form-consent input,.resource-form-consent input{width:18px;height:18px;margin:2px 0 0;accent-color:var(--red)}.form-consent span,.resource-form-consent span{font-size:var(--font-size-caption);line-height:var(--line-height-copy)}.resource-form-consent{margin:16px 0}.content-card-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,280px),1fr));gap:20px}.content-card{min-width:0;border:1px solid var(--line);border-radius:6px;background:#fff;overflow:hidden}.content-card-image{display:block;aspect-ratio:16/9;overflow:hidden}.content-card-image img{width:100%;height:100%;object-fit:cover}.content-card-body{padding:22px}.content-card-body h2{font-size:var(--font-size-h4)}.empty-state,.error-state,.loading-state{padding:36px;border:1px dashed var(--line);border-radius:6px;text-align:center;background:var(--soft)}.empty-state svg,.error-state svg{width:32px;height:32px;color:var(--red)}.loading-state{display:flex;gap:10px;align-items:center;justify-content:center}.loading-state>span{width:18px;height:18px;border:2px solid var(--line);border-top-color:var(--red);border-radius:50%;animation:tongyi-spin .8s linear infinite}.notice-warning{padding:18px;border-left:4px solid #b56b00;background:#fff7e8}.button-row{display:flex;flex-wrap:wrap;gap:10px}@keyframes tongyi-spin{to{transform:rotate(360deg)}}@media(prefers-reduced-motion:reduce){.loading-state>span{animation:none}}

.section-heading { margin-bottom: 28px; }
.section-heading p:not(.eyebrow) { max-width: 580px; }
.section-heading.centered { text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.split { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.section-heading.split > div h2 { margin-bottom: 0; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
.trust-item { min-height: 132px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 18px 8px; text-align: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-item:nth-child(2n) { border-right: 0; }
.trust-item:nth-last-child(-n+2) { border-bottom: 0; }
.trust-item svg { width: 27px; height: 27px; margin-bottom: 10px; color: var(--red); stroke-width: 1.7; }
.trust-item strong { font-size: var(--font-size-small); }
.trust-item span { color: var(--muted); font-size: var(--font-size-caption); }

.product-grid { display: grid; gap: 14px; }
.product-card { min-width: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 7px; transition: border .25s ease, box-shadow .25s ease, transform .25s ease; }
.product-card:hover { border-color: rgba(217,0,0,.35); box-shadow: var(--shadow); transform: translateY(-4px); }
.product-media { height: 230px; display: grid; place-items: center; overflow: hidden; padding: 12px; background: linear-gradient(180deg, #fbfcfd, #f2f5f8); }
.product-media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .35s ease; }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-copy { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 16px; border-top: 1px solid var(--line); }
.product-copy h3 { margin-bottom: 5px; font-size: var(--font-size-body); }
.product-copy p { margin-bottom: 0; color: var(--muted); font-size: var(--font-size-caption); }
.card-arrow { width: 34px; height: 34px; display: grid; flex: 0 0 34px; place-items: center; color: var(--red); border: 1px solid var(--line); border-radius: 50%; }
.card-arrow svg { width: 15px; }

.solution-grid { display: grid; gap: 16px; }
.solution-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 7px; }
.solution-card > a { display: block; height: 100%; }
.solution-card img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; transition: transform .35s ease; }
.solution-card:hover img { transform: scale(1.025); }
.solution-card > a > div { padding: 20px; }
.solution-card h3 { margin-bottom: 8px; }
.solution-card p { margin-bottom: 18px; color: var(--muted); font-size: var(--font-size-small); }
.solution-card span, .insight-card span { display: inline-flex; align-items: center; gap: 7px; color: var(--red); font-size: var(--font-size-caption); font-weight: var(--font-weight-bold); }
.solution-card span svg, .insight-card span svg { width: 14px; }

.industry-layout { display: grid; gap: 30px; }
.industry-grid { display: grid; gap: 10px; }
.industry-item { min-height: 106px; display: grid; grid-template-columns: 38px 1fr 18px; align-items: center; gap: 13px; padding: 16px; background: #fff; border-bottom: 1px solid var(--line); }
.industry-item > svg:first-child { width: 28px; height: 28px; color: var(--blue); stroke-width: 1.7; }
.industry-item > svg:last-child { width: 17px; color: var(--muted); }
.industry-item h3 { margin-bottom: 4px; font-size: var(--font-size-small); }
.industry-item p { margin: 0; color: var(--muted); font-size: var(--font-size-caption); }

.case-band { background-color: #fff; }
.case-layout { display: grid; gap: 30px; align-items: center; }
.case-visual { position: relative; min-height: 260px; overflow: hidden; background: #edf2f6; border: 1px solid var(--line); border-radius: 7px; }
.case-visual > img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.case-metric { position: absolute; right: 14px; bottom: 14px; min-width: 130px; padding: 13px 15px; color: #fff; background: rgba(20,33,61,.9); border-left: 3px solid var(--red); }
.case-metric strong, .case-metric span { display: block; }
.case-metric strong { font-size: var(--font-size-h3); }
.case-metric span { color: #cbd3df; font-size: var(--font-size-caption); }
.case-copy > p:not(.eyebrow) { max-width: 590px; }
.case-results { display: flex; gap: 28px; margin: 25px 0; }
.case-results span { color: var(--muted); font-size: var(--font-size-caption); }
.case-results strong { display: block; color: var(--red); font-size: var(--font-size-h3); }

.insights-track { display: grid; grid-auto-flow: column; grid-auto-columns: min(86vw, 380px); gap: 14px; padding-bottom: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.insight-card { min-width: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 7px; scroll-snap-align: start; }
.insight-card a { min-height: 260px; display: grid; grid-template-columns: minmax(0, 1fr) 110px; }
.insight-content { padding: 20px 8px 20px 20px; }
.insight-card time { display: block; margin-bottom: 10px; color: var(--muted); font-size: var(--font-size-caption); text-transform: uppercase; }
.insight-card h3 { margin-bottom: 9px; font-size: var(--font-size-body); }
.insight-card p { display: -webkit-box; margin-bottom: 15px; overflow: hidden; color: var(--muted); font-size: var(--font-size-caption); -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.insight-card > a > img { width: 100%; height: 100%; object-fit: contain; padding: 12px; background: #f8fafc; mix-blend-mode: multiply; }

.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-bottom: 24px; border: 1px solid var(--line); border-radius: 7px; }
.stat { min-height: 110px; display: flex; align-items: center; gap: 10px; padding: 15px 12px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat:nth-child(2n) { border-right: 0; }
.stat:last-child { grid-column: 1 / -1; border-bottom: 0; }
.stat svg { width: 27px; height: 27px; color: var(--red); stroke-width: 1.7; }
.stat strong, .stat span { display: block; }
.stat strong { color: var(--red); font-size: var(--font-size-h4); line-height: var(--line-height-heading); }
.stat div > span { color: var(--muted); font-size: var(--font-size-caption); line-height: var(--line-height-tight); }
.quote-layout { display: grid; gap: 28px; padding: 26px 20px; background-color: var(--soft); border: 1px solid var(--line); border-radius: 8px; }
.quote-copy h2 { font-size: var(--font-size-h2); }
.quote-copy ul { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.quote-copy li { display: flex; align-items: flex-start; gap: 10px; color: var(--text); font-size: var(--font-size-small); }
.quote-copy li svg { width: 17px; color: var(--red); }
.quote-form { display: grid; gap: 14px; }
.quote-form label { color: var(--ink); font-size: var(--font-size-caption); font-weight: var(--font-weight-bold); }
.form-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.quote-form label > span { color: var(--red); }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; min-height: 46px; display: block; margin-top: 5px; padding: 10px 12px; color: var(--ink); background: #fff; border: 1px solid #cfd7e1; border-radius: 4px; outline: none; }
.quote-form textarea { min-height: 110px; resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(43,127,255,.12); }
.quote-form [aria-invalid="true"] { border-color: var(--red); }
.form-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; }
.form-status { flex: 1 1 200px; margin: 0; font-size: var(--font-size-caption); }
.form-status.is-success { color: var(--green); }
.form-status.is-error { color: var(--red); }

.site-footer { padding-top: 58px; color: #566274; background: #fff; border-top: 1px solid #edf0f3; }
.archive-hero { padding-block: 90px 70px; background-color: var(--soft); }
.archive-hero h1 { max-width: 850px; }
.archive-hero p { max-width: 650px; }
.entry-card { padding-block: 28px; border-bottom: 1px solid var(--line); }
.entry-card h1 { font-size: var(--font-size-h2); }
.product-card h2, .solution-card h2 { font-size: var(--font-size-body); }
.product-hero { padding-block: 70px; background-color: var(--soft); }
.product-hero-grid { display: grid; gap: 35px; align-items: center; }
.product-hero-grid > div:last-child { min-height: 300px; display: grid; place-items: center; }
.product-hero-grid img { max-height: 480px; object-fit: contain; }
.product-hero-grid h1 { margin-bottom: 8px; }
.product-english-title { margin: 0 0 18px; color: var(--muted); font-size: var(--font-size-body); font-weight: var(--font-weight-semibold); }
.entry-content { max-width: 900px; }
.entry-content > * + * { margin-top: 1.25em; }
.footer-grid { display: grid; gap: 34px; padding-bottom: 42px; }
.footer-brand img { width: 170px; padding: 0; background: transparent; border-radius: 0; }
.footer-brand p { max-width: 250px; margin: 18px 0 0; color: #687486; font-size: var(--font-size-caption); line-height: var(--line-height-relaxed); }
.footer-grid h2 { margin-bottom: 14px; color: #252b35; font-size: var(--font-size-caption); text-transform: none; }
.footer-column>a,.footer-menu a { display: block; margin: 3px 0; color: #667386; font-size: var(--font-size-caption); line-height: var(--line-height-copy); }
.footer-grid a:hover { color: var(--red); }
.footer-menu,.footer-legal-menu { margin: 0; padding: 0; list-style: none; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a,.footer-socials span { width: 26px; height: 26px; display: grid; place-items: center; margin: 0; color: #6a7482; background: #f0f2f5; border-radius: 50%; font-size: var(--font-size-micro); font-style: normal; font-weight: var(--font-weight-heading); text-transform: uppercase; }
.footer-contact { align-self: start; padding: 22px 20px; border: 1px solid #e2e6eb; border-radius: 7px; font-style: normal; }
.footer-contact>a,.footer-contact>span { display: flex; align-items: flex-start; gap: 10px; margin: 12px 0 0; color: #626e7d; font-size: var(--font-size-caption); line-height: var(--line-height-copy); }
.footer-contact svg { width: 15px; height: 15px; margin-top: 2px; color: var(--red); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-block: 18px; color: #8793a4; border-top: 1px solid #edf0f3; font-size: var(--font-size-micro); }
.footer-legal-menu { display: flex; flex-wrap: wrap; gap: 22px; }

@media (min-width: 600px) {
  .shell { width: min(100% - 48px, var(--shell)); }
  h1 { font-size: var(--font-size-h1); }
  .hero-actions .button { flex: 0 0 auto; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-message, .form-footer { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .section-pad { padding-block: 84px; }
  .hero-grid { min-height: 700px; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; gap: 20px; padding-block: 60px; }
  .hero-visual { min-height: 420px; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(2n) { border-right: 1px solid var(--line); }
  .trust-item:nth-child(3n) { border-right: 0; }
  .trust-item:nth-last-child(-n+3) { border-bottom: 0; }
  .solution-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .case-layout { grid-template-columns: 1.15fr .85fr; gap: 48px; }
  .case-visual { min-height: 380px; }
  .case-visual > img { min-height: 380px; }
  .insights-track { grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: visible; }
  .insight-card a { grid-template-columns: minmax(0, 1fr); grid-template-rows: 1fr 140px; }
  .insight-card > a > img { grid-row: 2; }
  .stats-grid { grid-template-columns: repeat(5, 1fr); }
  .stat, .stat:nth-child(2n) { border-right: 1px solid var(--line); border-bottom: 0; }
  .stat:last-child { grid-column: auto; border-right: 0; }
  .quote-layout { grid-template-columns: .8fr 1.2fr; padding: 36px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .product-hero-grid { grid-template-columns: .9fr 1.1fr; }
}

@media (min-width: 1025px) {
  .site-header .shell,.site-footer .shell { width:min(100% - 138px,1688px); }
  .header-inner { min-height: 68px; }
  .brand { width: 144px; }
  .nav-toggle { display: none; }
  .header-navigation { position: static; max-height: none; display: flex; flex:1; align-items: center; justify-content:flex-end; gap: clamp(26px,3.7vw,70px); padding: 0; overflow: visible; border: 0; box-shadow: none; transform: none; visibility: visible; }
  .menu { display: flex; align-items: center; gap: clamp(22px,2.35vw,45px); margin: 0; }
  .menu a { min-height: 68px; padding: 0; color:#3e495a; font-size: var(--font-size-caption); border: 0; }
  .menu a:hover { color: var(--red); }
  .header-tools { display: flex; gap: 9px; }
  .header-search { width:32px; height:42px; }
  .language-switcher summary { min-height:42px; }
  .language-menu { position: absolute; z-index: 10; top: calc(100% + 8px); right: 0; }
  .nav-quote { width: auto; min-height:36px; padding:8px 18px; font-size:var(--font-size-caption); }
  .hero-grid { min-height: min(780px, calc(100vh - 78px)); grid-template-columns: .8fr 1.2fr; gap: 32px; }
  h1 { font-size: var(--font-size-h1); }
  .hero-description { font-size: var(--font-size-lead); }
  .hero-visual { min-height: 520px; }
  .hud { min-width: 145px; padding: 11px 13px; }
  .hud span { font-size: var(--font-size-caption); }
  .hud strong { font-size: var(--font-size-body); }
  .trust-grid { grid-template-columns: repeat(6, 1fr); }
  .trust-item, .trust-item:nth-child(2n), .trust-item:nth-child(3n) { border-right: 1px solid var(--line); border-bottom: 0; }
  .trust-item:last-child { border-right: 0; }
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .product-media { height: 225px; }
  .industry-layout { grid-template-columns: .7fr 1.3fr; align-items: start; gap: 70px; }
  .insight-card a { grid-template-columns: minmax(0, 1fr) 120px; grid-template-rows: auto; }
  .insight-card > a > img { grid-row: auto; }
  .stat { justify-content: center; }
  .quote-layout { grid-template-columns: .72fr 1.28fr; padding: 46px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr .9fr 1.35fr; gap: clamp(28px, 4vw, 72px); }
}

@media (min-width: 1440px) {
  :root { --shell: 1360px; }
  .section-pad { padding-block: 96px; }
  h1 { font-size: var(--font-size-h1); }
  h2 { font-size: var(--font-size-h2); }
  .hero-grid { gap: 56px; }
  .hero-visual { min-height: 560px; }
  .product-media { height: 250px; }
}

@media (hover: none), (pointer: coarse) {
  .product-card:hover, .button:hover { transform: none; }
  .product-card:hover .product-media img, .solution-card:hover img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto; animation-duration: .01ms; animation-iteration-count: 1; transition-duration: .01ms; }
  .scan-line { display: none; }
}

