/*
 * XIAOKABU 品牌色：修改下方 4 个变量即可全站换色
 * 主色／天空蓝：#159DE8；辅助色／阳光橙：#FF9F2F
 */
:root {
  --brand-blue: #159de8;
  --brand-blue-dark: #087dcc;
  --accent-orange: #ff9f2f;
  --navy: #07365c;
  --ink: #172b3b;
  --muted: #647889;
  --light: #f2f8fc;
  --line: #dcebf4;
  --white: #fff;
  --shadow: 0 24px 60px rgba(4, 55, 92, 0.11);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, Arial, "PingFang SC", "Microsoft YaHei", sans-serif; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.95); border-bottom: 1px solid rgba(7,54,92,.08); backdrop-filter: blur(15px); }
.header-inner { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand-logo { width: 108px; flex: 0 0 auto; }
.brand-logo img { width: 108px; height: 86px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { position: relative; padding: 36px 0 32px; color: #29465c; font-size: 14px; font-weight: 600; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 25px; height: 2px; background: var(--accent-orange); transition: right .25s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--accent-orange); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch { border: 1px solid var(--line); border-radius: 22px; background: var(--white); color: var(--navy); min-width: 108px; height: 42px; padding: 0 14px; cursor: pointer; font-weight: 700; outline: none; }
.lang-switch:hover { border-color: var(--accent-orange); color: var(--accent-orange); }
.menu-toggle { display: none; width: 42px; height: 40px; border: 0; background: var(--navy); color: #fff; cursor: pointer; font-size: 20px; }
.hero { min-height: calc(100vh - 94px); background-color:#0b83da; background-image:linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px),linear-gradient(110deg,#0753aa 0%,#087ad7 52%,#20b8ef 100%); background-size:84px 84px,84px 84px,100% 100%; color: #fff; position: relative; overflow: hidden; display: grid; align-items: center; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.24); }
.hero::before { width: 700px; height: 700px; right: -150px; top: -190px; box-shadow: 0 0 0 80px rgba(255,255,255,.04), 0 0 0 160px rgba(255,255,255,.03); }
.hero::after { width: 380px; height: 380px; left: -220px; bottom: -150px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .86fr; gap: 70px; align-items: center; padding-block: 78px; }
.hero-copy { max-width: 660px; }
.kicker { margin: 0 0 22px; display: flex; align-items: center; gap: 12px; color: var(--brand-blue); font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.kicker::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.hero .kicker { color: #dbf3ff; }
.hero h1 { margin: 0 0 28px; font-size: clamp(45px, 6.2vw, 82px); line-height: 1.08; letter-spacing: -.045em; font-weight: 750; }
.hero h1 strong { color: #fff; font-weight: inherit; }
.hero-lead { max-width: 620px; margin: 0; color: rgba(255,255,255,.86); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; padding: 0 22px; border: 1px solid transparent; font-size: 14px; font-weight: 700; cursor: pointer; transition: transform .2s, background .2s, color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--brand-blue-dark); }
.btn-outline { border-color: rgba(255,255,255,.58); color: #fff; }
.btn-blue { background: var(--brand-blue); color: #fff; }
.btn-orange { background: var(--accent-orange); color: #fff; }
.hero-logo-card { width:min(460px,90%); aspect-ratio:1/1; justify-self:center; background: rgba(255,255,255,.95); box-shadow: 0 35px 80px rgba(4,43,73,.24); display: grid; place-items: center; position: relative; padding: 18px; transform:rotate(-7deg); transition:transform .35s ease; }
.hero-logo-card:hover{transform:rotate(-3deg) translateY(-6px)}
.hero-logo-card img { width: 100%; height:100%; object-fit:cover; }
.hero-logo-card .corner-tag { position: absolute; right: 18px; top: 18px; background: var(--accent-orange); color: #fff; padding: 9px 12px; font-size: 10px; letter-spacing: .13em; }
.hero-logo-card .serial { position: absolute; left: 22px; bottom: 20px; color: var(--brand-blue); font-size: 10px; letter-spacing: .18em; }
.stats-strip { background: var(--navy); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { min-height: 145px; padding: 33px 28px; border-right: 1px solid rgba(255,255,255,.12); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: 30px; color: #fff; }
.stat span { display: block; margin-top: 8px; color: #85a9c1; font-size: 12px; letter-spacing: .08em; }
.section { padding: 108px 0; }
.section-light { background: var(--light); }
.section-blue { background: var(--brand-blue); color: #fff; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 46px; }
.section-head h2, .split-copy h2 { margin: 0; color: var(--navy); font-size: clamp(34px, 4vw, 52px); line-height: 1.18; letter-spacing: -.035em; }
.section-head > p { max-width: 410px; margin: 0; color: var(--muted); line-height: 1.8; }
.section-blue .section-head h2, .section-blue .section-head > p, .section-blue .kicker { color: #fff; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card { min-height: 375px; background: #fff; border: 1px solid var(--line); position: relative; overflow: hidden; padding: 34px; transition: transform .25s, box-shadow .25s; }
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.info-card .index { color: var(--brand-blue); font-size: 11px; letter-spacing: .18em; }
.info-card .visual-placeholder { height: 190px; margin: 27px -34px 25px; background: linear-gradient(135deg,#e8f6fe,#c8eafa); display: grid; place-items: center; color: var(--brand-blue); text-align: center; font-size: 12px; letter-spacing: .12em; position: relative; }
.visual-placeholder::after { content: "XIAOKABU"; position: absolute; right: 12px; bottom: 10px; color: rgba(21,157,232,.24); font-size: 24px; font-weight: 800; letter-spacing: .06em; }
.info-card h3 { margin: 0 0 12px; color: var(--navy); font-size: 23px; }
.info-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }
.text-link { display: inline-flex; gap: 12px; margin-top: 20px; color: var(--brand-blue); font-size: 13px; font-weight: 800; }
.text-link:hover { color: var(--accent-orange); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.split-copy p { color: var(--muted); line-height: 1.9; }
.media-placeholder { min-height: 460px; padding: 30px; display: grid; place-items: center; background: linear-gradient(145deg,#159de8,#096fae); color: #fff; position: relative; overflow: hidden; text-align: center; }
.media-placeholder::before { content: ""; position: absolute; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.06); }
.media-placeholder span { position: relative; z-index: 1; max-width: 290px; line-height: 1.8; font-size: 13px; }
.logo-cloud { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.logo-cloud div { min-height: 112px; background: #fff; display: grid; place-items: center; color: #9bb0bf; font-size: 12px; letter-spacing: .1em; }
.page-hero { min-height: 440px; background: linear-gradient(125deg,var(--navy),var(--brand-blue)); color: #fff; display: flex; align-items: end; position: relative; overflow: hidden; }
.page-hero::after { content: attr(data-word); position: absolute; right: -20px; bottom: -42px; color: rgba(255,255,255,.07); font-size: clamp(80px,15vw,220px); font-weight: 900; letter-spacing: -.06em; }
.page-hero .container { position: relative; z-index: 1; padding-block: 95px 70px; }
.page-hero h1 { margin: 12px 0 15px; font-size: clamp(44px,6vw,72px); line-height: 1.1; }
.page-hero p { max-width: 660px; margin: 0; color: rgba(255,255,255,.8); line-height: 1.8; }
.timeline { border-top: 1px solid var(--line); }
.timeline-item { display: grid; grid-template-columns: 150px 1fr; gap: 35px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.timeline-item strong { color: var(--brand-blue); font-size: 24px; }
.timeline-item h3 { margin: 0 0 8px; color: var(--navy); }
.timeline-item p { margin: 0; color: var(--muted); line-height: 1.7; }
.vi-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; min-height: 190px; }
.vi-grid div { padding: 24px; display: flex; justify-content: space-between; flex-direction: column; }
.vi-grid strong { font-size: 13px; }
.vi-grid span { font-size: 11px; letter-spacing: .12em; }
.vi-blue { background: var(--brand-blue); color: #fff; }.vi-orange { background: var(--accent-orange); color: #fff; }.vi-navy { background: var(--navy); color: #fff; }.vi-white { background: #fff; border: 1px solid var(--line); }
.certificate-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.certificate { aspect-ratio: 3/4; border: 1px solid var(--line); background: #fff; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; }
.certificate .paper { flex: 1; background: var(--light); display: grid; place-items: center; color: #9ab1c1; text-align: center; font-size: 12px; line-height: 1.7; }
.certificate h3 { font-size: 14px; margin: 15px 0 0; color: var(--navy); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 35px; }
.filter-btn { min-height: 42px; padding: 0 18px; border: 1px solid var(--line); background: #fff; color: var(--muted); cursor: pointer; }
.filter-btn:hover,.filter-btn.active { background: var(--brand-blue); border-color: var(--brand-blue); color: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.product-card { background: #fff; border: 1px solid var(--line); overflow: hidden; }
.product-image { aspect-ratio: 4/3; background: linear-gradient(145deg,#edf8fe,#cfeefe); display: grid; place-items: center; color: var(--brand-blue); position: relative; text-align: center; overflow:hidden; }
.product-image img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}.product-card:hover .product-image img{transform:scale(1.035)}
.product-image::after { content: "XIAOKABU"; position: absolute; inset: auto 18px 15px auto; opacity: .3; font-size: 19px; font-weight: 800; letter-spacing: .08em; }
.product-card-body { padding: 23px; }
.product-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 21px; }
.product-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.product-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.tag { display: inline-flex; background: var(--accent-orange); color: #fff; padding: 6px 9px; font-size: 10px; letter-spacing: .08em; }
.news-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 20px; }
.news-card { border: 1px solid var(--line); background: #fff; }
.news-card:first-child { grid-row: span 2; }
.news-image { min-height: 210px; display: grid; place-items: center; background: linear-gradient(135deg,#d7effc,#f2f9fd); color: var(--brand-blue); }
.news-image img{width:100%;height:100%;min-height:210px;object-fit:cover}.news-card:first-child .news-image img{min-height:390px}
.news-card:first-child .news-image { min-height: 390px; }
.news-body { padding: 25px; }
.news-date { color: var(--brand-blue); font-size: 11px; letter-spacing: .12em; }
.news-card h2,.news-card h3 { color: var(--navy); line-height: 1.45; }.news-card h2{font-size:28px}.news-card h3{font-size:18px}
.news-card p { color: var(--muted); line-height: 1.7; font-size: 14px; }
.cooperation-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.cooperation-card { min-height: 420px; padding: 35px; border: 1px solid var(--line); position: relative; }
.cooperation-card:nth-child(2) { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); }
.cooperation-card .number { color: var(--accent-orange); font-size: 11px; letter-spacing: .17em; }
.cooperation-card h2 { margin: 70px 0 18px; font-size: 28px; color: var(--navy); }
.cooperation-card:nth-child(2) h2,.cooperation-card:nth-child(2) p { color: #fff; }
.cooperation-card p { color: var(--muted); line-height: 1.8; }
.process-grid { display: grid; grid-template-columns: repeat(5,1fr); }
.process { padding: 27px; border-top: 2px solid var(--brand-blue); background: #fff; }
.process strong { color: var(--brand-blue); font-size: 12px; }.process h3{color:var(--navy);font-size:17px}.process p{color:var(--muted);font-size:13px;line-height:1.65}
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; }
.contact-list { border-top: 1px solid var(--line); }
.contact-row { padding: 24px 0; border-bottom: 1px solid var(--line); }
.contact-row span { display: block; margin-bottom: 8px; color: var(--brand-blue); font-size: 10px; letter-spacing: .15em; }
.contact-row strong,.contact-row a { color: var(--navy); font-size: 17px; }
.placeholder-value { color: var(--accent-orange) !important; }
.contact-form { padding: 40px; background: var(--light); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1/-1; }.field label{font-size:12px;color:var(--navy);font-weight:700}.field input,.field select,.field textarea{width:100%;border:1px solid var(--line);background:#fff;padding:13px 14px;outline:none}.field input:focus,.field textarea:focus,.field select:focus{border-color:var(--brand-blue)}.field textarea{min-height:130px;resize:vertical}
.form-note { margin: 15px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.form-status { display:none; margin-top:15px; padding:12px; background:#e0f5ff; color:var(--brand-blue-dark); font-size:13px; }
.map-placeholder { min-height: 380px; display: grid; place-items: center; text-align:center; padding: 30px; background: linear-gradient(135deg,#d8effd,#f7fbfe); color: var(--brand-blue); position:relative; overflow:hidden; }
.map-placeholder::before,.map-placeholder::after{content:"";position:absolute;width:120%;height:1px;background:rgba(21,157,232,.28);transform:rotate(18deg)}.map-placeholder::after{transform:rotate(-25deg)}.map-placeholder span{position:relative;z-index:1;max-width:350px;line-height:1.8}
.map-section{position:relative;min-height:440px;background:#d8effd}.map-section iframe{display:block;width:100%;height:440px;border:0}.map-caption{position:absolute;left:50%;bottom:24px;transform:translateX(-50%);width:min(760px,calc(100% - 30px));padding:18px 22px;background:rgba(255,255,255,.94);box-shadow:var(--shadow);display:flex;align-items:center;justify-content:space-between;gap:18px;color:var(--navy)}.map-caption a{color:var(--brand-blue);font-size:13px;font-weight:800}
.cta-band { background: var(--brand-blue); color: #fff; }
.cta-inner { min-height: 310px; display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.cta-inner h2 { max-width: 730px; margin: 0; font-size: clamp(35px,4.5vw,58px); line-height: 1.2; }
.site-footer { background: #052843; color: #fff; padding-top: 66px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 75px; padding-bottom: 55px; }
.footer-logo { width: 125px; padding: 5px; background: #fff; }
.footer-brand p { max-width: 420px; color: #86a8be; line-height: 1.8; font-size: 13px; }
.footer-title { margin: 0 0 18px; color: #fff; font-size: 13px; }.footer-links{display:flex;flex-direction:column;gap:11px}.footer-links a,.footer-links span{color:#86a8be;font-size:12px}.footer-links a:hover{color:var(--accent-orange)}
.footer-bottom { min-height: 70px; border-top: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #678aa2; font-size: 10px; letter-spacing: .06em; }
.admin-hint { padding: 13px 16px; border-left: 3px solid var(--accent-orange); background: #fff8ef; color: #8a6033; font-size: 12px; line-height: 1.7; }
.archive-stats{display:grid;grid-template-columns:repeat(3,1fr);margin:0 0 38px;background:linear-gradient(120deg,var(--navy),var(--brand-blue));color:#fff}.archive-stats div{min-height:125px;padding:28px;border-right:1px solid rgba(255,255,255,.18);display:flex;flex-direction:column;justify-content:center}.archive-stats div:last-child{border-right:0}.archive-stats strong{font-size:36px;line-height:1}.archive-stats span{margin-top:11px;color:#bde8ff;font-size:11px;letter-spacing:.1em}
.archive-grid{margin-top:10px}.catalog-download{margin-top:70px;padding:48px;background:linear-gradient(135deg,#e6f6ff,#fff);display:grid;grid-template-columns:.72fr 1.28fr;gap:45px;align-items:center;border:1px solid var(--line)}.catalog-download h2{margin:0 0 15px;color:var(--navy);font-size:36px}.catalog-download p{color:var(--muted);line-height:1.8}.catalog-preview{display:grid;grid-template-columns:1fr 1fr;gap:14px}.catalog-preview img{width:100%;aspect-ratio:4/3;object-fit:contain;background:#fff;border:1px solid var(--line)}
.archive-news-grid{margin-top:10px}.document-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.document-card{background:#fff;border:1px solid var(--line);overflow:hidden}.document-image{height:340px;background:#eef7fc;overflow:auto}.document-image img{width:100%;min-height:100%;object-fit:cover;object-position:top}.document-image-tall img{height:auto;min-height:900px;object-fit:cover;object-position:top}.document-card>div:last-child{padding:25px}.document-card span{color:var(--brand-blue);font-size:10px;letter-spacing:.12em}.document-card h3{margin:10px 0;color:var(--navy);font-size:22px}.document-card p{margin:0;color:var(--muted);font-size:13px;line-height:1.75}.factory-record{margin-top:24px;display:grid;grid-template-columns:1.3fr .7fr;background:var(--brand-blue);color:#fff}.factory-record img{width:100%;height:100%;min-height:380px;object-fit:cover}.factory-record>div{padding:42px;display:flex;flex-direction:column;justify-content:center}.factory-record h2{margin:0 0 16px;font-size:34px}.factory-record p{line-height:1.8;color:rgba(255,255,255,.82)}
.company-media{position:relative;min-height:460px;overflow:hidden;background:var(--brand-blue)}.company-media>img{width:100%;height:100%;min-height:460px;object-fit:cover}.source-badge{position:absolute;left:18px;bottom:18px;padding:10px 13px;background:var(--accent-orange);color:#fff;font-size:10px;letter-spacing:.1em}
body[data-page="about"] .media-placeholder{background-image:linear-gradient(rgba(4,63,106,.18),rgba(4,63,106,.18)),url("images/company-process-2.jpg");background-size:cover;background-position:center}body[data-page="about"] .media-placeholder::before{display:none}body[data-page="about"] .media-placeholder span{padding:10px 13px;background:rgba(5,40,67,.82)}
body[data-page="about"] .info-card:nth-child(1) .visual-placeholder{background-image:linear-gradient(rgba(5,40,67,.2),rgba(5,40,67,.2)),url("images/company-process-2.jpg")}body[data-page="about"] .info-card:nth-child(2) .visual-placeholder{background-image:linear-gradient(rgba(5,40,67,.2),rgba(5,40,67,.2)),url("images/company-process-1.jpg")}body[data-page="about"] .info-card:nth-child(3) .visual-placeholder{background-image:linear-gradient(rgba(5,40,67,.2),rgba(5,40,67,.2)),url("images/company-quality.jpg")}body[data-page="about"] .visual-placeholder{background-size:cover;background-position:center;color:#fff;font-weight:800;text-shadow:0 1px 8px rgba(0,0,0,.65)}body[data-page="about"] .visual-placeholder::after{display:none}
[dir="rtl"] body{font-family:Arial,"Noto Sans Arabic",sans-serif}[dir="rtl"] .kicker::before{order:2}[dir="rtl"] .page-hero::after{right:auto;left:-20px}[dir="rtl"] .product-image::after{right:auto;left:18px}[dir="rtl"] .main-nav{direction:rtl}
body[data-page="home"] main>.section{color:#fff;background:#0b78cf}
body[data-page="home"] main>.section:nth-of-type(4){background:linear-gradient(135deg,#0e8ee2,#22b7ef)}
body[data-page="home"] main>.section:nth-of-type(5){background:#0755a7}
body[data-page="home"] main>.section:nth-of-type(6){background:#e9f6fe;color:var(--ink)}
body[data-page="home"] main>.section:not(:nth-of-type(6)) .section-head h2,body[data-page="home"] main>.section:not(:nth-of-type(6)) .section-head>p,body[data-page="home"] main>.section:not(:nth-of-type(6)) .split-copy h2,body[data-page="home"] main>.section:not(:nth-of-type(6)) .split-copy p,body[data-page="home"] main>.section:not(:nth-of-type(6)) .kicker{color:#fff}
body[data-page="home"] main>.section:not(:nth-of-type(6)) .text-link{color:#fff}
body[data-page="home"] main>.section .info-card{box-shadow:0 20px 55px rgba(3,50,89,.16);border:0}
@media (max-width: 1000px) { .main-nav{position:fixed;inset:94px 0 auto;background:#fff;display:none;flex-direction:column;align-items:stretch;gap:0;padding:15px 24px 28px;box-shadow:var(--shadow)}.menu-open .main-nav{display:flex}.main-nav a{padding:15px;border-bottom:1px solid var(--line)}.main-nav a::after{display:none}.menu-toggle{display:block}.hero-grid,.split,.contact-grid{grid-template-columns:1fr}.hero-logo-card{min-height:400px}.stats-grid,.card-grid,.product-grid,.cooperation-grid{grid-template-columns:repeat(2,1fr)}.news-grid{grid-template-columns:1fr 1fr}.news-card:first-child{grid-row:auto;grid-column:1/-1}.certificate-grid{grid-template-columns:repeat(2,1fr)}.process-grid{grid-template-columns:repeat(2,1fr)}.logo-cloud{grid-template-columns:repeat(3,1fr)}}
@media (max-width: 640px) { .container{width:min(100% - 30px,1180px)}.header-inner{min-height:82px}.brand-logo,.brand-logo img{width:88px;height:72px}.main-nav{inset:82px 0 auto}.lang-switch{min-width:65px}.hero{min-height:auto}.hero-grid{padding-block:62px;gap:40px}.hero-logo-card{min-height:320px}.stats-grid,.card-grid,.product-grid,.news-grid,.cooperation-grid,.certificate-grid,.process-grid{grid-template-columns:1fr}.stat{border-right:0;border-bottom:1px solid rgba(255,255,255,.12)}.section{padding:75px 0}.section-head{display:block}.section-head>p{margin-top:18px}.news-card:first-child{grid-column:auto}.footer-grid{grid-template-columns:1fr;gap:35px}.footer-bottom,.cta-inner{align-items:flex-start;flex-direction:column;justify-content:center}.form-grid{grid-template-columns:1fr}.field.full{grid-column:auto}.contact-form{padding:25px}.vi-grid{grid-template-columns:1fr 1fr}.timeline-item{grid-template-columns:1fr;gap:8px}.logo-cloud{grid-template-columns:1fr 1fr}.page-hero{min-height:370px}}
@media (max-width:1000px){.catalog-download,.factory-record{grid-template-columns:1fr}.document-grid{grid-template-columns:1fr 1fr}.archive-stats{grid-template-columns:repeat(3,1fr)}}
@media (max-width:640px){.archive-stats,.document-grid,.catalog-preview{grid-template-columns:1fr}.archive-stats div{border-right:0;border-bottom:1px solid rgba(255,255,255,.18)}.catalog-download{padding:28px}.factory-record>div{padding:28px}.document-image{height:300px}}
@media (prefers-reduced-motion: reduce) { html{scroll-behavior:auto}*{transition:none!important} }
