:root {
  --ink: #16282e;
  --ink-soft: #52656b;
  --paper: #ffffff;
  --mist: #f3f7f6;
  --line: #d9e4e2;
  --teal: #0b6273;
  --teal-dark: #084553;
  --aqua: #51b8b0;
  --coral: #e66c48;
  --coral-dark: #c94e2f;
  --lime: #c8de61;
  --navy: #102e38;
  --max: 1180px;
  --shadow: 0 18px 48px rgba(20, 54, 62, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif; font-size: 16px; line-height: 1.7; letter-spacing: 0; }
body.nav-lock { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.18; letter-spacing: 0; }
h1 { font-size: clamp(2.5rem, 5vw, 5rem); }
h2 { font-size: clamp(1.85rem, 3vw, 3rem); margin-bottom: 20px; }
h3 { font-size: 1.25rem; }
p { color: var(--ink-soft); }
svg { width: 20px; height: 20px; flex: none; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 104px 0; }
.section--compact { padding: 72px 0 112px; }
.section--muted { background: var(--mist); }
.eyebrow { margin-bottom: 14px; color: var(--teal); font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow--light { color: #a9ddd7; }
.section-lead { margin: 0; max-width: 620px; font-size: 1.08rem; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.section-heading h2 { margin: 0; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font-weight: 700; white-space: nowrap; }
.text-link:hover { color: var(--coral-dark); }

.site-header { position: relative; z-index: 100; height: 78px; border-bottom: 1px solid rgba(217,228,226,.85); background: rgba(255,255,255,.95); backdrop-filter: blur(14px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; min-width: 178px; align-items: center; }
.brand-logo { width: auto; height: 52px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a { position: relative; color: #43585f; font-size: .92rem; font-weight: 650; white-space: nowrap; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; right: 50%; bottom: -27px; left: 50%; height: 3px; background: var(--coral); transition: .2s ease; }
.main-nav > a:hover, .main-nav > a.active { color: var(--teal-dark); }
.main-nav > a.active::after, .main-nav > a:hover::after { right: 0; left: 0; }
.main-nav .nav-cta { display: inline-flex; height: 42px; padding: 0 18px; align-items: center; gap: 8px; border-radius: 4px; color: #fff; background: var(--teal); }
.main-nav .nav-cta:hover { background: var(--teal-dark); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 4px; align-items: center; justify-content: center; background: var(--mist); cursor: pointer; }

.hero { position: relative; height: clamp(580px, 78svh, 700px); overflow: hidden; color: #fff; background: var(--navy); }
.hero__media { position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(7,30,38,.94) 0%, rgba(8,42,51,.83) 42%, rgba(8,30,38,.2) 76%), url("images/hero-lab.jpg"); background-position: center; background-size: cover; transform: scale(1.01); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 5px; background: linear-gradient(90deg, var(--coral) 0 34%, var(--aqua) 34% 70%, var(--lime) 70%); }
.hero__content { position: relative; height: 100%; padding-top: 86px; }
.hero h1 { max-width: 740px; margin-bottom: 24px; font-size: clamp(3rem, 6.5vw, 6.3rem); }
.hero h1 span { display: block; color: #b9e7e1; font-size: .54em; font-weight: 500; }
.hero__lead { max-width: 660px; margin-bottom: 34px; color: rgba(255,255,255,.8); font-size: clamp(1.05rem, 1.7vw, 1.32rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__highlights { display: flex; flex-wrap: wrap; margin-top: 34px; color: rgba(255,255,255,.76); font-size: .84rem; }
.hero__highlights span { padding: 0 18px; border-left: 1px solid rgba(185,231,225,.45); }
.hero__highlights span:first-child { padding-left: 0; border-left: 0; }

.button { display: inline-flex; min-height: 48px; padding: 0 22px; border: 1px solid transparent; border-radius: 4px; align-items: center; justify-content: center; gap: 9px; font-weight: 750; line-height: 1; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: var(--teal); }
.button--primary:hover { background: var(--teal-dark); }
.button--accent { color: #fff; background: var(--coral); }
.button--accent:hover { background: var(--coral-dark); }
.button--ghost { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); }
.button--ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.button--line { min-height: 42px; padding: 0; justify-content: flex-start; color: var(--teal); }
.button--wide { width: 100%; }

.section--intro { padding: 62px 0; border-bottom: 1px solid var(--line); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-grid h2 { margin-bottom: 0; max-width: 520px; }
.service-grid, .catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 312px; padding: 28px; border: 1px solid var(--line); border-radius: 6px; display: flex; flex-direction: column; background: #fff; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { border-color: #a7c8c6; box-shadow: var(--shadow); transform: translateY(-5px); }
.card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 38px; }
.card-top small, .product-card > small { color: var(--teal); font-weight: 750; }
.icon-box, .product-card__icon, .detail-icon, .panel-icon { display: inline-flex; width: 46px; height: 46px; border-radius: 5px; align-items: center; justify-content: center; color: var(--teal); background: #e4f1ef; }
.icon-box svg { width: 23px; height: 23px; }
.service-card h3 { margin-bottom: 14px; }
.service-card p { flex: 1; margin-bottom: 24px; font-size: .94rem; }
.service-card a { display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font-weight: 750; }
.service-card a svg { width: 17px; }

.solution-band { background: #fff; }
.solution-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 76px; align-items: center; }
.solution-image { position: relative; min-height: 610px; }
.solution-image img { height: 610px; object-fit: cover; }
.image-label { position: absolute; right: 0; bottom: 0; padding: 16px 20px; color: #fff; background: var(--teal); font-weight: 700; }
.solution-copy > p:not(.eyebrow) { font-size: 1.04rem; }
.process-list { margin: 34px 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); }
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--coral); font-weight: 850; }
.process-list strong { display: block; margin-bottom: 4px; }
.process-list p { margin: 0; font-size: .9rem; }

.product-strip { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.product-tile { min-height: 190px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 54px 1fr 22px; gap: 20px; align-items: start; transition: background .18s ease; }
.product-tile:nth-child(2n) { border-right: 0; }
.product-tile:hover { background: var(--mist); }
.product-tile > span { display: grid; width: 50px; height: 50px; border-radius: 50%; place-items: center; color: var(--coral); background: #fbeae5; }
.product-tile small { color: var(--teal); font-weight: 700; }
.product-tile h3 { margin: 5px 0 10px; }
.product-tile p { margin: 0; font-size: .9rem; }
.product-tile > svg { color: var(--teal); }

.proof-band { color: #fff; background: var(--navy); }
.proof-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.proof-grid h2, .proof-band h2 { margin: 0; color: #fff; }
.proof-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.proof-items div { min-height: 168px; padding: 24px 0; border-top: 3px solid var(--aqua); }
.proof-items div:nth-child(2) { border-color: var(--coral); }
.proof-items div:nth-child(3) { border-color: var(--lime); }
.proof-items svg { margin-bottom: 28px; color: #fff; }
.proof-items strong, .proof-items span { display: block; }
.proof-items span { margin-top: 8px; color: #abc0c4; font-size: .86rem; }
.contact-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.contact-cta__inner h2 { margin-bottom: 0; }
.contact-cta__inner p:not(.eyebrow) { max-width: 700px; margin-bottom: 0; }

.page-hero { position: relative; min-height: 330px; padding: 74px 0 64px; overflow: hidden; color: #fff; background: var(--navy); }
.page-hero::after { content: ""; position: absolute; inset: 0; opacity: .24; background-position: center; background-size: cover; }
.page-hero--services::after { background-image: linear-gradient(90deg, transparent, #061d24), url("images/services-hero-v2.webp"); }
.page-hero--products::after { background-image: linear-gradient(90deg, transparent, #061d24), url("images/products-hero-v2.webp"); }
.page-hero--solutions::after { background-image: linear-gradient(90deg, transparent, #061d24), url("images/solutions-hero-v2.webp"); }
.page-hero--about::after { background-image: linear-gradient(90deg, transparent, #061d24), url("images/about-hero-v2.webp"); }
.page-hero--contact::after { background-image: linear-gradient(90deg, transparent, #061d24), url("images/contact-hero-v2.webp"); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 15px; font-size: clamp(2.8rem, 5vw, 4.6rem); }
.page-hero p:not(.eyebrow) { max-width: 640px; margin: 0; color: #c6d4d6; font-size: 1.08rem; }

.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 44px; }
.search-box { position: relative; width: min(100%, 380px); }
.search-box svg { position: absolute; top: 15px; left: 15px; color: #708388; }
.search-box input { width: 100%; height: 50px; padding: 0 16px 0 46px; border: 1px solid var(--line); border-radius: 4px; color: var(--ink); background: #fff; outline: none; }
.search-box input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(11,98,115,.1); }
.filter-tabs { display: flex; max-width: 100%; gap: 6px; overflow-x: auto; scrollbar-width: thin; }
.filter-tabs button { min-height: 40px; padding: 0 15px; border: 1px solid transparent; border-radius: 4px; background: transparent; white-space: nowrap; cursor: pointer; }
.filter-tabs button:hover { background: var(--mist); }
.filter-tabs button.active { color: #fff; background: var(--teal); }
.empty-state { padding: 90px 20px; text-align: center; }
.empty-state svg { width: 40px; height: 40px; color: var(--teal); }
.empty-state h2 { margin: 18px 0 8px; font-size: 1.5rem; }

.product-catalog { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { min-height: 350px; padding: 28px; border: 1px solid var(--line); border-radius: 6px; display: flex; flex-direction: column; }
.product-card__icon { margin-bottom: 32px; color: var(--coral); background: #fbeae5; }
.product-card h2 { margin: 8px 0 12px; font-size: 1.35rem; }
.product-card p { margin-bottom: 20px; font-size: .91rem; }
.mini-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.mini-tags span, .tag-list span { padding: 4px 9px; border-radius: 3px; color: #52656b; background: var(--mist); font-size: .72rem; }
.product-card .button { margin-top: auto; }

.detail-hero { padding: 52px 0 70px; background: var(--mist); border-bottom: 1px solid var(--line); }
.detail-hero--product { background: #f9f5f2; }
.breadcrumb { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 48px; color: var(--teal); font-weight: 700; font-size: .9rem; }
.detail-heading { display: grid; grid-template-columns: 80px 1fr; gap: 28px; align-items: start; }
.detail-icon { width: 76px; height: 76px; color: var(--teal); background: #dfeeed; }
.detail-icon svg { width: 34px; height: 34px; }
.detail-heading h1 { margin-bottom: 18px; font-size: clamp(2.4rem, 4vw, 4rem); }
.detail-heading p:not(.eyebrow) { max-width: 760px; margin: 0; font-size: 1.08rem; }
.detail-layout, .product-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 74px; align-items: start; }
.detail-main > section { margin-bottom: 76px; }
.detail-main h2, .product-detail-layout h2 { font-size: 2rem; }
.application-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.application-grid > div { min-height: 58px; padding: 15px; border: 1px solid var(--line); border-radius: 4px; display: flex; align-items: center; gap: 10px; }
.application-grid svg { color: var(--aqua); }
.feature-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-list li { display: grid; grid-template-columns: 64px 1fr; padding: 20px 0; border-bottom: 1px solid var(--line); }
.feature-list span { color: var(--coral); font-weight: 850; }
.feature-list p { margin: 0; color: var(--ink); }
.workflow { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.workflow li { position: relative; min-height: 150px; padding: 0 22px 0 0; }
.workflow li::after { content: ""; position: absolute; top: 18px; right: 10px; left: 43px; height: 1px; background: var(--line); }
.workflow li:last-child::after { display: none; }
.workflow span { position: relative; z-index: 1; display: grid; width: 36px; height: 36px; border-radius: 50%; place-items: center; color: #fff; background: var(--teal); font-weight: 800; }
.workflow p { margin-top: 18px; color: var(--ink); font-size: .9rem; }
.inquiry-panel { position: sticky; top: 28px; padding: 30px; border-radius: 6px; color: #fff; background: var(--navy); box-shadow: var(--shadow); }
.inquiry-panel .panel-icon { margin-bottom: 28px; color: var(--navy); background: var(--lime); }
.inquiry-panel h2 { margin-bottom: 14px; font-size: 1.55rem; }
.inquiry-panel p { color: #bfd0d3; font-size: .92rem; }
.inquiry-panel small { display: block; margin-top: 15px; color: #91aeb3; font-size: .75rem; }
.info-box { display: flex; gap: 14px; margin-top: 34px; padding: 20px; border-left: 3px solid var(--coral); background: #fff6f3; }
.info-box svg { color: var(--coral); }
.info-box p { margin: 5px 0 0; }

.solution-index { border-top: 1px solid var(--line); }
.solution-row { display: grid; grid-template-columns: 90px 1fr 54px; gap: 36px; padding: 48px 0; border-bottom: 1px solid var(--line); align-items: center; }
.solution-row__number { color: var(--coral); font-size: 1.2rem; font-weight: 850; }
.solution-row h2 { margin-bottom: 12px; font-size: clamp(1.6rem, 2.6vw, 2.45rem); }
.solution-row p:not(.eyebrow) { max-width: 760px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; }
.icon-link { display: grid; width: 50px; height: 50px; border: 1px solid var(--line); border-radius: 50%; place-items: center; color: var(--teal); }
.icon-link:hover { color: #fff; border-color: var(--teal); background: var(--teal); }
.section--image-break { padding: 0; color: #fff; background: var(--navy); }
.image-break { width: 100%; max-width: none; display: grid; grid-template-columns: 1fr 1fr; }
.image-break img { height: 520px; object-fit: cover; }
.image-break > div { display: flex; padding: clamp(42px, 7vw, 96px); flex-direction: column; align-items: flex-start; justify-content: center; }
.image-break h2 { color: #fff; }
.image-break p:not(.eyebrow) { color: #b8cccf; }

.about-profile { overflow: hidden; }
.about-profile__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.about-profile__heading h2 { max-width: 480px; margin-bottom: 36px; }
.about-profile__copy { padding-top: 28px; border-top: 1px solid var(--line); }
.about-profile__copy p { color: var(--ink); font-size: 1.08rem; line-height: 1.95; }
.about-profile__copy p + p { margin-top: 20px; }
.about-strategy { padding: 20px 0 20px 22px; border-left: 3px solid var(--coral); }
.about-strategy span, .about-strategy strong { display: block; }
.about-strategy span { margin-bottom: 5px; color: var(--ink-soft); font-size: .75rem; font-weight: 750; }
.about-strategy strong { color: var(--teal-dark); font-size: 1.08rem; }
.about-audience { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.about-audience span { padding: 7px 12px; border-radius: 3px; color: var(--teal-dark); background: #e7f1ef; font-size: .82rem; font-weight: 700; }
.about-platforms { position: relative; isolation: isolate; overflow: hidden; }
.about-platforms::before { content: ""; position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(238,245,244,.88), rgba(238,245,244,.94)), url("images/about-approach-v2.webp"); background-position: center; background-size: cover; }
.about-platform-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(160,184,184,.72); border-bottom: 1px solid rgba(160,184,184,.72); }
.about-platform-grid article { position: relative; min-height: 280px; padding: 34px 28px; border-right: 1px solid rgba(160,184,184,.72); }
.about-platform-grid article:last-child { border-right: 0; }
.about-platform-grid article > svg { width: 32px; height: 32px; margin-bottom: 48px; color: var(--coral); }
.about-platform-grid article > span { position: absolute; top: 34px; right: 28px; color: #92aaa9; font-size: .76rem; font-weight: 800; }
.about-platform-grid h3 { margin-bottom: 12px; }
.about-platform-grid p { margin: 0; font-size: .9rem; }
.about-culture { color: #fff; background: var(--navy); }
.about-culture__heading { display: grid; grid-template-columns: .6fr 1.4fr; gap: 56px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.14); align-items: end; }
.about-culture__heading h2 { max-width: 730px; margin: 0; color: #fff; }
.culture-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.culture-grid article { min-height: 350px; padding: 42px 34px 12px 0; border-right: 1px solid rgba(255,255,255,.14); }
.culture-grid article + article { padding-left: 34px; }
.culture-grid article:last-child { padding-right: 0; border-right: 0; }
.culture-grid svg { width: 30px; height: 30px; margin-bottom: 42px; color: var(--aqua); }
.culture-grid article:nth-child(2) svg { color: var(--coral); }
.culture-grid article:nth-child(3) svg { color: var(--lime); }
.culture-grid__label { margin-bottom: 10px; color: #8fb2b7; font-size: .76rem; font-weight: 800; }
.culture-grid h3 { margin-bottom: 18px; color: #fff; font-size: 1.45rem; }
.culture-grid article > p:last-child { color: #aec3c6; }
.culture-values { display: flex; flex-wrap: wrap; gap: 8px; }
.culture-values span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.17); border-radius: 3px; color: #c3d4d6; font-size: .8rem; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.value-grid article { position: relative; min-height: 300px; padding: 36px; border-right: 1px solid var(--line); }
.value-grid article:last-child { border-right: 0; }
.value-grid article > span { position: absolute; top: 28px; right: 30px; color: #b9c7c7; font-weight: 800; }
.value-grid svg { width: 34px; height: 34px; margin-bottom: 48px; color: var(--coral); }
.value-grid h3 { font-size: 1.45rem; }
.media-story { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.media-story img { height: 520px; object-fit: cover; }
.check-list { margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 14px; padding: 17px 0; border-top: 1px solid var(--line); }
.check-list li:last-child { border-bottom: 1px solid var(--line); }
.check-list svg { margin-top: 3px; color: var(--teal); }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 86px; align-items: start; }
.contact-aside { position: sticky; top: 28px; }
.contact-points { margin: 38px 0; padding: 0; list-style: none; }
.contact-points li { display: grid; grid-template-columns: 44px 1fr; gap: 15px; padding: 18px 0; border-top: 1px solid var(--line); }
.contact-points li:last-child { border-bottom: 1px solid var(--line); }
.contact-points svg { color: var(--teal); }
.contact-points strong, .contact-points span { display: block; }
.contact-points span { margin-top: 3px; color: var(--ink-soft); font-size: .88rem; }
.contact-note { display: flex; gap: 14px; padding: 22px; color: #fff; background: var(--navy); }
.contact-note > svg { color: var(--lime); }
.contact-note span, .contact-note a, .contact-note small { display: block; }
.contact-note span { color: #a8c0c4; font-size: .75rem; }
.contact-note a { margin: 4px 0; font-weight: 700; }
.contact-note small { color: #819fa4; }
.contact-phones { display: grid; gap: 8px; margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(168,192,196,.25); }
.contact-phones a { margin: 0; color: #fff; font-size: .86rem; font-weight: 700; }
.contact-phones span { display: inline-block; min-width: 54px; margin-right: 8px; color: #a8c0c4; font-size: .75rem; font-weight: 500; }
.inquiry-form { padding: 42px; border: 1px solid var(--line); border-radius: 6px; box-shadow: 0 16px 45px rgba(20,54,62,.07); }
.form-heading { margin-bottom: 30px; }
.form-heading h2 { margin-bottom: 8px; font-size: 2rem; }
.form-heading p { margin: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.inquiry-form label { display: block; margin-bottom: 19px; color: var(--ink); font-size: .88rem; font-weight: 700; }
.inquiry-form label > span { margin-left: 3px; color: var(--coral); }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; margin-top: 8px; padding: 12px 14px; border: 1px solid #cbd9d7; border-radius: 4px; color: var(--ink); background: #fff; outline: none; resize: vertical; }
.inquiry-form input, .inquiry-form select { height: 49px; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(11,98,115,.1); }
.inquiry-form .consent { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; }
.inquiry-form .consent input { width: 17px; height: 17px; margin: 4px 0 0; }
.inquiry-form .consent span { margin: 0; color: var(--ink-soft); }
.form-status { min-height: 26px; margin: 14px 0 0; color: var(--teal); font-size: .86rem; text-align: center; }

.site-footer { padding: 68px 0 0; color: #fff; background: #0b252d; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1.5fr 1.1fr; gap: 32px 50px; padding-bottom: 42px; align-items: start; }
.brand--footer { width: max-content; }
.brand--footer .brand-logo { height: 48px; }
.footer-brand p { max-width: 270px; margin-top: 22px; color: #9bb3b7; }
.footer-qr { display: flex; gap: 16px; margin-top: 26px; }
.footer-qr figure { margin: 0; }
.footer-qr img { width: 112px; height: 112px; padding: 7px; border-radius: 3px; object-fit: contain; background: #fff; }
.footer-qr figcaption { margin-top: 7px; color: #8fa9ad; font-size: .75rem; text-align: center; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 32px; }
.footer-mid-note { grid-column: 1 / -1; margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(168,192,196,.25); }
.footer-mid-note p { margin: 0; color: #9bb3b7; font-size: .78rem; }
.footer-mid-note .footer-mid-note__title { margin-bottom: 5px; color: #d3e2e1; font-size: .8rem; font-weight: 750; }
.footer-mid-note > div { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 13px; }
.footer-mid-note > div span { margin: 0 !important; color: #6f9096 !important; font-size: .72rem !important; }
.footer-grid h2 { margin-bottom: 18px; color: #fff; font-size: .8rem; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) a, .footer-grid > div:not(.footer-brand) span, .footer-grid > div:not(.footer-brand) small { display: block; margin: 10px 0; color: #a7bdc0; font-size: .86rem; }
.footer-contact > a { display: flex !important; align-items: baseline; gap: 7px; white-space: nowrap; }
.footer-grid .footer-contact > a span { display: inline !important; min-width: 0; margin: 0 !important; color: #6f9096 !important; font-size: .75rem; }
.footer-grid .footer-contact > a .footer-phone-number { color: #a7bdc0 !important; }
.footer-address { display: flex; gap: 10px; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(168,192,196,.25); }
.footer-address > svg { width: 17px; height: 17px; margin-top: 3px; color: var(--aqua); }
.footer-address span { margin: 0 0 4px !important; color: #a8c0c4 !important; font-size: .75rem !important; }
.footer-address p { margin: 0; color: #a7bdc0; font-size: .78rem; line-height: 1.65; }
.footer-social { padding: 22px 0 26px; border-top: 1px solid #24434b; }
.footer-social__heading { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-bottom: 12px; }
.footer-social__heading span, .footer-social__heading small { margin: 0 !important; }
.footer-social__heading span { color: #d3e2e1; font-size: .84rem; font-weight: 750; }
.footer-social__heading small { color: #6f9096; font-size: .73rem; }
.footer-social__grid { display: grid; grid-template-columns: repeat(8, 70px); gap: 9px 14px; justify-content: center; }
.footer-social figure { margin: 0; text-align: center; }
.footer-social img { width: 62px; height: 62px; margin: 0 auto; padding: 3px; border-radius: 3px; object-fit: contain; background: #fff; }
.footer-social figcaption { margin-top: 4px; color: #8fa9ad; font-size: .61rem; line-height: 1.2; white-space: nowrap; }
.footer-grid a:hover { color: #fff !important; }
.footer-grid > div small { color: #66868c !important; }
.footer-bottom { display: flex; padding: 20px 0; border-top: 1px solid #24434b; justify-content: space-between; color: #6f9096; font-size: .76rem; }
.error-page { min-height: 65vh; display: grid; padding: 80px 20px; place-items: center; text-align: center; }
.error-page span { color: var(--coral); font-size: 5rem; font-weight: 900; }
.error-page h1 { margin-bottom: 12px; font-size: 2.2rem; }

@media (max-width: 1040px) {
  .main-nav { gap: 16px; }
  .main-nav > a { font-size: .84rem; }
  .main-nav .nav-cta { display: none; }
  .service-grid, .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .product-catalog { grid-template-columns: repeat(3, 1fr); }
  .solution-layout, .media-story { gap: 46px; }
  .proof-grid { grid-template-columns: 1fr; gap: 38px; }
  .detail-layout, .product-detail-layout { gap: 42px; }
  .about-profile__grid { gap: 58px; }
  .about-platform-grid { grid-template-columns: repeat(2, 1fr); }
  .about-platform-grid article:nth-child(2) { border-right: 0; }
  .about-platform-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(160,184,184,.72); }
  .footer-grid { grid-template-columns: 1.3fr 1.5fr 1.1fr; column-gap: 26px; }
}

@media (max-width: 780px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .section--compact { padding: 52px 0 78px; }
  .site-header { height: 68px; }
  .brand-logo { height: 45px; }
  .menu-toggle { display: inline-flex; }
  .main-nav { position: fixed; inset: 68px 0 auto; max-height: calc(100svh - 68px); padding: 24px 20px 34px; border-top: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; overflow-y: auto; background: #fff; box-shadow: 0 20px 45px rgba(8,44,53,.18); transform: translateY(-120%); opacity: 0; pointer-events: none; transition: .24s ease; }
  .site-header.nav-open .main-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav > a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .main-nav > a::after { display: none; }
  .main-nav .nav-cta { display: inline-flex; margin-top: 20px; justify-content: center; }
  .hero { height: clamp(610px, 76svh, 680px); }
  .hero__media { background-image: linear-gradient(90deg, rgba(7,30,38,.94), rgba(8,42,51,.7)), url("images/hero-lab.jpg"); background-position: 56% center; }
  .hero__content { padding-top: 58px; }
  .hero h1 { font-size: clamp(3rem, 13vw, 5rem); }
  .hero__highlights { margin-top: 28px; line-height: 1.8; }
  .hero__highlights span { padding: 0 12px; }
  .intro-grid, .solution-layout, .about-profile__grid, .media-story, .contact-layout, .image-break { grid-template-columns: 1fr; gap: 42px; }
  .section-heading, .contact-cta__inner { align-items: flex-start; flex-direction: column; }
  .solution-image, .solution-image img { min-height: 0; height: 440px; }
  .product-strip { grid-template-columns: 1fr; }
  .product-tile, .product-tile:nth-child(2n) { border-right: 0; }
  .proof-items { grid-template-columns: 1fr; }
  .proof-items div { min-height: 130px; }
  .page-hero { min-height: 280px; padding: 58px 0 50px; }
  .toolbar { align-items: stretch; flex-direction: column; }
  .search-box { width: 100%; }
  .filter-tabs { padding-bottom: 6px; }
  .product-catalog { grid-template-columns: repeat(2, 1fr); }
  .detail-heading { grid-template-columns: 60px 1fr; gap: 18px; }
  .detail-icon { width: 58px; height: 58px; }
  .detail-layout, .product-detail-layout { grid-template-columns: 1fr; }
  .inquiry-panel, .contact-aside { position: static; }
  .workflow { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .solution-row { grid-template-columns: 52px 1fr 42px; gap: 16px; }
  .image-break img { height: 360px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line); }
  .about-profile__copy { padding-top: 24px; }
  .about-culture__heading { grid-template-columns: 1fr; gap: 16px; }
  .culture-grid { grid-template-columns: 1fr; }
  .culture-grid article, .culture-grid article + article { min-height: 0; padding: 38px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .culture-grid article:last-child { border-bottom: 0; }
  .culture-grid svg { margin-bottom: 28px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  body { font-size: 15px; }
  h2 { font-size: 1.9rem; }
  .section { padding: 58px 0; }
  .hero { height: 660px; }
  .hero__content { padding-top: 48px; }
  .hero h1 { margin-bottom: 18px; font-size: 3.15rem; }
  .hero__lead { margin-bottom: 26px; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .service-grid, .catalog-grid, .product-catalog { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; }
  .product-tile { grid-template-columns: 48px 1fr 18px; padding: 24px 0; }
  .product-tile > span { width: 44px; height: 44px; }
  .solution-image, .solution-image img { height: 340px; }
  .proof-items { gap: 8px; }
  .proof-items div { min-height: 118px; padding: 20px 0; }
  .page-hero { min-height: 250px; }
  .page-hero h1 { font-size: 2.75rem; }
  .application-grid, .field-row { grid-template-columns: 1fr; }
  .workflow { grid-template-columns: 1fr; }
  .workflow li { min-height: 105px; padding-left: 48px; }
  .workflow li span { position: absolute; left: 0; }
  .workflow li::after { top: 38px; right: auto; bottom: -4px; left: 17px; width: 1px; height: auto; }
  .workflow p { margin-top: 0; }
  .solution-row { grid-template-columns: 1fr 42px; }
  .solution-row__number { grid-column: 1 / -1; }
  .image-break img { height: 290px; }
  .media-story img { height: 340px; }
  .about-platform-grid { grid-template-columns: 1fr; }
  .about-platform-grid article, .about-platform-grid article:nth-child(2) { min-height: 220px; border-right: 0; border-bottom: 1px solid rgba(160,184,184,.72); }
  .about-platform-grid article:last-child { border-bottom: 0; }
  .about-platform-grid article > svg { margin-bottom: 34px; }
  .inquiry-form { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-qr { gap: 12px; }
  .footer-qr img { width: 104px; height: 104px; }
  .footer-social { padding: 22px 0 24px; }
  .footer-social__heading { align-items: center; flex-direction: column; gap: 3px; }
  .footer-social__grid { grid-template-columns: repeat(2, 96px); gap: 14px 24px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 5px; }
}

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