@font-face {
  font-family: 'Barlow Condensed';
  src: url('/fonts/barlow-condensed-600.woff2') format('woff2');
  font-style: normal;
  font-weight: 600;
  font-display: optional;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('/fonts/barlow-condensed-700.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
  font-display: optional;
}
@font-face {
  font-family: 'Noto Sans SC';
  src: url('/fonts/noto-sans-sc-site-400.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  unicode-range: U+00B7, U+2010-2027, U+3000-303F, U+3400-4DBF, U+4E00-9FFF, U+FF00-FFEF;
}
@font-face {
  font-family: 'Noto Sans SC';
  src: url('/fonts/noto-sans-sc-site-500.woff2') format('woff2');
  font-style: normal;
  font-weight: 500;
  font-display: optional;
  unicode-range: U+00B7, U+2010-2027, U+3000-303F, U+3400-4DBF, U+4E00-9FFF, U+FF00-FFEF;
}
@font-face {
  font-family: 'Noto Sans SC';
  src: url('/fonts/noto-sans-sc-site-700.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  unicode-range: U+00B7, U+2010-2027, U+3000-303F, U+3400-4DBF, U+4E00-9FFF, U+FF00-FFEF;
}

:root {
  --orange: #e55634;
  --orange-deep: #9f321f;
  --orange-action: #9f321f;
  --ink: #1b2225;
  --ink-soft: #293236;
  --muted: #555f63;
  --paper: #f2efe7;
  --paper-light: #fbfaf6;
  --white: #fff;
  --line: rgba(27, 34, 37, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --blue: #168ec6;
  --green: #20a56f;
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

html[lang='zh-CN'] { --font-body: 'Noto Sans SC', system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--font-body); text-rendering: optimizeLegibility; }
body:has(.mobile-menu.is-open) { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { color: inherit; font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.optimized-image { display: block; width: 100%; height: 100%; }
.optimized-image > img { display: block; width: 100%; height: 100%; object-fit: cover; }
::selection { background: var(--orange); color: white; }
:focus-visible { outline: 3px solid #f5a38c; outline-offset: 3px; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 16px; background: white; color: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  min-height: 76px;
  padding: 10px clamp(20px, 4vw, 70px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(27, 34, 37, 0.97);
  color: white;
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; width: fit-content; gap: 12px; }
.brand__mark { width: 44px; height: 44px; border-radius: 5px; object-fit: cover; }
.brand__mark img { border-radius: inherit; }
.brand__name { display: flex; flex-direction: column; line-height: 1; }
.brand__name strong { font-family: var(--font-display); font-size: 21px; letter-spacing: .09em; }
.brand__name small { margin-top: 5px; color: rgba(255,255,255,.62); font-size: 9px; letter-spacing: .12em; }
.desktop-nav { display: flex; gap: clamp(20px, 2vw, 34px); color: rgba(255,255,255,.7); font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav a { position: relative; padding: 8px 0; transition: color 180ms ease; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 1px; left: 0; height: 2px; background: var(--orange); content: ''; transform: scaleX(0); transform-origin: left; transition: transform 180ms ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible, .desktop-nav a[aria-current='page'] { color: white; }
.desktop-nav a[aria-current='page']::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.language-switch { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.42); font-size: 11px; letter-spacing: .08em; }
.language-switch button { padding: 5px 0; border: 0; background: none; color: inherit; }
.language-switch button.is-active { color: white; }
.header-quote { display: inline-flex; align-items: center; gap: 10px; min-height: 42px; padding: 0 18px; background: var(--orange-action); font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: background 180ms ease, transform 180ms ease; }
.header-quote:hover { background: #b54127; transform: translateY(-1px); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.25); background: transparent; }
.menu-toggle span { display: block; width: 19px; height: 1px; margin: 5px auto; background: white; }
.mobile-menu { position: fixed; z-index: -1; inset: 76px 0 auto; display: none; height: calc(100dvh - 76px); padding: 28px; background: var(--ink); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms; }
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { display: flex; align-items: center; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line-light); font-family: var(--font-display); font-size: clamp(32px, 8vw, 52px); font-weight: 600; text-transform: uppercase; }
.mobile-menu nav a span { color: var(--orange); font-family: var(--font-body); font-size: 10px; }
.mobile-menu__language { display: flex; gap: 12px; margin-top: 28px; }
.mobile-menu__language button { padding: 12px 18px; border: 1px solid var(--line-light); background: transparent; color: rgba(255,255,255,.6); }
.mobile-menu__language button.is-active { border-color: var(--orange); color: white; }

.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 54px; padding: 0 22px; border: 1px solid var(--ink); font-family: var(--font-display); font-size: 16px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { border-color: var(--orange-action); background: var(--orange-action); color: white; box-shadow: 0 18px 38px rgba(159,50,31,.2); }
.button--ghost { background: transparent; }
.button--light { border-color: white; background: white; color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 12px; width: fit-content; border-bottom: 1px solid currentColor; color: var(--orange-deep); font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translate(2px, -2px); }
.text-link--large { margin-top: 24px; font-size: 18px; }

.hero { display: grid; grid-template-columns: minmax(0,.92fr) minmax(520px,1.08fr); min-height: min(760px, calc(100vh - 76px)); overflow: hidden; background: var(--paper-light); }
.hero__copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: clamp(60px,8vw,122px) clamp(28px,6vw,96px); }
.hero__copy::after { position: absolute; right: -80px; bottom: 42px; width: 220px; height: 2px; background: var(--orange); content: ''; transform: rotate(-52deg); }
.eyebrow { display: flex; justify-content: space-between; gap: 20px; width: min(100%,680px); margin: 0 0 34px; padding-bottom: 14px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hero h1 { max-width: 820px; margin: 0; font-family: var(--font-display); font-size: clamp(62px,7vw,116px); font-weight: 700; letter-spacing: -.04em; line-height: .84; text-transform: uppercase; }
.hero h1 span { display: block; color: var(--orange); }
.hero__intro { max-width: 650px; margin: 36px 0 0; color: #424b4f; font-size: clamp(15px,1.3vw,19px); line-height: 1.72; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.hero__note { display: flex; align-items: center; gap: 10px; margin-top: 27px; color: var(--muted); font-size: 11px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(31,169,116,.1); }
.hero__visual { position: relative; min-height: 620px; overflow: hidden; background: var(--orange); isolation: isolate; }
.hero__visual::before, .hero__visual::after { position: absolute; z-index: -1; content: ''; }
.hero__visual::before { inset: -18% -10% auto 38%; height: 140%; border-right: 22px solid rgba(255,255,255,.06); border-left: 90px solid rgba(255,255,255,.1); transform: rotate(19deg); }
.hero__visual::after { right: -14%; bottom: -24%; width: 520px; height: 520px; border: 2px solid rgba(255,255,255,.16); transform: rotate(45deg); }
.hero__number { position: absolute; top: -30px; right: 16px; color: #5c2a22; font-family: var(--font-display); font-size: clamp(180px,22vw,360px); font-weight: 700; letter-spacing: -.08em; line-height: 1; }
.hero__machine-stage { position: absolute; inset: 25% 8% auto 10%; min-height: 340px; padding: 44px 22px 26px; background: #f8f8f5; box-shadow: 0 32px 60px rgba(73,28,17,.24); transform: rotate(-2deg); }
.hero__machine-stage::before { position: absolute; top: 0; left: 0; width: 43%; height: 8px; background: var(--blue); content: ''; }
.hero__machine-stage p { position: absolute; top: 16px; left: 22px; margin: 0; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.hero__machine-stage img { width: 100%; height: 270px; object-fit: cover; }
.hero__machine-stage .optimized-image { height: 270px; }
.hero__spec { position: absolute; display: flex; flex-direction: column; padding: 9px 11px; background: rgba(27,34,37,.94); color: white; text-transform: uppercase; }
.hero__spec span { color: rgba(255,255,255,.78); font-size: 9px; letter-spacing: .14em; }
.hero__spec strong { margin-top: 5px; font-family: var(--font-display); font-size: 15px; letter-spacing: .09em; }
.hero__spec--top { top: 52px; left: 42px; }
.hero__spec--bottom { right: 42px; bottom: 46px; text-align: right; }

.proof-strip { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)) minmax(300px,1.4fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink); color: white; }
.proof-strip > div { display: flex; min-height: 172px; flex-direction: column; justify-content: center; padding: 28px clamp(22px,3vw,46px); border-right: 1px solid var(--line-light); }
.proof-strip strong { font-family: var(--font-display); font-size: clamp(34px,4vw,56px); letter-spacing: -.02em; }
.proof-strip span { max-width: 220px; margin-top: 5px; color: rgba(255,255,255,.58); font-size: 10px; letter-spacing: .09em; line-height: 1.5; text-transform: uppercase; }
.proof-strip figure { position: relative; min-height: 172px; margin: 0; overflow: hidden; }
.proof-strip figure::after { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(27,34,37,.3),transparent 65%); content: ''; }
.proof-strip figure img { width: 100%; height: 100%; min-height: 172px; object-fit: cover; }
.proof-strip figcaption { position: absolute; z-index: 2; right: 18px; bottom: 14px; color: white; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.section { padding: clamp(80px,9vw,140px) clamp(20px,5vw,78px); }
.section--dark { background: var(--ink); color: white; }
.products-section { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: minmax(120px,.35fr) minmax(340px,1.2fr) minmax(260px,.65fr); gap: 40px; align-items: end; max-width: 1540px; margin: 0 auto 52px; padding-top: 20px; border-top: 1px solid var(--line); }
.section-heading h2, .home-about h2, .partners-section h2, .about-intro h2, .rd-section h2, .team-band h2, .simple-cta h2, .contact-expect h2 { margin: 0; font-family: var(--font-display); font-size: clamp(43px,5vw,78px); letter-spacing: -.025em; line-height: .97; text-transform: uppercase; }
.section-heading > p:last-child, .home-about p, .about-intro p, .rd-section p, .team-band p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.section-kicker { margin: 0; color: var(--orange-deep) !important; font-size: 10px !important; font-weight: 800; letter-spacing: .14em; line-height: 1.5; text-transform: uppercase; }
.product-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; max-width: 1540px; margin: 0 auto; }
.product-card { display: flex; min-height: 560px; flex-direction: column; border: 1px solid var(--line); background: var(--paper-light); transition: transform 200ms ease, box-shadow 200ms ease; }
.product-card:hover { box-shadow: 0 24px 60px rgba(27,34,37,.1); transform: translateY(-5px); }
.product-card__meta { display: flex; justify-content: space-between; padding: 15px 18px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-card__meta span:first-child { color: var(--orange-deep); }
.product-card__image { display: block; height: 310px; overflow: hidden; background: #f7f7f5; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.product-card:hover .product-card__image img { transform: scale(1.025); }
.product-card__body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 26px; }
.product-card__body > p { min-height: 42px; margin: 0 0 12px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.product-card__body h3 { margin: 0 0 26px; font-family: var(--font-display); font-size: clamp(30px,2.6vw,43px); line-height: .98; text-transform: uppercase; }
.product-card__body .text-link { margin-top: auto; }
.section-end-link { display: flex; justify-content: flex-end; max-width: 1540px; margin: 34px auto 0; }

.solutions-home { background: #dedbd2; }
.solution-list { max-width: 1540px; margin: 0 auto; border-top: 1px solid var(--line); }
.solution-row { display: grid; grid-template-columns: 70px minmax(240px,.8fr) minmax(300px,1.2fr) 32px; gap: 30px; align-items: center; min-height: 105px; border-bottom: 1px solid var(--line); transition: padding 180ms ease, background 180ms ease; }
.solution-row:hover { padding: 0 18px; background: rgba(255,255,255,.42); }
.solution-row > span { color: var(--orange-deep); font-size: 10px; font-weight: 700; }
.solution-row h3 { margin: 0; font-family: var(--font-display); font-size: clamp(29px,3vw,45px); line-height: 1; text-transform: uppercase; }
.solution-row p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.solution-row b { color: var(--orange-deep); font-size: 24px; font-weight: 400; }

.home-about { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 660px; background: var(--paper-light); }
.home-about figure { min-height: 520px; margin: 0; overflow: hidden; }
.home-about figure img { width: 100%; height: 100%; object-fit: cover; }
.home-about > div { display: flex; flex-direction: column; justify-content: center; padding: clamp(56px,7vw,110px); }
.home-about h2 { margin: 22px 0 28px; }
.partners-section { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 60px; padding: clamp(70px,8vw,120px) clamp(20px,5vw,78px); background: white; }
.partners-section > div { max-width: 520px; }
.partners-section h2 { margin-top: 22px; }
.partners-section figure { margin: 0; padding: 20px; border: 1px solid var(--line); }
.partners-section img { width: 100%; }
.partners-section .optimized-image, .partners-full .optimized-image { height: auto; }
.partners-section .optimized-image > img, .partners-full .optimized-image > img { height: auto; object-fit: contain; }

.page-hero { display: grid; grid-template-columns: minmax(0,.9fr) minmax(400px,1.1fr); min-height: 540px; background: var(--paper-light); }
.page-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px,8vw,130px) clamp(24px,6vw,98px); }
.page-hero__copy h1 { max-width: 850px; margin: 0; font-family: var(--font-display); font-size: clamp(65px,8vw,126px); letter-spacing: -.045em; line-height: .82; text-transform: uppercase; }
.page-hero__copy > p:last-child { max-width: 670px; margin: 34px 0 0; color: var(--muted); font-size: clamp(15px,1.3vw,19px); line-height: 1.75; }
.page-hero figure { position: relative; min-height: 540px; margin: 0; overflow: hidden; background: var(--orange); }
.page-hero figure::after { position: absolute; inset: 0; border-left: 12px solid var(--orange); background: linear-gradient(135deg,rgba(229,86,52,.18),transparent 50%); content: ''; }
.page-hero figure img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__graphic { position: relative; overflow: hidden; background: var(--orange); }
.page-hero__graphic::before { position: absolute; inset: -30% 18%; border-right: 90px solid rgba(255,255,255,.09); border-left: 18px solid rgba(255,255,255,.18); content: ''; transform: rotate(28deg); }
.page-hero__graphic span { position: absolute; right: -15px; bottom: -60px; color: rgba(255,255,255,.12); font-family: var(--font-display); font-size: clamp(210px,30vw,480px); font-weight: 700; line-height: .8; }
.notice-band { display: grid; grid-template-columns: .65fr 1.35fr; gap: 40px; max-width: 1540px; margin: 0 auto 50px; padding: 25px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.notice-band strong { font-family: var(--font-display); font-size: 26px; text-transform: uppercase; }
.notice-band p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.quote-wizard { display: grid; grid-template-columns: minmax(280px,.75fr) minmax(520px,1.25fr); gap: clamp(50px,8vw,130px); max-width: 1400px; margin: 0 auto; }
.quote-wizard__heading > span { color: var(--orange); font-size: 10px; letter-spacing: .15em; }
.quote-wizard__heading h2 { margin: 22px 0; font-family: var(--font-display); font-size: clamp(48px,6vw,86px); line-height: .9; text-transform: uppercase; }
.quote-wizard__heading p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.7; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.quote-form label { display: flex; flex-direction: column; gap: 9px; }
.quote-form label > span { color: rgba(255,255,255,.62); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.quote-form input, .quote-form select { width: 100%; height: 54px; padding: 0 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 0; outline: none; background: rgba(255,255,255,.04); color: white; }
.quote-form select option { color: var(--ink); }
.quote-form input::placeholder { color: rgba(255,255,255,.34); }
.quote-form input:focus, .quote-form select:focus { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(229,86,52,.18); }
.quote-form__split { display: grid; grid-column: 1 / -1; grid-template-columns: 1fr 1fr; gap: 20px; }
.quote-form__actions { display: flex; grid-column: 1 / -1; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
.quote-form .button--ghost { border-color: rgba(255,255,255,.46); color: white; }
.privacy-note { grid-column: 1 / -1; margin: 2px 0 0; color: rgba(255,255,255,.43); font-size: 10px; line-height: 1.6; }
.privacy-note a { border-bottom: 1px solid currentColor; color: rgba(255,255,255,.72); }

.product-detail-hero { display: grid; grid-template-columns: minmax(0,.85fr) minmax(480px,1.15fr); min-height: 660px; background: var(--paper-light); }
.product-detail-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px,8vw,130px) clamp(24px,6vw,98px); }
.product-detail-hero h1 { margin: 0; font-family: var(--font-display); font-size: clamp(65px,7vw,110px); letter-spacing: -.045em; line-height: .82; text-transform: uppercase; }
.product-detail-hero__copy > p:nth-of-type(2) { max-width: 620px; margin: 30px 0 34px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.product-detail-hero__copy .button { width: fit-content; }
.product-detail-hero figure { position: relative; min-height: 600px; margin: 0; overflow: hidden; background: white; }
.product-detail-hero figure::before { position: absolute; z-index: 2; top: 0; left: 0; width: 12px; height: 58%; background: var(--orange); content: ''; }
.product-detail-hero figure img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-hero figcaption { position: absolute; right: 20px; bottom: 20px; padding: 10px 14px; background: rgba(27,34,37,.88); color: white; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.product-story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px,9vw,150px); padding: clamp(80px,9vw,140px) clamp(20px,7vw,120px); }
.product-story h2, .application-block h2 { margin: 24px 0; font-family: var(--font-display); font-size: clamp(45px,5vw,76px); line-height: .95; text-transform: uppercase; }
.product-story > div:first-child > p:last-child { max-width: 680px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.feature-list { margin: 22px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-list li { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); font-size: 14px; line-height: 1.55; }
.feature-list li span { color: var(--orange-deep); font-size: 10px; }
.application-block { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; padding: clamp(70px,8vw,120px) clamp(20px,7vw,120px); background: #dedbd2; }
.application-block h2 { margin-bottom: 0; }
.application-tags { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.application-tags span { min-height: 100px; padding: 27px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 24px; text-transform: uppercase; }
.next-product { display: grid; grid-template-columns: .4fr 1.4fr 40px; gap: 40px; align-items: center; min-height: 160px; padding: 30px clamp(20px,7vw,120px); border-top: 1px solid var(--line); background: var(--paper-light); }
.next-product > span { color: var(--orange-deep); font-size: 10px; text-transform: uppercase; }
.next-product strong { font-family: var(--font-display); font-size: clamp(34px,5vw,68px); line-height: 1; text-transform: uppercase; }
.next-product b { color: var(--orange); font-size: 36px; font-weight: 400; }

.solutions-detail { padding: clamp(60px,8vw,120px) clamp(20px,5vw,78px); }
.solution-detail { display: grid; grid-template-columns: minmax(360px,.8fr) minmax(480px,1.2fr); gap: clamp(45px,8vw,130px); max-width: 1500px; margin: 0 auto; padding: clamp(55px,7vw,105px) 0; border-bottom: 1px solid var(--line); scroll-margin-top: 90px; }
.solution-detail:nth-child(even) figure { order: 2; }
.solution-detail figure { position: relative; min-height: 480px; margin: 0; overflow: hidden; background: white; }
.solution-detail figure img { width: 100%; height: 100%; object-fit: cover; }
.solution-detail figcaption { position: absolute; top: 0; left: 0; padding: 13px 16px; background: var(--orange); color: white; font-family: var(--font-display); font-size: 18px; }
.solution-detail__copy { align-self: center; }
.solution-detail h2 { margin: 18px 0; font-family: var(--font-display); font-size: clamp(48px,6vw,88px); letter-spacing: -.03em; line-height: .88; text-transform: uppercase; }
.solution-detail__summary { max-width: 680px; margin: 0 0 34px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.challenge-response { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.challenge-response > div { padding: 22px 18px 22px 0; }
.challenge-response > div + div { padding-left: 22px; border-left: 1px solid var(--line); }
.challenge-response span, .recommended-products > span { color: var(--orange-deep); font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.challenge-response p { margin: 10px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.recommended-products { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin-top: 26px; }
.recommended-products > span { width: 100%; }
.recommended-products a { display: inline-flex; gap: 8px; align-items: center; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 17px; text-transform: uppercase; }
.recommended-products b { color: var(--orange); font-weight: 400; }

.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px,9vw,150px); padding: clamp(80px,9vw,140px) clamp(20px,7vw,120px); background: white; }
.about-intro h2 { margin-top: 25px; }
.about-intro > div:last-child { padding-top: 40px; }
.about-intro > div:last-child p + p { margin-top: 20px; }
.fact-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink); color: white; }
.fact-grid div { display: flex; min-height: 205px; flex-direction: column; justify-content: center; padding: 28px clamp(20px,3vw,50px); border-right: 1px solid var(--line-light); }
.fact-grid strong { font-family: var(--font-display); font-size: clamp(44px,5vw,72px); }
.fact-grid span { margin-top: 7px; color: rgba(255,255,255,.55); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.rd-section { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 720px; }
.rd-section__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px,7vw,110px); }
.rd-section h2 { margin: 22px 0 28px; }
.rd-section figure { min-height: 680px; margin: 0; overflow: hidden; background: white; }
.rd-section figure img { width: 100%; height: 100%; object-fit: cover; }
.team-band { display: grid; grid-template-columns: 1.3fr .7fr; background: #dedbd2; }
.team-band figure { margin: 0; overflow: hidden; }
.team-band figure img { width: 100%; height: 100%; object-fit: cover; }
.team-band > div { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px,6vw,90px); }
.team-band h2 { margin: 22px 0 26px; }
.process-section { padding: clamp(80px,9vw,140px) clamp(20px,5vw,78px); background: white; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1540px; margin: 0 auto; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-grid article { min-height: 260px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid article > span { color: var(--orange-deep); font-size: 10px; }
.process-grid h3 { margin: 54px 0 14px; font-family: var(--font-display); font-size: 30px; text-transform: uppercase; }
.process-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.partners-full { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; align-items: center; padding: clamp(70px,8vw,120px) clamp(20px,7vw,120px); }
.partners-full h2 { margin: 22px 0 0; font-family: var(--font-display); font-size: clamp(44px,5vw,76px); line-height: .95; text-transform: uppercase; }
.partners-full img { width: 100%; border: 1px solid var(--line); background: white; }
.simple-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(60px,7vw,100px) clamp(20px,7vw,120px); background: var(--paper-light); }
.simple-cta h2 { max-width: 900px; }
.simple-cta .button { flex: 0 0 auto; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; }
.contact-grid > * { position: relative; display: flex; min-height: 235px; flex-direction: column; justify-content: center; padding: clamp(28px,5vw,70px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-light); transition: background 180ms ease; }
.contact-grid > a:hover { background: white; }
.contact-grid span { color: var(--orange-deep); font-size: 9px; letter-spacing: .12em; }
.contact-grid strong { max-width: 720px; margin: 26px 0 8px; font-family: var(--font-display); font-size: clamp(34px,5vw,66px); line-height: .95; text-transform: uppercase; overflow-wrap: anywhere; }
.contact-grid p { margin: 0; color: var(--muted); font-size: 12px; }
.contact-grid b { position: absolute; top: 28px; right: 30px; color: var(--orange); font-size: 25px; font-weight: 400; }
.contact-expect { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; padding: clamp(75px,9vw,140px) clamp(20px,7vw,120px); }
.contact-expect h2 { margin-top: 22px; }
.contact-expect ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.contact-expect li { display: grid; grid-template-columns: 55px 1fr; padding: 22px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.contact-expect li span { color: var(--orange-deep); font-size: 10px; }

.privacy-content { max-width: 1120px; margin: 0 auto; padding: clamp(70px,9vw,140px) clamp(20px,4vw,60px); }
.privacy-updated { margin: 0 0 40px; color: var(--muted); font-size: 11px; text-transform: uppercase; }
.privacy-content > section { display: grid; grid-template-columns: 75px 1fr; gap: 25px; padding: 35px 0; border-top: 1px solid var(--line); }
.privacy-content > section > span { color: var(--orange-deep); font-size: 10px; }
.privacy-content h2 { margin: 0 0 12px; font-family: var(--font-display); font-size: 36px; text-transform: uppercase; }
.privacy-content section p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.not-found { display: flex; min-height: 70vh; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px; text-align: center; }
.not-found > p:first-child { margin: 0; color: var(--orange); font-family: var(--font-display); font-size: 120px; line-height: 1; }
.not-found h1 { margin: 20px 0; font-family: var(--font-display); font-size: 54px; text-transform: uppercase; }
.not-found > p:not(:first-child) { color: var(--muted); line-height: 1.8; }
.not-found .button { margin-top: 22px; }

.site-footer { background: #111719; color: white; }
.footer-cta { display: grid; grid-template-columns: .7fr 1.45fr auto; gap: 40px; align-items: center; padding: clamp(55px,7vw,105px) clamp(20px,5vw,78px); border-bottom: 1px solid var(--line-light); background: var(--orange-action); }
.footer-cta p { margin: 0; font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.footer-cta h2 { max-width: 800px; margin: 0; font-family: var(--font-display); font-size: clamp(44px,6vw,84px); line-height: .9; text-transform: uppercase; }
.footer-main { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 45px; padding: 70px clamp(20px,5vw,78px); }
.footer-brand { display: flex; gap: 17px; align-items: flex-start; }
.footer-brand__mark { display: grid; width: 52px; height: 52px; place-items: center; background: var(--orange); font-family: var(--font-display); font-size: 24px; font-weight: 700; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { font-family: var(--font-display); font-size: 24px; letter-spacing: .06em; }
.footer-brand div span { margin-top: 4px; color: rgba(255,255,255,.46); font-size: 10px; }
.footer-label { margin: 0 0 18px; color: var(--orange); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-main > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-main > div:not(:first-child) a, .footer-main > div:not(:first-child) span { color: rgba(255,255,255,.67); font-size: 12px; line-height: 1.5; }
.footer-main a:hover { color: white !important; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 18px clamp(20px,5vw,78px); border-top: 1px solid var(--line-light); color: rgba(255,255,255,.64); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.mobile-whatsapp { position: fixed; z-index: 55; right: 12px; bottom: 12px; left: 12px; display: none; align-items: center; justify-content: space-between; min-height: 52px; padding: 0 18px; background: #198754; color: white; box-shadow: 0 12px 32px rgba(0,0,0,.28); font-family: var(--font-display); font-size: 16px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.mobile-whatsapp > span { color: #8bf0b7; font-size: 12px; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-toggle, .mobile-menu { display: block; }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .proof-strip { grid-template-columns: repeat(3,1fr); }
  .proof-strip figure { grid-column: 1 / -1; min-height: 240px; }
  .footer-cta { grid-template-columns: 1fr auto; }
  .footer-cta p { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-main > div:last-child { display: none; }
}

@media (max-width: 960px) {
  .hero, .page-hero, .product-detail-hero { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero__copy { min-height: 610px; }
  .hero__copy::after { display: none; }
  .hero__visual { min-height: 580px; }
  .page-hero figure, .page-hero__graphic { min-height: 440px; }
  .page-hero__graphic { display: none; }
  .page-hero:not(.page-hero--image) { grid-template-columns: 1fr; }
  .page-hero:not(.page-hero--image) .page-hero__copy { min-height: 480px; }
  .product-detail-hero figure { min-height: 520px; }
  .section-heading { grid-template-columns: .4fr 1.3fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .solution-row { grid-template-columns: 50px minmax(180px,.8fr) minmax(0,1.2fr) 24px; gap: 20px; }
  .home-about, .partners-section, .rd-section, .team-band { grid-template-columns: 1fr; }
  .home-about figure, .rd-section figure { min-height: 480px; }
  .partners-section { gap: 40px; }
  .partners-section > div { max-width: 800px; }
  .quote-wizard { grid-template-columns: 1fr; }
  .product-story, .about-intro { gap: 60px; }
  .solution-detail { grid-template-columns: 1fr; }
  .solution-detail:nth-child(even) figure { order: 0; }
  .solution-detail figure { min-height: 420px; }
  .fact-grid, .process-grid { grid-template-columns: repeat(2,1fr); }
  .partners-full { grid-template-columns: 1fr; }
  .contact-expect { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 66px; }
  body { padding-bottom: 72px; }
  .site-header { min-height: 66px; padding: 8px 14px; }
  .brand__mark { width: 38px; height: 38px; }
  .brand__name strong { font-size: 18px; }
  .brand__name small { font-size: 7px; }
  .header-quote, .language-switch { display: none; }
  .menu-toggle { width: 40px; height: 40px; }
  .mobile-menu { inset: 66px 0 auto; height: calc(100dvh - 66px); }
  .mobile-whatsapp { display: flex; }
  .hero__copy { min-height: 530px; padding: 60px 20px; }
  .eyebrow { gap: 10px; margin-bottom: 28px; font-size: 8px; }
  .eyebrow span:last-child { text-align: right; }
  .hero h1 { font-size: clamp(53px,16vw,76px); }
  .hero__intro { margin-top: 27px; font-size: 14px; }
  .hero__actions { flex-direction: column; margin-top: 30px; }
  .hero__actions .button { width: 100%; }
  .hero__visual { min-height: 440px; }
  .hero__number { font-size: 190px; }
  .hero__machine-stage { inset: 25% 5% auto; min-height: 250px; padding: 39px 14px 17px; }
  .hero__machine-stage img { height: 210px; }
  .hero__machine-stage .optimized-image { height: 210px; }
  .hero__spec--top { top: 25px; left: 20px; }
  .hero__spec--bottom { right: 20px; bottom: 20px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip > div { min-height: 130px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .proof-strip figure { grid-column: auto; min-height: 220px; }
  .section { padding: 72px 16px; }
  .section-heading { display: block; margin-bottom: 34px; }
  .section-heading h2 { margin: 22px 0; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 500px; }
  .product-card__image { height: 280px; }
  .solution-row { grid-template-columns: 38px 1fr 24px; gap: 12px; padding: 20px 0; }
  .solution-row h3 { font-size: 31px; }
  .solution-row p { grid-column: 2 / -1; }
  .solution-row:hover { padding: 20px 8px; }
  .home-about figure { min-height: 330px; }
  .home-about > div { padding: 60px 20px; }
  .partners-section { padding: 65px 20px; }
  .page-hero__copy { padding: 68px 20px; }
  .page-hero__copy h1 { font-size: clamp(56px,16vw,80px); }
  .page-hero figure { min-height: 330px; }
  .notice-band { grid-template-columns: 1fr; gap: 15px; }
  .quote-wizard { gap: 44px; }
  .quote-wizard__heading h2 { font-size: 52px; }
  .quote-form { grid-template-columns: 1fr; }
  .quote-form__split { grid-template-columns: 1fr; }
  .quote-form__actions { flex-direction: column; }
  .quote-form__actions .button { width: 100%; }
  .product-detail-hero__copy { padding: 68px 20px; }
  .product-detail-hero h1 { font-size: clamp(54px,15vw,78px); }
  .product-detail-hero figure { min-height: 350px; }
  .product-story, .application-block, .about-intro { grid-template-columns: 1fr; gap: 40px; padding: 70px 20px; }
  .application-tags { grid-template-columns: 1fr; }
  .application-tags span { min-height: 80px; border-right: 0; }
  .next-product { grid-template-columns: 1fr 25px; gap: 15px; padding: 35px 20px; }
  .next-product > span { grid-column: 1 / -1; }
  .next-product strong { font-size: 34px; }
  .solutions-detail { padding: 30px 16px 70px; }
  .solution-detail { gap: 34px; padding: 55px 0; }
  .solution-detail figure { min-height: 300px; }
  .solution-detail h2 { font-size: 52px; }
  .challenge-response { grid-template-columns: 1fr; }
  .challenge-response > div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .fact-grid, .process-grid { grid-template-columns: 1fr; }
  .fact-grid div { min-height: 145px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .rd-section__copy, .team-band > div { padding: 65px 20px; }
  .rd-section figure { min-height: 450px; }
  .team-band figure { min-height: 250px; }
  .process-section { padding: 70px 20px; }
  .process-grid article { min-height: 220px; }
  .partners-full { padding: 70px 20px; }
  .simple-cta { align-items: flex-start; flex-direction: column; padding: 65px 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid > * { min-height: 190px; padding: 30px 20px; }
  .contact-grid strong { margin-top: 20px; font-size: 37px; }
  .contact-expect { padding: 70px 20px; }
  .privacy-content > section { grid-template-columns: 40px 1fr; }
  .footer-cta { grid-template-columns: 1fr; padding: 60px 20px; }
  .footer-cta p { grid-column: auto; }
  .footer-cta .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; padding: 55px 20px; }
  .footer-main > div:last-child { display: flex; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding: 18px 20px; }
}

@media (max-width: 390px) {
  .brand__name small { display: none; }
  .hero h1 { font-size: 51px; }
  .hero__machine-stage { inset-inline: 3%; }
  .button { gap: 15px; padding: 0 17px; font-size: 15px; }
  .page-hero__copy h1, .product-detail-hero h1 { font-size: 53px; }
  .contact-grid strong { font-size: 31px; }
}

@media (max-width: 720px) {
  .hero h1 { font-family: Impact, 'Arial Narrow', sans-serif; font-weight: 400; letter-spacing: -.02em; }
}

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