:root {
  --navy: #0b2742;
  --navy-2: #061a2d;
  --blue: #174f7c;
  --orange: #f36a2d;
  --orange-dark: #db5520;
  --paper: #f5f7f9;
  --paper-warm: #f5f2ec;
  --white: #fff;
  --ink: #152536;
  --muted: #667585;
  --line: #dce3e9;
  --container: 1200px;
  --radius: 6px;
  --shadow: 0 24px 60px rgba(3, 25, 44, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }
.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: 200; top: -60px; left: 20px; padding: 12px 18px; color: var(--navy); background: var(--white); border-radius: 4px; }
.skip-link:focus { top: 12px; }
.status-dot { width: 7px; height: 7px; display: inline-block; border-radius: 50%; background: #5bd197; box-shadow: 0 0 0 4px rgba(91,209,151,.14); }

/* top bar and navigation */
.topbar { height: 36px; color: rgba(255,255,255,.72); background: #061727; font-size: 11px; }
.topbar-inner { height: 100%; display: flex; align-items: center; justify-content: flex-end; gap: 30px; }
.topbar p, .topbar-links { margin: 0; display: flex; align-items: center; gap: 18px; }
.topbar p { gap: 9px; }
.topbar a:hover { color: var(--white); }
.site-header { position: absolute; z-index: 60; top: 36px; left: 0; right: 0; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.14); transition: background .2s ease, top .2s ease, box-shadow .2s ease; }
.site-header.scrolled { position: fixed; top: 0; background: rgba(8, 35, 58, .96); box-shadow: 0 9px 30px rgba(0,0,0,.15); backdrop-filter: blur(16px); }
.header-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.brand-symbol { width: 35px; height: 35px; padding: 7px 6px; display: flex; align-items: end; justify-content: center; gap: 3px; border-radius: 4px; background: var(--orange); transform: skewY(-7deg); }
.brand-symbol i { width: 5px; display: block; background: var(--white); border-radius: 1px; }
.brand-symbol i:nth-child(1) { height: 11px; }
.brand-symbol i:nth-child(2) { height: 16px; }
.brand-symbol i:nth-child(3) { height: 22px; }
.brand-name { display: grid; line-height: 1; }
.brand-name strong { font-size: 19px; letter-spacing: .08em; }
.brand-name small { margin-top: 5px; color: rgba(255,255,255,.58); font-size: 8px; letter-spacing: .19em; }
.primary-nav { display: flex; align-items: center; gap: 26px; font-size: 13px; font-weight: 650; }
.primary-nav > a:not(.nav-quote), .nav-products > a { color: rgba(255,255,255,.78); transition: color .2s ease; }
.primary-nav > a:not(.nav-quote):hover, .nav-products > a:hover { color: var(--white); }
.nav-products { position: relative; }
.nav-products > a { display: inline-flex; align-items: center; gap: 7px; }
.nav-products > a b { color: var(--orange); font-size: 14px; transition: transform .2s ease; }
.nav-products:not(.suppress-menu):hover > a b, .nav-products.keyboard-open > a b { transform: rotate(180deg); }
.nav-product-menu { position: absolute; z-index: 20; top: calc(100% + 16px); left: 50%; width: 236px; padding: 6px 0; color: var(--ink); background: var(--white); border-top: 3px solid var(--orange); box-shadow: 0 18px 42px rgba(3,25,44,.2); opacity: 0; visibility: hidden; transform: translate(-50%, -8px); transition: opacity .18s ease, transform .18s ease, visibility 0s linear .16s; }
.nav-product-menu::before { content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 19px; }
.nav-products:not(.suppress-menu):hover .nav-product-menu, .nav-products.keyboard-open .nav-product-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); transition-delay: 0s; }
.nav-product-menu a { min-height: 41px; padding: 9px 18px; display: flex; align-items: center; color: #556372; border-bottom: 1px solid #edf0f2; font-size: 12px; font-weight: 550; line-height: 1.35; transition: color .18s ease, background .18s ease, padding .18s ease; }
.nav-product-menu a:last-child { border-bottom: 0; }
.nav-product-menu a:hover, .nav-product-menu a.active { padding-left: 27px; color: var(--orange-dark); background: #fff6f1; }
.nav-quote { min-height: 42px; padding: 0 15px; display: inline-flex; align-items: center; gap: 18px; color: var(--navy); background: var(--white); border-radius: 3px; }
.nav-quote b { color: var(--orange); font-size: 17px; }
.menu-toggle { display: none; width: 44px; height: 42px; padding: 10px; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.3); border-radius: 4px; }
.menu-toggle i { width: 100%; height: 1px; display: block; margin: 5px 0; background: currentColor; }
.language-switcher { position: relative; }
.language-current { height: 42px; padding: 0 10px; display: inline-flex; align-items: center; gap: 7px; color: var(--white); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.22); border-radius: 3px; cursor: pointer; }
.language-current .globe { color: var(--orange); font-weight: 900; }
.language-current > i { font-style: normal; transition: transform .2s ease; }
.language-current[aria-expanded="true"] > i { transform: rotate(180deg); }
.language-menu { position: absolute; top: calc(100% + 10px); right: 0; width: 180px; padding: 7px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 5px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: .18s ease; }
.language-menu.open { opacity: 1; visibility: visible; transform: none; }
.language-menu button, .language-menu a { width: 100%; min-height: 44px; padding: 8px 10px; display: grid; grid-template-columns: 32px 1fr; align-items: center; border: 0; border-radius: 3px; color: var(--muted); background: transparent; text-align: left; cursor: pointer; }
.language-menu button:hover, .language-menu button.active, .language-menu a:hover, .language-menu a.active { color: var(--navy); background: var(--paper); }
.language-menu button span, .language-menu a span { color: var(--orange); font-size: 11px; font-weight: 800; }

/* hero */
.hero { position: relative; min-height: 820px; color: var(--white); background: var(--navy-2); overflow: hidden; }
.hero-backdrop { position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(4,21,36,.97) 0%, rgba(5,28,47,.9) 45%, rgba(5,28,47,.5) 75%, rgba(5,28,47,.52) 100%), url("assets/workshop-main.jpg"); background-size: cover; background-position: center; }
.hero-backdrop::after { content: ""; position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 74px 74px; mask-image: linear-gradient(to right, black, transparent 75%); }
.hero-layout { position: relative; z-index: 2; min-height: 690px; padding-top: 142px; padding-bottom: 75px; display: grid; grid-template-columns: 1fr; align-items: center; }
.hero-copy { max-width: 850px; }
.kicker { margin: 0 0 24px; display: flex; align-items: center; gap: 12px; color: #f3a37d; font-size: 12px; letter-spacing: .1em; }
.kicker span { width: 30px; height: 2px; background: var(--orange); }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(52px, 5vw, 76px); line-height: 1.08; letter-spacing: -.045em; font-weight: 760; }
html[lang="zh-CN"] .hero h1 { word-break: keep-all; overflow-wrap: normal; }
.hero h1 strong { color: var(--orange); font-weight: inherit; }
.hero-lead { max-width: 680px; margin: 28px 0 0; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.85; }
.hero-actions { margin: 35px 0 22px; display: flex; gap: 12px; flex-wrap: wrap; }
.button { min-height: 52px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; border: 1px solid transparent; border-radius: 3px; font-size: 14px; font-weight: 750; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--orange); }
.button-primary:hover { background: var(--orange-dark); }
.button-outline { color: var(--white); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.05); }
.button-outline:hover { border-color: var(--white); }
.button-dark { color: var(--white); background: var(--navy); }
.file-hint { margin: 0; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.56); font-size: 12px; }
.file-hint span { color: rgba(255,255,255,.75); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }
.hero-proof { align-self: end; margin-bottom: -10px; background: var(--white); box-shadow: var(--shadow); }
.hero-product { position: relative; aspect-ratio: 1.25; overflow: hidden; background: #edf1f3; }
.hero-product img { width: 100%; height: 100%; object-fit: cover; }
.image-tag { position: absolute; top: 14px; left: 14px; padding: 7px 9px; color: var(--white); background: rgba(8,32,52,.85); font-size: 9px; letter-spacing: .1em; }
.hero-proof-copy { padding: 22px 24px 19px; color: var(--ink); }
.hero-proof-copy > p { margin: 0 0 7px; color: var(--muted); font-size: 10px; letter-spacing: .1em; }
.hero-proof-copy > strong { display: flex; align-items: end; gap: 9px; color: var(--navy); }
.hero-proof-copy > strong > span { color: var(--orange); font-size: 62px; line-height: .9; letter-spacing: -.06em; }
.hero-proof-copy > strong small { padding-bottom: 7px; font-size: 15px; }
.proof-line { margin-top: 18px; padding-top: 14px; display: flex; justify-content: space-between; gap: 15px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.proof-line b { color: #148455; }
.hero-stats { position: relative; z-index: 3; min-height: 130px; background: rgba(6,25,42,.92); border-top: 1px solid rgba(255,255,255,.11); }
.stats-grid { min-height: 130px; display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid > div { padding: 25px 32px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(255,255,255,.1); }
.stats-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.1); }
.stats-grid strong { color: var(--orange); font-size: 34px; line-height: 1; }
.stats-grid span { margin-top: 9px; color: rgba(255,255,255,.58); font-size: 11px; }

/* trust and shared headings */
.trust-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { min-height: 126px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { padding: 24px 26px; display: grid; grid-template-columns: 28px 1fr; align-content: center; border-left: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 1px solid var(--line); }
.trust-grid > div > span { grid-row: 1 / 3; color: var(--orange); font: 10px/1.5 ui-monospace, monospace; }
.trust-grid strong { color: var(--navy); font-size: 14px; }
.trust-grid p { margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.section-head { margin-bottom: 46px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; }
.section-head.compact { margin-bottom: 42px; }
.section-label { margin: 0 0 18px; color: var(--orange); font-size: 15px; font-weight: 800; letter-spacing: .13em; }
.section-label::before { content: ""; width: 32px; height: 3px; margin-right: 13px; display: inline-block; vertical-align: middle; background: currentColor; }
.section-head h2, .factory-copy h2, .about-heading h2, .quality-copy h2, .faq-head h2, .quote-copy h2 { margin: 0; color: var(--navy); font-size: clamp(34px, 3.5vw, 52px); line-height: 1.12; letter-spacing: -.035em; }
.section-head h2 strong, .factory-copy h2 strong, .about-heading h2 strong, .quality-copy h2 strong, .faq-head h2 strong, .quote-copy h2 strong { color: var(--orange); font-weight: inherit; }
.section-head > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }

/* services */
.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { min-height: 0; display: grid; grid-template-columns: 1fr; background: var(--white); border: 1px solid var(--line); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 45px rgba(11,39,66,.12); }
.service-image { position: relative; min-height: 215px; overflow: hidden; background: #e9eef1; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-image img { transform: scale(1.035); }
.service-image > span { position: absolute; left: 14px; top: 14px; width: 32px; height: 32px; display: grid; place-items: center; color: var(--white); background: var(--orange); font: 10px/1 ui-monospace, monospace; }
.service-body { padding: 25px 22px 28px; display: flex; flex-direction: column; align-items: start; }
.service-body > p:first-child { margin: 0 0 12px; color: #8b98a4; font: 9px/1.2 ui-monospace, monospace; letter-spacing: .13em; }
.service-body h3 { margin: 0; color: var(--navy); font-size: 20px; }
.service-body > p:last-child { margin: 20px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.service-tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 5px; }
.service-tags span { padding: 5px 8px; color: #64717d; background: var(--paper); border: 1px solid var(--line); font-size: 9px; }
.capability-panel { margin-top: 18px; padding: 28px 30px; display: grid; grid-template-columns: 1.1fr repeat(3, 1fr); gap: 30px; color: var(--white); background: var(--navy); }
.capability-title p { margin: 0 0 7px; color: var(--orange); font-size: 9px; letter-spacing: .12em; }
.capability-title h3 { margin: 0; font-size: 19px; }
.capability-column { padding-left: 25px; border-left: 1px solid rgba(255,255,255,.13); }
.capability-column > span { color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: .12em; }
.capability-column p { margin: 9px 0 0; color: rgba(255,255,255,.78); font-size: 11px; line-height: 1.8; }

/* product center */
.products { color: var(--ink); background: var(--white); }
.section-head.light h2 { color: var(--white); }
.section-head.light > p { color: rgba(255,255,255,.58); }
.product-center-heading { margin-bottom: 28px; display: flex; justify-content: center; }
.product-center-heading .section-label { margin-bottom: 0; }
.product-overview-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.product-overview-card { min-width: 0; display: block; overflow: hidden; color: inherit; background: var(--white); border: 1px solid #dde3e7; transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.product-overview-card:hover { border-color: #f2a17d; box-shadow: 0 16px 38px rgba(11,39,66,.12); transform: translateY(-4px); }
.product-overview-card img { width: 100%; aspect-ratio: 1.28; object-fit: contain; padding: 6px; background: #fff; box-sizing: border-box; transition: transform .45s ease; }
.product-overview-card:hover img { transform: scale(1.035); }
.product-overview-caption { min-height: 112px; padding: 19px 20px 20px; border-top: 1px solid #edf0f2; }
.product-overview-caption span { color: var(--orange-dark); font: 9px/1.2 ui-monospace, monospace; letter-spacing: .12em; }
.product-overview-caption h3 { margin: 8px 0 0; color: var(--navy); font-size: 19px; line-height: 1.35; }
.product-overview-caption b { margin-top: 13px; display: inline-block; color: var(--muted); font-size: 12px; font-weight: 650; transition: color .2s ease; }
.product-overview-card:hover .product-overview-caption b { color: var(--orange-dark); }
.section-head[hidden], .product-overview-grid[hidden] { display: none; }
.product-tabs { margin-bottom: 36px; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.product-tabs button { min-height: 56px; padding: 13px 21px; color: #455463; background: var(--white); border: 1px solid #d9dfe4; border-radius: 2px; cursor: pointer; font-size: 15px; font-weight: 600; line-height: 1.4; transition: color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.product-tabs button:hover { color: var(--orange-dark); border-color: #f5a27d; }
.product-tabs button.active { color: var(--orange-dark); border-color: var(--orange); box-shadow: inset 0 0 0 1px var(--orange), 0 8px 20px rgba(243,95,36,.10); transform: translateY(-1px); }
.product-tabs[hidden], .product-panels[hidden] { display: none; }
.product-panels { color: var(--ink); background: transparent; scroll-margin-top: 105px; }
.product-panel { padding: 0; }
.product-panel[hidden] { display: none; }
.product-back { margin: 0 0 30px; padding: 0 0 8px; color: var(--navy); background: transparent; border: 0; border-bottom: 1px solid #b9c4cc; cursor: pointer; font: inherit; font-size: 13px; font-weight: 700; }
.product-back:hover { color: var(--orange-dark); border-bottom-color: var(--orange); }
.product-panel-head { margin-bottom: 28px; padding-bottom: 24px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: end; gap: 45px; border-bottom: 1px solid var(--line); }
.product-panel-head > div > span { color: var(--orange); font: 9px/1 ui-monospace, monospace; letter-spacing: .14em; }
.product-panel-head h3 { margin: 9px 0 0; color: var(--navy); font-size: clamp(26px, 3vw, 38px); line-height: 1.2; }
.product-panel-head > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.product-gallery, .product-gallery-small, .product-gallery-single { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-gallery-single { max-width: none; }
.product-gallery figure { min-width: 0; margin: 0; overflow: hidden; background: var(--white); border: 1px solid #dde3e7; transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.product-gallery figure:hover { border-color: #f2a17d; box-shadow: 0 14px 34px rgba(11,39,66,.11); transform: translateY(-3px); }
.product-gallery img { width: 100%; aspect-ratio: 1.22; object-fit: cover; background: #f3f5f6; transition: transform .45s ease; }
.product-gallery figure:hover img { transform: scale(1.04); }
.product-gallery figcaption { min-height: 58px; padding: 17px 16px; color: #3e4c59; background: var(--white); border-top: 1px solid #edf0f2; font-size: 14px; font-weight: 600; line-height: 1.5; letter-spacing: 0; }
.product-cta { margin-top: 24px; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.15); }
.product-cta { border-top-color: var(--line); }
.product-cta p { margin: 0; color: var(--muted); font-size: 13px; }
.products .text-link { color: var(--navy); border-bottom-color: #b9c4cc; }
.products .text-link:hover { color: var(--orange-dark); border-bottom-color: var(--orange); }
.text-link { padding-bottom: 7px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.35); font-size: 13px; font-weight: 750; }
.text-link span { margin-right: 18px; }

/* factory */
.factory { background: var(--paper-warm); }
.factory-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 72px; align-items: stretch; }
.factory-gallery { position: relative; min-height: 820px; }
.factory-main { position: absolute; inset: 0; margin: 0; overflow: hidden; box-shadow: var(--shadow); }
.factory-main img { width: 100%; height: 100%; object-fit: cover; }
.factory-main::after { content: ""; position: absolute; inset: 60% 0 0; background: linear-gradient(transparent, rgba(4,20,34,.65)); }
.factory-main figcaption { position: absolute; z-index: 2; left: 18px; bottom: 16px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.8); font-size: 10px; }
.factory-small { position: absolute; right: 0; bottom: 0; width: 48%; height: 245px; margin: 0; overflow: hidden; border: 8px solid var(--paper-warm); box-shadow: 0 15px 35px rgba(3,25,44,.16); }
.factory-small img { width: 100%; height: 100%; object-fit: cover; }
.factory-number { position: absolute; right: 0; top: 32px; min-width: 180px; padding: 21px 24px; display: flex; align-items: center; gap: 14px; color: var(--white); background: var(--orange); box-shadow: 0 18px 40px rgba(174,68,22,.25); }
.factory-number strong { font-size: 52px; line-height: .9; letter-spacing: -.06em; }
.factory-number span { font-size: 11px; line-height: 1.45; }
.factory-copy > p:not(.section-label) { margin: 24px 0 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
.check-list { margin: 28px 0 31px; padding: 0; list-style: none; border-top: 1px solid #d8d4cc; }
.check-list li { padding: 18px 0; display: grid; grid-template-columns: 30px 1fr; gap: 12px; border-bottom: 1px solid #d8d4cc; }
.check-list li > span { width: 22px; height: 22px; display: grid; place-items: center; color: var(--white); background: var(--orange); border-radius: 50%; font-size: 11px; }
.check-list strong { color: var(--navy); font-size: 14px; }
.check-list p { margin: 5px 0 0; color: var(--muted); font-size: 11px; }

.factory-about { align-self: center; scroll-margin-top: 100px; }
.factory-about .factory-company { margin: 0 0 15px; color: var(--navy); font-size: 13px; font-weight: 800; letter-spacing: .04em; }
.factory-about h2 { font-size: clamp(36px, 3.4vw, 49px); }
.factory-about .factory-about-lead { margin-top: 25px; color: #35495b; font-size: 14px; line-height: 1.9; }
.capability-evidence { margin-top: 25px; overflow: hidden; background: var(--white); border: 1px solid #d8d4cc; border-top: 3px solid var(--orange); }
.capability-evidence h3 { margin: 0; padding: 16px 20px; color: var(--navy); border-bottom: 1px solid #e5e1da; font-size: 16px; }
.capability-evidence dl { margin: 0; }
.capability-evidence dl > div { padding: 13px 20px; display: grid; grid-template-columns: 118px 1fr; gap: 18px; border-bottom: 1px solid #ece8e1; }
.capability-evidence dt { color: var(--orange-dark); font-size: 12px; font-weight: 800; }
.capability-evidence dd { margin: 0; color: #4f6070; font-size: 12px; line-height: 1.7; }
.capability-evidence > p { margin: 0; padding: 13px 20px; color: var(--muted); background: #faf8f4; font-size: 11px; line-height: 1.65; }
.factory-about-grid { margin-top: 25px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.factory-about-grid article { min-height: 175px; padding: 21px 20px; background: var(--white); border-top: 3px solid var(--orange); }
.factory-about-grid article > span { color: var(--orange-dark); font: 10px/1.2 ui-monospace, monospace; letter-spacing: .09em; }
.factory-about-grid article p { margin: 15px 0 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.factory-about-services { margin-top: 12px; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid #d8d4cc; }
.factory-about-services p { min-height: 90px; margin: 0; padding: 18px 19px; color: #4f6070; font-size: 11px; line-height: 1.7; }
.factory-about-services p + p { border-left: 1px solid #d8d4cc; }
.factory-about blockquote { margin: 20px 0 0; padding: 20px 22px; color: var(--navy); background: #fff7f2; border-left: 4px solid var(--orange); font-size: 12px; line-height: 1.8; }
.factory-about blockquote strong { color: var(--orange-dark); }
.factory-about .factory-about-future { margin-top: 17px; color: var(--muted); font-size: 11px; line-height: 1.75; }

/* company profile */
.about { background: var(--white); }
.about-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
.about-heading { position: sticky; top: 110px; }
.about-company { margin: 0 0 16px; color: var(--navy); font-size: 14px; font-weight: 800; letter-spacing: .03em; }
.about-facts { margin-top: 36px; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.about-facts div { min-height: 112px; padding: 20px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-facts strong { color: var(--orange); font-size: 32px; line-height: 1; }
.about-facts span { margin-top: 9px; color: var(--muted); font-size: 10px; }
.about-story { padding: 8px 0 0 42px; border-left: 2px solid var(--orange); }
.about-story > p { margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.9; }
.about-story > p:first-child { color: var(--ink); font-size: 16px; }
.about-story blockquote { margin: 28px 0; padding: 24px 27px; color: var(--navy); background: var(--paper-warm); border-left: 4px solid var(--orange); font-size: 15px; line-height: 1.85; }
.about-story blockquote strong { color: var(--orange-dark); }

/* industries */
.industries { background: var(--paper); }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.industry-grid article { min-width: 0; overflow: hidden; background: var(--white); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.industry-grid article:hover { z-index: 1; border-color: #f2a17d; transform: translateY(-5px); box-shadow: var(--shadow); }
.industry-media { aspect-ratio: 1.18; overflow: hidden; background: var(--white); border-bottom: 1px solid var(--line); }
.industry-media img { width: 100%; height: 100%; object-fit: contain; padding: 6px; box-sizing: border-box; transition: transform .4s ease; }
.industry-grid article:hover .industry-media img { transform: scale(1.045); }
.industry-copy { padding: 20px 22px 23px; }
.industry-copy > span { color: var(--orange); font: 10px/1 ui-monospace, monospace; }
.industry-grid h3 { margin: 12px 0 9px; color: var(--navy); font-size: 20px; }
.industry-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

/* quality */
.quality { color: var(--white); background: var(--blue); }
.quality-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.light-label { color: var(--orange); }
.quality-copy h2, .quote-copy h2 { color: var(--white); }
.quality-copy > p:not(.section-label), .quote-copy > p:not(.section-label) { margin: 25px 0 0; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.8; }
.quality-promise { margin-top: 38px; padding-top: 24px; display: grid; grid-template-columns: 48px 1fr; gap: 16px; border-top: 1px solid rgba(255,255,255,.17); }
.quality-promise > span { width: 44px; height: 44px; display: grid; place-items: center; color: var(--white); background: var(--orange); font-weight: 800; }
.quality-promise p { margin: 0; color: rgba(255,255,255,.5); font-size: 11px; line-height: 1.7; }
.quality-promise strong { color: var(--white); font-size: 14px; }
.quality-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.quality-steps li { min-height: 120px; padding: 22px 0; display: grid; grid-template-columns: 52px 1fr; align-items: center; border-bottom: 1px solid rgba(255,255,255,.18); }
.quality-steps li > span { color: #ffad86; font: 11px/1 ui-monospace, monospace; }
.quality-steps strong { font-size: 17px; }
.quality-steps p { margin: 7px 0 0; color: rgba(255,255,255,.52); font-size: 12px; line-height: 1.6; }

/* process + faq */
.process { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 2px solid var(--navy); }
.process-grid article { min-height: 220px; padding: 24px 24px 20px 0; }
.process-grid article + article { padding-left: 24px; border-left: 1px solid var(--line); }
.process-grid article > span { color: var(--orange); font: 11px/1 ui-monospace, monospace; }
.process-grid h3 { margin: 35px 0 13px; color: var(--navy); font-size: 18px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq-head > p:last-child { max-width: 390px; margin: 24px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--navy); list-style: none; cursor: pointer; font-size: 16px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary b { color: var(--orange); font-size: 22px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary b { transform: rotate(45deg); }
.faq-list details p { margin: -2px 50px 24px 0; color: var(--muted); font-size: 12px; line-height: 1.75; }

/* quote form */
.quote-section { padding: 108px 0; color: var(--white); background: var(--navy-2); }
.quote-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; }
.contact-card { margin-top: 38px; border-top: 1px solid rgba(255,255,255,.15); }
.contact-card > * { min-height: 65px; margin: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.15); }
.contact-card span { color: rgba(255,255,255,.52); font-size: 12px; }
.contact-card strong { color: rgba(255,255,255,.9); font-size: 13px; }
.contact-card strong { max-width: 72%; text-align: right; line-height: 1.6; }
.contact-card a:hover strong { color: #ffad86; }
.quote-form { padding: 35px; color: var(--ink); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-title { margin-bottom: 27px; padding-bottom: 18px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.form-title strong { color: var(--navy); font-size: 20px; }
.form-title span { color: #75828e; font-size: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form > label, .form-row label { display: block; margin-bottom: 15px; color: #51606e; font-size: 12px; font-weight: 750; letter-spacing: .03em; }
.quote-form input:not([type="file"]):not([type="checkbox"]), .quote-form select, .quote-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; color: var(--ink); background: #f3f5f7; border: 1px solid transparent; border-radius: 3px; outline: none; font-size: 14px; letter-spacing: 0; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--orange); background: var(--white); }
.quote-form textarea { resize: vertical; }
.file-drop { min-height: 100px; padding: 15px !important; display: grid !important; grid-template-columns: 42px 1fr auto; gap: 14px; align-items: center; border: 1px dashed #bfc9d1; cursor: pointer; }
.file-drop input { position: absolute; opacity: 0; pointer-events: none; }
.file-icon { width: 40px; height: 40px; display: grid; place-items: center; color: var(--orange); background: #fff0e9; border-radius: 50%; font-size: 19px; }
.file-drop strong { display: block; color: var(--navy); font-size: 12px; }
.file-drop small { margin-top: 5px; display: block; color: #74818d; font-size: 11px; font-weight: 500; }
.file-status { padding: 7px 9px; color: #667585; border: 1px solid var(--line); border-radius: 20px; font-size: 11px; }
.file-protection { margin-top: -4px; padding: 13px 15px; color: #526171; background: #f7f9fa; border-left: 3px solid var(--orange); font-size: 12px; line-height: 1.65; }
.file-protection strong { color: var(--navy); }
.file-protection p { margin: 5px 0 0; }
.file-protection a, .consent a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 2px; }
.form-footer { margin-top: 23px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.consent { max-width: 340px; margin: 0 !important; display: flex !important; gap: 8px; color: #687682 !important; font-size: 11px !important; line-height: 1.55; letter-spacing: 0 !important; }
.consent input { margin-top: 2px; accent-color: var(--orange); }
.quote-form .button { border: 0; flex: none; }
.quote-form .button:disabled { opacity: .62; cursor: wait; transform: none; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.upload-progress { height: 4px; margin-top: 14px; overflow: hidden; background: #e6ebee; border-radius: 2px; }
.upload-progress span { width: 0; height: 100%; display: block; background: var(--orange); transition: width .15s linear; }
.form-message { min-height: 18px; margin: 13px 0 0; color: var(--muted); font-size: 12px; text-align: right; }
.form-message.error { color: #bd3f25; }
.form-message.success { color: #237b4a; }

/* footer and mobile contact */
.site-footer { padding: 65px 0 24px; color: var(--white); background: #04111e; }
.footer-main { padding-bottom: 48px; display: grid; grid-template-columns: 1.5fr .65fr .65fr 1fr; gap: 60px; }
.footer-brand p { max-width: 360px; margin: 20px 0 0; color: rgba(255,255,255,.42); font-size: 11px; line-height: 1.7; }
.footer-column, .footer-contact { display: flex; flex-direction: column; align-items: start; gap: 12px; }
.footer-column strong, .footer-contact > strong { margin-bottom: 7px; color: var(--white); font-size: 12px; }
.footer-column a, .footer-contact a, .footer-contact span { color: rgba(255,255,255,.5); font-size: 11px; }
.footer-column a:hover, .footer-contact a:hover { color: var(--orange); }
.footer-contact a:first-of-type { color: #ff9869; font-size: 15px; font-weight: 750; }
.footer-contact address { margin: 2px 0 0; display: grid; gap: 4px; color: rgba(255,255,255,.5); font-style: normal; line-height: 1.55; }
.footer-contact address b { color: rgba(255,255,255,.75); font-size: 11px; }
.footer-contact address span { max-width: 310px; }
.footer-bottom { padding-top: 21px; display: flex; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.38); font: 11px/1.5 ui-monospace, monospace; letter-spacing: .04em; }
.footer-bottom a:hover { color: var(--white); }
.mobile-contact { display: none; }

/* privacy policy */
.privacy-page { color: var(--ink); background: var(--paper); }
.privacy-header { color: var(--white); background: var(--navy-2); }
.privacy-header .container { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.privacy-header > .container > a:last-child { color: rgba(255,255,255,.75); font-size: 13px; }
.privacy-main { padding: 70px 0 90px; }
.privacy-document { max-width: 900px; padding: 55px 64px; background: var(--white); box-shadow: 0 18px 55px rgba(11,39,66,.09); }
.privacy-document h1 { margin: 0; color: var(--navy); font-size: clamp(38px, 5vw, 60px); line-height: 1.12; letter-spacing: -.04em; }
.privacy-document h1 strong { color: var(--orange); font-weight: inherit; }
.privacy-document > p, .privacy-document section p { color: #536475; font-size: 14px; line-height: 1.9; }
.privacy-document .privacy-updated { margin: 22px 0 34px; color: #7d8994; font-size: 12px; }
.privacy-document section { padding: 25px 0; border-top: 1px solid var(--line); }
.privacy-document section:first-of-type { margin-top: 32px; }
.privacy-document section h2 { margin: 0 0 9px; color: var(--navy); font-size: 20px; }
.privacy-document section p { margin: 0; }
.privacy-document a:not(.button) { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 3px; }
.privacy-actions { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.privacy-button { color: var(--navy); background: var(--white); border-color: var(--navy); }
.privacy-footer { padding: 25px 0; color: rgba(255,255,255,.48); background: #04111e; font-size: 12px; }
.privacy-footer .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.privacy-footer a:hover { color: var(--white); }

.reveal { opacity: 1; transform: none; }
.motion-ready .reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; transition-delay: var(--delay, 0ms); }
.motion-ready .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .primary-nav { gap: 18px; }
  .primary-nav > a:not(.nav-quote) { display: none; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero h1 { font-size: 58px; }
  .factory-layout { gap: 50px; }
  .quality-layout { gap: 60px; }
  .footer-main { gap: 35px; }
}

@media (max-width: 1080px) {
  .topbar { display: none; }
  .site-header, .site-header.scrolled { position: fixed; top: 0; background: rgba(8,35,58,.97); }
  .header-inner { height: 68px; }
  .menu-toggle { display: block; margin-left: auto; }
  .primary-nav { position: fixed; inset: 68px 0 0; padding: 18px 20px 100px; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: rgba(5,24,41,.99); overflow-y: auto; opacity: 0; visibility: hidden; pointer-events: none; transform: translateX(100%); transition: transform .26s ease, opacity .2s ease, visibility 0s linear .26s; }
  .primary-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition-delay: 0s; }
  .primary-nav > a:not(.nav-quote) { padding: 17px 7px; display: block; color: rgba(255,255,255,.78); border-bottom: 1px solid rgba(255,255,255,.1); font-size: 17px; }
  .nav-products { display: block; }
  .nav-products > a { padding: 17px 7px; display: flex; justify-content: space-between; color: rgba(255,255,255,.78); border-bottom: 1px solid rgba(255,255,255,.1); font-size: 17px; }
  .nav-products > a b, .nav-product-menu { display: none; }
  .nav-quote { margin-top: 18px; justify-content: space-between; }
  .language-switcher { margin-top: 10px; width: 100%; }
  .language-current { width: 100%; justify-content: space-between; }
  .language-menu { position: static; width: 100%; margin-top: 7px; display: none; opacity: 1; visibility: visible; transform: none; }
  .language-menu.open { display: block; }
  .hero { min-height: auto; }
  .hero-layout { min-height: 0; padding-top: 125px; padding-bottom: 65px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 690px; }
  .hero-proof { width: min(480px, 100%); margin: 0; }
  .hero-stats { min-height: 0; }
  .stats-grid { min-height: 0; grid-template-columns: repeat(2, 1fr); }
  .stats-grid > div { min-height: 105px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div { min-height: 112px; border-bottom: 1px solid var(--line); }
  .section-head { grid-template-columns: 1fr; gap: 25px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { grid-template-columns: 1fr; }
  .capability-panel { grid-template-columns: repeat(2, 1fr); }
  .capability-title { grid-column: 1 / -1; }
  .capability-column { padding-left: 0; border-left: 0; }
  .product-tabs { justify-content: flex-start; }
  .product-overview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-panel-head { grid-template-columns: 1fr; align-items: start; gap: 12px; }
  .product-gallery, .product-gallery-small, .product-gallery-single { grid-template-columns: repeat(3, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 55px; }
  .about-heading { position: static; }
  .about-heading h2 { max-width: 700px; }
  .about-facts { max-width: 650px; grid-template-columns: repeat(4, 1fr); }
  .factory-layout, .quality-layout, .faq-layout, .quote-layout { grid-template-columns: 1fr; gap: 55px; }
  .factory-copy { max-width: 650px; }
  .factory-gallery { min-height: 620px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-copy { max-width: 650px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid article:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .process-grid article:nth-child(4) { border-top: 1px solid var(--line); }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  html { scroll-padding-top: 70px; }
  body { padding-bottom: 63px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section, .quote-section { padding: 68px 0; }
  .brand-symbol { width: 32px; height: 32px; }
  .brand-name strong { font-size: 16px; }
  .hero-layout { padding-top: 110px; gap: 42px; }
  .kicker { font-size: 10px; }
  .hero h1 { font-size: clamp(30px, 8.2vw, 40px); line-height: 1.14; letter-spacing: -.035em; }
  .hero-lead { font-size: 14px; line-height: 1.8; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; justify-content: space-between; }
  .file-hint { align-items: start; flex-direction: column; gap: 5px; }
  .hero-proof-copy > strong > span { font-size: 54px; }
  .stats-grid > div { padding: 21px 19px; }
  .stats-grid strong { font-size: 29px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 102px; border-right: 1px solid var(--line); }
  .section-head { margin-bottom: 38px; }
  .section-label { margin-bottom: 15px; font-size: 15px; }
  .section-label::before { width: 26px; height: 2px; margin-right: 10px; }
  .section-head h2, .factory-copy h2, .about-heading h2, .quality-copy h2, .faq-head h2, .quote-copy h2 { font-size: 34px; }
  .service-grid { margin-inline: -14px; padding: 0 14px 10px; display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .service-card { min-width: 84%; min-height: 0; grid-template-columns: 1fr; scroll-snap-align: start; }
  .service-image { min-height: 220px; }
  .service-body { padding: 26px 22px; }
  .capability-panel { padding: 24px 21px; grid-template-columns: 1fr; gap: 24px; }
  .capability-title { grid-column: auto; }
  .capability-column { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); }
  .product-overview-grid { margin-inline: -14px; padding: 0 14px 10px; display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .product-overview-card { min-width: 84%; scroll-snap-align: start; }
  .product-overview-card img { aspect-ratio: 1.32; }
  .product-overview-caption { min-height: 76px; padding: 16px 17px 17px; }
  .product-overview-caption h3 { font-size: 17px; }
  .product-tabs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-tabs button { width: 100%; min-height: 58px; padding: 10px 8px; border: 1px solid #d9dfe4; font-size: 11px; }
  .product-panel { padding: 0; }
  .product-gallery, .product-gallery-small, .product-gallery-single { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-gallery img { aspect-ratio: 1.05; }
  .product-gallery figcaption { min-height: 51px; padding: 14px 11px; font-size: 11px; }
  .product-cta { align-items: start; flex-direction: column; }
  .about-facts { grid-template-columns: repeat(2, 1fr); }
  .about-story { padding-left: 22px; }
  .capability-evidence dl > div { grid-template-columns: 1fr; gap: 6px; }
  .factory-gallery { min-height: 430px; }
  .factory-main { inset: 0; }
  .factory-about-grid { grid-template-columns: 1fr; }
  .factory-about-grid article { min-height: 0; }
  .factory-about-services { grid-template-columns: 1fr; }
  .factory-about-services p { min-height: 0; }
  .factory-about-services p + p { border-left: 0; border-top: 1px solid #d8d4cc; }
  .factory-small { width: 55%; height: 175px; }
  .factory-number { min-width: 150px; padding: 17px; }
  .factory-number strong { font-size: 43px; }
  .industry-grid { margin-inline: -14px; padding: 0 14px 10px; display: flex; border-left: 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .industry-grid article { min-width: 82%; min-height: 0; border-left: 1px solid var(--line); scroll-snap-align: start; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article, .process-grid article + article, .process-grid article:nth-child(3) { min-height: 190px; padding: 22px 0; border-left: 0; border-top: 1px solid var(--line); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 25px 18px; }
  .quote-form > label, .form-row label { font-size: 13px; }
  .quote-form input:not([type="file"]):not([type="checkbox"]), .quote-form select, .quote-form textarea { font-size: 16px; }
  .file-drop { grid-template-columns: 40px 1fr; }
  .file-status { display: none; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; justify-content: space-between; }
  .form-message { text-align: left; }
  .contact-card > * { align-items: start; flex-direction: column; justify-content: center; gap: 6px; }
  .contact-card strong { max-width: none; text-align: left; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { align-items: start; flex-direction: column; }
  .mobile-contact { position: fixed; z-index: 80; left: 0; right: 0; bottom: 0; height: 63px; display: grid; grid-template-columns: 1fr 1fr 1.45fr; color: var(--navy); background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -8px 25px rgba(5,25,42,.12); }
  .mobile-contact a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border-right: 1px solid var(--line); }
  .mobile-contact span { color: var(--orange); font-size: 16px; }
  .mobile-contact b { font-size: 10px; }
  .mobile-contact .mobile-quote { color: var(--white); background: var(--orange); border: 0; }
  .mobile-contact .mobile-quote span { color: var(--white); }
  .privacy-main { padding: 28px 0 55px; }
  .privacy-document { padding: 34px 22px; }
  .privacy-document h1 { font-size: 34px; }
  .privacy-document > p, .privacy-document section p { font-size: 14px; }
  .privacy-actions { flex-direction: column; }
  .privacy-actions .button { width: 100%; }
}

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