:root {
  --ink: #0a2431;
  --ink-2: #133b4d;
  --navy: #0b3142;
  --blue: #12617d;
  --blue-2: #1b7898;
  --teal: #16a69b;
  --teal-soft: #bdeae5;
  --ice: #e7f3f2;
  --paper: #ffffff;
  --light: #f7faf9;
  --sand: #eef3f1;
  --line: #d8e3e1;
  --muted: #60747c;
  --coral: #ef825f;
  --shadow: 0 18px 55px rgba(9, 42, 56, .1);
  --shadow-sm: 0 9px 28px rgba(9, 42, 56, .08);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1180px;
  --font: "Segoe UI", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font);
  font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3, h4 { margin: 0; color: var(--ink); line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.5rem, 5vw, 4.55rem); }
h2 { font-size: clamp(2rem, 3.25vw, 3.15rem); }
h3 { font-size: 1.25rem; }
small { color: var(--muted); }
::selection { background: var(--teal-soft); color: var(--ink); }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.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: 1000; top: 10px; left: 10px; padding: 10px 16px; background: var(--ink); color: white; border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.site-shell { overflow: clip; }
.utility-bar { position: relative; z-index: 50; background: var(--ink); color: #cde0e4; font-size: .78rem; letter-spacing: .02em; }
.utility-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-links { display: flex; gap: 20px; }
.utility-links a:hover { color: white; }
.site-header {
  position: sticky; z-index: 45; top: 0; background: rgba(255,255,255,.93); border-bottom: 1px solid rgba(216,227,225,.8);
  backdrop-filter: blur(18px); transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 7px 30px rgba(10,36,49,.08); background: rgba(255,255,255,.98); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark { position: relative; width: 35px; height: 35px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--navy); overflow: hidden; }
.brand-mark i { position: absolute; display: block; width: 5px; height: 23px; border-radius: 4px; background: var(--teal-soft); transform: rotate(45deg); }
.brand-mark i:nth-child(1) { left: 9px; }
.brand-mark i:nth-child(2) { right: 9px; }
.brand-mark i:nth-child(3) { width: 5px; height: 5px; right: 7px; top: 7px; background: var(--coral); transform: none; }
.brand-type { display: flex; flex-direction: column; line-height: .88; letter-spacing: .11em; }
.brand-type strong { font-size: .98rem; font-weight: 800; color: var(--ink); }
.brand-type small { margin-top: 5px; font-size: .58rem; font-weight: 700; color: var(--blue); letter-spacing: .26em; }
.site-nav { display: flex; align-items: center; gap: 27px; }
.site-nav > a:not(.button) { position: relative; font-size: .86rem; font-weight: 650; color: var(--ink-2); padding: 28px 0; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 19px; height: 2px; background: var(--teal); transition: right .2s ease; }
.site-nav > a:not(.button):hover::after, .site-nav > a.active::after { right: 0; }
.site-nav > a.active { color: var(--blue); }
.nav-toggle { display: none; padding: 8px; border: 0; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); transition: .2s ease; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 0 22px; border: 1px solid transparent;
  border-radius: 12px; font-size: .87rem; font-weight: 750; line-height: 1; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 17px; border-radius: 10px; }
.button-primary { color: white; background: var(--blue); box-shadow: 0 9px 24px rgba(18,97,125,.2); }
.button-primary:hover { background: #0d526a; box-shadow: 0 12px 28px rgba(18,97,125,.28); }
.button-secondary { color: var(--ink); background: white; border-color: var(--line); }
.button-secondary:hover { border-color: var(--blue); color: var(--blue); }
.button-light { color: var(--ink); background: white; }
.button-ghost-light { color: white; border-color: rgba(255,255,255,.35); }
.button-ghost-light:hover { background: rgba(255,255,255,.1); }
.button-full { width: 100%; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px; color: var(--teal); font-size: .72rem; line-height: 1; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.eyebrow-light { color: #8de1d9; }
.section { padding: 108px 0; }
.section-light { background: var(--light); }
.section-sand { background: var(--sand); }
.section-intro { max-width: 745px; margin-bottom: 46px; }
.section-intro p { max-width: 680px; margin-top: 18px; font-size: 1.04rem; }
.section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.section-heading-row .section-intro { margin-bottom: 46px; }
.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #f8fbfa 0%, #eef7f5 54%, #e6f1f1 100%); }
.hero::after { content: ""; position: absolute; right: -150px; top: -180px; width: 620px; height: 620px; border-radius: 50%; background: rgba(255,255,255,.72); filter: blur(3px); }
.hero-grid-pattern { position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(18,97,125,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(18,97,125,.12) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to right, #000 0%, transparent 62%); }
.hero-inner { position: relative; z-index: 2; min-height: 650px; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 70px; padding: 72px 0 58px; }
.hero-copy { max-width: 650px; }
.hero-copy h1 { max-width: 690px; }
.hero-lead { max-width: 630px; margin-top: 25px; font-size: 1.12rem; color: #4f6872; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 14px 26px; padding: 0; margin: 38px 0 0; list-style: none; color: var(--ink-2); font-size: .8rem; font-weight: 700; }
.hero-points li { display: flex; align-items: center; gap: 9px; }
.hero-points span { display: inline-grid; place-items: center; width: 26px; height: 26px; border: 1px solid #b8d1d3; border-radius: 50%; color: var(--blue); font-size: .58rem; }
.hero-visual { position: relative; min-height: 480px; display: grid; place-items: center; }
.visual-orbit { position: absolute; border: 1px solid rgba(18,97,125,.17); border-radius: 50%; }
.orbit-one { width: 430px; height: 430px; }
.orbit-two { width: 340px; height: 340px; border-style: dashed; animation: spin 40s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.visual-card { position: relative; z-index: 2; width: 92%; padding: 16px; border: 1px solid rgba(255,255,255,.85); border-radius: 28px; background: rgba(255,255,255,.78); box-shadow: 0 30px 80px rgba(10,36,49,.15); backdrop-filter: blur(16px); }
.visual-main svg { width: 100%; filter: drop-shadow(0 20px 20px rgba(10,36,49,.08)); }
.visual-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.8); border-radius: 13px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); font-size: .75rem; font-weight: 750; }
.chip-top { top: 42px; right: -18px; }
.chip-bottom { bottom: 38px; left: -26px; flex-direction: column; align-items: flex-start; gap: 0; }
.chip-bottom small { font-size: .63rem; font-weight: 500; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px rgba(22,166,155,.15); }
.audience-strip { position: relative; z-index: 3; display: grid; grid-template-columns: .65fr repeat(4, 1fr); gap: 0; padding: 25px 0 34px; border-top: 1px solid rgba(18,97,125,.13); }
.audience-strip > * { padding: 0 22px; border-left: 1px solid rgba(18,97,125,.13); }
.audience-strip > *:first-child { padding-left: 0; border-left: 0; }
.audience-label { color: var(--blue); font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; }
.audience-strip strong, .audience-strip small { display: block; }
.audience-strip strong { color: var(--ink); font-size: .82rem; }
.audience-strip small { margin-top: 3px; font-size: .68rem; line-height: 1.35; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card { position: relative; min-height: 300px; display: flex; flex-direction: column; padding: 26px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: white; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.category-card:hover { transform: translateY(-6px); border-color: #a9d5d0; box-shadow: var(--shadow); }
.category-card::after { content: ""; position: absolute; right: -50px; bottom: -65px; width: 145px; height: 145px; border-radius: 50%; background: var(--ice); transition: transform .3s ease; }
.category-card:hover::after { transform: scale(1.2); }
.category-icon { position: relative; z-index: 2; display: grid; place-items: center; width: 50px; height: 50px; color: var(--blue); border-radius: 14px; background: var(--ice); }
.category-icon svg { width: 28px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.category-number { position: absolute; right: 24px; top: 24px; color: #9ab3b8; font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.category-card h3 { position: relative; z-index: 2; margin-top: 38px; font-size: 1.35rem; }
.category-card p { position: relative; z-index: 2; margin: 10px 0 24px; font-size: .86rem; }
.category-card .arrow-link { position: relative; z-index: 2; margin-top: auto; }
.arrow-link, .text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-size: .81rem; font-weight: 750; }
.arrow-link span, .arrow-link b, .text-link span { transition: transform .2s ease; }
.arrow-link:hover span, .arrow-link:hover b, .text-link:hover span { transform: translateX(4px); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: white; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.product-card:hover { transform: translateY(-5px); border-color: #b5d8d5; box-shadow: var(--shadow); }
.product-art { display: block; aspect-ratio: 1.45 / 1; padding: 10px; overflow: hidden; background: linear-gradient(135deg, #edf8f6, #fafcfb); }
.product-art svg { width: 100%; height: 100%; transition: transform .35s ease; }
.product-card:hover .product-art svg { transform: scale(1.025); }
.product-card-body { padding: 24px 24px 26px; }
.product-category { display: block; margin-bottom: 10px; color: var(--teal); font-size: .63rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.product-card h3 { font-size: 1.22rem; }
.product-card h3 a:hover { color: var(--blue); }
.product-card-body p { min-height: 75px; margin: 13px 0 20px; font-size: .84rem; }
.split-layout { display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 90px; }
.split-copy h2 { max-width: 630px; }
.split-copy > p { max-width: 620px; margin-top: 22px; }
.check-list { display: grid; gap: 16px; margin: 30px 0 32px; }
.check-list > div, .compliance-list > div { display: flex; gap: 14px; }
.check-list > div > span, .compliance-list > div > span { flex: 0 0 23px; display: grid; place-items: center; width: 23px; height: 23px; margin-top: 3px; border-radius: 50%; color: var(--teal); background: #dff4f0; font-size: .7rem; font-weight: 900; }
.check-list p, .compliance-list p { margin: 0; }
.check-list strong, .check-list small, .compliance-list strong, .compliance-list small { display: block; }
.check-list strong, .compliance-list strong { color: var(--ink); font-size: .9rem; }
.check-list small, .compliance-list small { margin-top: 3px; font-size: .78rem; }
.process-panel { position: relative; padding: 29px 32px; border-radius: 26px; color: white; background: var(--navy); box-shadow: var(--shadow); overflow: hidden; }
.process-panel::before { content: ""; position: absolute; right: -100px; top: -80px; width: 280px; height: 280px; border: 1px solid rgba(108,213,205,.22); border-radius: 50%; box-shadow: 0 0 0 45px rgba(108,213,205,.05), 0 0 0 90px rgba(108,213,205,.03); }
.panel-kicker { position: relative; display: block; padding-bottom: 19px; border-bottom: 1px solid rgba(255,255,255,.13); color: #8de1d9; font-size: .69rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.process-list { position: relative; padding: 0; margin: 5px 0 0; list-style: none; }
.process-list li { display: flex; gap: 17px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.11); }
.process-list li:last-child { border-bottom: 0; padding-bottom: 4px; }
.process-list li > span { flex: 0 0 34px; display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(141,225,217,.45); border-radius: 50%; color: #8de1d9; font-size: .72rem; font-weight: 800; }
.process-list strong, .process-list p { display: block; margin: 0; }
.process-list strong { font-size: .9rem; }
.process-list p { margin-top: 2px; color: #b8cbd1; font-size: .75rem; }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: white; }
.capability-card { min-height: 260px; padding: 28px; border-left: 1px solid var(--line); }
.capability-card:first-child { border-left: 0; }
.capability-card > span { display: inline-grid; place-items: center; width: 33px; height: 33px; margin-bottom: 66px; border-radius: 50%; color: var(--blue); background: var(--ice); font-size: .65rem; font-weight: 800; }
.capability-card h3 { font-size: 1.05rem; }
.capability-card p { margin: 11px 0 0; font-size: .8rem; }
.center-action { display: flex; justify-content: center; margin-top: 32px; }
.quality-section { background: linear-gradient(115deg, #eff8f6 0%, #f7faf9 55%, #edf5f4 100%); }
.quality-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 100px; }
.quality-visual { min-height: 480px; display: grid; place-items: center; }
.document-stack { position: relative; width: 370px; height: 400px; }
.doc-back, .doc-mid, .doc-front { position: absolute; inset: 20px; border-radius: 18px; }
.doc-back { background: #cfe9e5; transform: rotate(-8deg) translate(-18px, 10px); }
.doc-mid { background: #e5f3f1; transform: rotate(7deg) translate(22px, -3px); }
.doc-front { display: flex; flex-direction: column; padding: 34px; background: white; box-shadow: 0 28px 70px rgba(10,36,49,.14); }
.doc-label { color: var(--teal); font-size: .66rem; font-weight: 850; letter-spacing: .16em; }
.doc-check { display: grid; place-items: center; width: 57px; height: 57px; margin: 36px 0 22px; border-radius: 50%; color: white; background: var(--teal); font-size: 1.45rem; }
.doc-front h3 { font-size: 1.45rem; }
.doc-lines { display: grid; gap: 10px; margin-top: 26px; }
.doc-lines i { height: 7px; border-radius: 10px; background: #e5eeec; }
.doc-lines i:nth-child(2) { width: 82%; }
.doc-lines i:nth-child(3) { width: 60%; }
.doc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }
.doc-tags span { padding: 6px 9px; border-radius: 7px; color: var(--blue); background: var(--ice); font-size: .6rem; font-weight: 750; }
.quality-copy h2 { max-width: 650px; }
.quality-copy > p { max-width: 630px; margin-top: 22px; }
.quality-points { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 28px 0; }
.quality-points p { display: flex; gap: 11px; margin: 0; padding: 13px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.65); font-size: .78rem; }
.quality-points span { color: var(--teal); font-size: .65rem; font-weight: 900; }
.quality-points strong { color: var(--ink); }
.notice-box { margin: 24px 0 28px; padding: 18px 20px; border-left: 3px solid var(--coral); border-radius: 0 12px 12px 0; background: #fff7f3; }
.notice-box strong { display: block; color: #9e4d31; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.notice-box p { margin: 6px 0 0; font-size: .77rem; }
.faq-layout { display: grid; grid-template-columns: .62fr 1.38fr; gap: 90px; }
.faq-intro h2 { font-size: clamp(2rem, 3vw, 2.8rem); }
.faq-intro p { margin-top: 20px; }
.faq-intro .text-link { margin-top: 8px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 23px 52px 23px 0; color: var(--ink); list-style: none; cursor: pointer; font-size: 1rem; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 5px; top: 50%; width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; background: var(--ice); border-color: transparent; }
.faq-list details p { max-width: 720px; padding: 0 50px 7px 0; margin: 0; font-size: .86rem; }
.cta-band { padding: 72px 0; color: white; background: var(--blue); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.cta-inner > div:first-child { max-width: 760px; }
.cta-inner h2 { color: white; }
.cta-inner p { max-width: 690px; margin: 17px 0 0; color: #d4e8ec; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 11px; flex-shrink: 0; }
.site-footer { padding: 76px 0 26px; color: #b7cbd1; background: #071f2a; }
.footer-grid { display: grid; grid-template-columns: 1.55fr .75fr .75fr 1.15fr; gap: 58px; }
.site-footer h3 { margin-bottom: 22px; color: white; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer a:not(.brand):not(.text-link) { display: block; margin-bottom: 11px; font-size: .81rem; }
.site-footer a:hover { color: #78ddd3; }
.footer-brand p { max-width: 330px; margin: 22px 0; color: #9db6be; font-size: .82rem; }
.footer-stamp { display: flex; gap: 7px; }
.footer-stamp span { padding: 5px 8px; border: 1px solid #284854; border-radius: 7px; color: #8ba7af; font-size: .56rem; font-weight: 800; letter-spacing: .11em; }
.footer-contact p { color: #90aab2; font-size: .78rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 60px; padding-top: 23px; border-top: 1px solid #1c3946; }
.footer-bottom p { margin: 0; color: #78949d; font-size: .67rem; }
.brand-light .brand-mark { background: #164657; }
.brand-light .brand-type strong { color: white; }
.brand-light .brand-type small { color: #78ddd3; }
.page-hero { position: relative; padding: 94px 0 86px; overflow: hidden; background: linear-gradient(130deg, #eef8f6, #f9fbfb 58%, #eaf3f3); }
.page-hero::after { content: ""; position: absolute; right: -100px; top: -170px; width: 450px; height: 450px; border: 1px solid rgba(18,97,125,.12); border-radius: 50%; box-shadow: 0 0 0 60px rgba(18,97,125,.025), 0 0 0 120px rgba(18,97,125,.018); }
.page-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; }
.page-hero h1 { max-width: 850px; font-size: clamp(2.5rem, 4.5vw, 4rem); }
.page-hero-inner > p { max-width: 450px; margin: 0 0 8px; font-size: .96rem; }
.small-hero { padding: 70px 0; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filter-button { padding: 10px 15px; border: 1px solid var(--line); border-radius: 10px; color: var(--muted); background: white; font-size: .73rem; font-weight: 700; transition: .2s ease; }
.filter-button:hover, .filter-button.active { color: white; border-color: var(--blue); background: var(--blue); }
.product-grid-all .product-card[hidden] { display: none; }
.empty-filter { padding: 40px; text-align: center; }
.procurement-section { background: var(--navy); }
.procurement-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.procurement-section .section-intro { margin-bottom: 0; }
.procurement-section .eyebrow { color: #7edbd2; }
.procurement-section h2 { color: white; }
.procurement-section p { color: #aac2c9; }
.procurement-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; padding: 0; margin: 0; list-style: none; }
.procurement-list li { display: flex; gap: 16px; min-height: 100px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.procurement-list li > span { color: #6fd1c8; font-size: .68rem; font-weight: 800; }
.procurement-list strong, .procurement-list p { display: block; margin: 0; }
.procurement-list strong { color: white; font-size: .88rem; }
.procurement-list p { margin-top: 3px; font-size: .74rem; }
.breadcrumbs { padding: 20px 0; background: #f5f9f8; border-bottom: 1px solid var(--line); }
.breadcrumbs .container { display: flex; flex-wrap: wrap; gap: 9px; color: #8a9da3; font-size: .72rem; }
.breadcrumbs a:hover { color: var(--blue); }
.product-detail-hero { padding: 72px 0 88px; background: linear-gradient(130deg, #eaf7f5, #f9fbfb 60%, #edf4f4); overflow: hidden; }
.product-detail-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 78px; }
.detail-copy h1 { max-width: 690px; font-size: clamp(2.5rem, 4.5vw, 4.15rem); }
.detail-copy > p { max-width: 690px; margin-top: 23px; font-size: 1.02rem; }
.detail-note { max-width: 650px; margin-top: 29px; padding: 15px 18px; border-left: 3px solid var(--teal); background: rgba(255,255,255,.65); }
.detail-note strong { display: block; color: var(--blue); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.detail-note p { margin: 4px 0 0; font-size: .76rem; }
.detail-art { position: relative; padding: 15px; border-radius: 28px; background: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.9); box-shadow: 0 28px 80px rgba(10,36,49,.12); }
.detail-art::before { content: ""; position: absolute; inset: 7%; border: 1px dashed rgba(18,97,125,.13); border-radius: 50%; }
.detail-art svg { position: relative; z-index: 2; }
.detail-content-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: start; }
.detail-main .large-copy { max-width: 800px; margin: 18px 0 44px; color: #506a73; font-size: 1rem; }
.detail-main h3 { margin: 43px 0 20px; font-size: 1.28rem; }
.application-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.application-grid > div { min-height: 92px; display: flex; flex-direction: column; justify-content: space-between; padding: 15px; border: 1px solid var(--line); border-radius: 13px; background: white; }
.application-grid span { color: var(--teal); font-size: .64rem; font-weight: 850; }
.application-grid strong { font-size: .84rem; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; padding: 0; margin: 0; list-style: none; }
.feature-list li { display: flex; gap: 10px; padding: 9px 0; color: #526a73; font-size: .82rem; }
.feature-list span { color: var(--teal); font-weight: 900; }
.quote-aside { position: sticky; top: 128px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: var(--shadow-sm); }
.quote-aside h3 { margin-bottom: 13px; font-size: 1.4rem; }
.quote-aside p { font-size: .82rem; }
.quote-aside .button { margin: 12px 0 17px; }
.quote-aside .text-link { font-size: .72rem; }
.aside-divider { height: 1px; margin: 22px 0 15px; background: var(--line); }
.quote-aside > small { display: block; font-size: .68rem; line-height: 1.55; }
.spec-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: white; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: 19px 24px; border-bottom: 1px solid var(--line); text-align: left; font-size: .83rem; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.spec-table th { width: 30%; color: var(--ink); background: #f6faf9; font-weight: 700; }
.spec-table td { color: var(--muted); }
.spec-disclaimer { display: flex; gap: 20px; margin-top: 18px; padding: 17px 19px; border-radius: 12px; background: var(--sand); }
.spec-disclaimer strong { flex-shrink: 0; color: var(--blue); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.spec-disclaimer p { margin: 0; font-size: .74rem; }
.product-grid-three { grid-template-columns: repeat(3, 1fr); }
.about-story-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 95px; }
.about-statement { position: relative; min-height: 345px; display: flex; align-items: center; padding: 44px; border-radius: 25px; color: white; background: var(--navy); overflow: hidden; }
.about-statement::after { content: ""; position: absolute; right: -65px; bottom: -75px; width: 230px; height: 230px; border: 1px solid rgba(118,220,211,.2); border-radius: 50%; box-shadow: 0 0 0 40px rgba(118,220,211,.04); }
.quote-mark { position: absolute; top: 17px; left: 26px; color: #4a7b89; font-family: Georgia, serif; font-size: 7rem; line-height: 1; opacity: .65; }
.about-statement blockquote { position: relative; z-index: 2; margin: 20px 0 0; font-size: 1.4rem; line-height: 1.45; letter-spacing: -.02em; }
.about-copy p { margin-top: 20px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-grid article { min-height: 250px; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: white; }
.value-grid article > span { color: var(--teal); font-size: .68rem; font-weight: 800; }
.value-grid h3 { margin-top: 90px; }
.value-grid p { margin: 12px 0 0; font-size: .82rem; }
.workflow-line { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); }
.workflow-line > div { position: relative; min-height: 210px; padding: 28px 20px 0 0; border-right: 1px solid var(--line); }
.workflow-line > div:not(:first-child) { padding-left: 20px; }
.workflow-line > div:last-child { border-right: 0; }
.workflow-line > div::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border: 2px solid white; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 1px var(--teal); }
.workflow-line > div:not(:first-child)::before { left: 20px; }
.workflow-line span { color: var(--teal); font-size: .65rem; font-weight: 850; }
.workflow-line h3 { margin: 50px 0 11px; font-size: 1.02rem; }
.workflow-line p { font-size: .77rem; }
.company-facts-section { padding: 0 0 100px; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facts-grid > div { padding: 30px; border-right: 1px solid var(--line); }
.facts-grid > div:last-child { border-right: 0; }
.facts-grid strong, .facts-grid span { display: block; }
.facts-grid strong { font-size: 1.12rem; }
.facts-grid span { margin-top: 6px; color: var(--muted); font-size: .72rem; }
.quality-principles { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: white; }
.quality-principles article { min-height: 300px; padding: 30px; border-right: 1px solid var(--line); }
.quality-principles article:last-child { border-right: 0; }
.quality-principles span { color: var(--teal); font-size: .67rem; font-weight: 850; }
.quality-principles h2 { margin-top: 80px; font-size: 1.35rem; }
.quality-principles p { margin: 13px 0 0; font-size: .8rem; }
.process-document { padding: 48px; border: 1px solid var(--line); border-radius: 26px; background: #fbfdfc; box-shadow: var(--shadow-sm); }
.document-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.document-header span { color: var(--teal); font-size: .63rem; font-weight: 850; letter-spacing: .15em; }
.document-header h2 { max-width: 680px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.quality-path { display: grid; grid-template-columns: repeat(5, 1fr); }
.quality-path > div { position: relative; min-height: 230px; padding: 31px 18px 0; border-right: 1px solid var(--line); }
.quality-path > div:last-child { border-right: 0; }
.quality-path > div::before { content: ""; position: absolute; left: 18px; top: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.quality-path span { color: var(--teal); font-size: .62rem; font-weight: 850; }
.quality-path strong { display: block; margin-top: 58px; font-size: .9rem; }
.quality-path p { margin-top: 9px; font-size: .73rem; }
.compliance-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.compliance-grid > div:first-child p { margin-top: 20px; }
.compliance-list { display: grid; gap: 25px; padding: 30px; border-radius: 20px; background: white; box-shadow: var(--shadow-sm); }
.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: 85px; }
.contact-copy { padding-top: 25px; }
.contact-copy > p { margin-top: 20px; }
.contact-methods { display: grid; gap: 14px; margin-top: 31px; }
.contact-methods > a, .contact-methods > div { display: flex; align-items: center; gap: 13px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: white; }
.contact-methods > a:hover { border-color: #a7d5d0; }
.contact-methods > a > span, .contact-methods > div > span { flex: 0 0 42px; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: var(--blue); background: var(--ice); }
.contact-methods svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.whatsapp-icon { font-size: .67rem; font-weight: 850; }
.contact-methods small, .contact-methods strong { display: block; }
.contact-methods small { font-size: .62rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.contact-methods strong { color: var(--ink); font-size: .81rem; }
.response-card { margin-top: 25px; padding: 20px; border-left: 3px solid var(--teal); border-radius: 0 13px 13px 0; background: #eaf6f4; }
.response-card strong { font-size: .73rem; }
.response-card p { margin: 5px 0 0; font-size: .75rem; }
.inquiry-panel { padding: 40px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: var(--shadow); }
.form-heading { margin-bottom: 28px; }
.form-heading p { margin: 11px 0 0; font-size: .79rem; }
.inquiry-form { display: grid; gap: 19px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.inquiry-form label { display: grid; gap: 7px; color: var(--ink); font-size: .74rem; font-weight: 700; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; border: 1px solid #cfdcda; border-radius: 11px; outline: none; color: var(--ink); background: #fbfdfc; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.inquiry-form input, .inquiry-form select { min-height: 49px; padding: 0 14px; }
.inquiry-form textarea { min-height: 145px; padding: 13px 14px; resize: vertical; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--blue-2); background: white; box-shadow: 0 0 0 4px rgba(27,120,152,.1); }
.inquiry-form input::placeholder, .inquiry-form textarea::placeholder { color: #97a8ad; }
.consent-field { display: flex !important; grid-template-columns: none !important; align-items: flex-start; gap: 10px !important; color: var(--muted) !important; font-weight: 500 !important; }
.consent-field input { width: 17px; min-height: 17px; margin-top: 2px; accent-color: var(--blue); }
.form-note { margin: -5px 0 0; font-size: .67rem; line-height: 1.5; }
.form-status { display: none; padding: 12px 14px; border-radius: 10px; color: #275f58; background: #e2f5f1; font-size: .75rem; }
.form-status.show { display: block; }
.preflight-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.preflight-list { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.preflight-list > div { display: flex; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: white; }
.preflight-list > div > span { color: var(--teal); font-size: .65rem; font-weight: 850; }
.preflight-list p { margin: 0; }
.preflight-list strong, .preflight-list small { display: block; }
.preflight-list strong { font-size: .83rem; }
.preflight-list small { margin-top: 4px; font-size: .72rem; }
.legal-copy { max-width: 800px; margin: 0 auto; }
.legal-copy h2 { margin: 38px 0 12px; font-size: 1.45rem; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p { font-size: .9rem; }
.legal-copy a { color: var(--blue); text-decoration: underline; }
.not-found { min-height: 65vh; display: grid; place-items: center; padding: 90px 0; text-align: center; background: linear-gradient(135deg, #eef8f6, #fbfdfc); }
.not-found .container > span { color: var(--teal); font-size: .7rem; font-weight: 850; letter-spacing: .2em; }
.not-found h1 { max-width: 750px; margin: 16px auto 18px; }
.not-found p { max-width: 520px; margin: 0 auto; }
.not-found .hero-actions { justify-content: center; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }
@media (max-width: 1080px) {
  .site-nav { gap: 18px; }
  .hero-inner { gap: 30px; }
  .hero-visual { min-height: 420px; }
  .orbit-one { width: 380px; height: 380px; }
  .orbit-two { width: 300px; height: 300px; }
  .audience-strip { grid-template-columns: repeat(4, 1fr); }
  .audience-label { display: none; }
  .audience-strip > * { padding: 0 15px; }
  .audience-strip > div:nth-child(2) { border-left: 0; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-grid, .quality-principles { grid-template-columns: repeat(2, 1fr); }
  .capability-card:nth-child(3), .quality-principles article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .capability-card:nth-child(4), .quality-principles article:nth-child(4) { border-top: 1px solid var(--line); }
  .split-layout, .quality-grid, .about-story-grid, .contact-layout, .preflight-grid { gap: 55px; }
  .workflow-line, .quality-path { grid-template-columns: repeat(3, 1fr); }
  .workflow-line > div:nth-child(4), .quality-path > div:nth-child(4) { border-right: 0; }
  .workflow-line > div:nth-child(n+4), .quality-path > div:nth-child(n+4) { margin-top: 25px; border-top: 1px solid var(--line); }
}
@media (max-width: 860px) {
  .section { padding: 82px 0; }
  .nav-toggle { display: block; }
  .site-nav { position: fixed; inset: 112px 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 24px 20px 40px; background: white; transform: translateX(100%); transition: transform .28s ease; overflow-y: auto; }
  .site-nav.open { transform: translateX(0); }
  .site-nav > a:not(.button) { padding: 16px 5px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .site-nav > a:not(.button)::after { display: none; }
  .nav-cta { margin-top: 20px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-inner, .product-detail-grid, .page-hero-inner, .split-layout, .quality-grid, .about-story-grid, .faq-layout, .procurement-grid, .detail-content-grid, .compliance-grid, .contact-layout, .preflight-grid { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 65px; }
  .hero-copy { max-width: none; }
  .hero-visual { min-height: 410px; }
  .hero-visual { max-width: 600px; margin: 0 auto; width: 100%; }
  .audience-strip { grid-template-columns: 1fr 1fr; gap: 18px 0; }
  .audience-strip > * { padding: 0 15px; }
  .audience-strip > *:nth-child(odd) { border-left: 0; }
  .product-grid, .product-grid-three { grid-template-columns: repeat(2, 1fr); }
  .capability-grid, .quality-principles { grid-template-columns: 1fr 1fr; }
  .split-layout, .quality-grid, .about-story-grid, .faq-layout, .compliance-grid, .contact-layout, .preflight-grid { gap: 42px; }
  .quality-visual { min-height: 410px; }
  .page-hero-inner > p { max-width: 630px; }
  .product-detail-grid { gap: 34px; }
  .detail-art { max-width: 600px; }
  .quote-aside { position: static; }
  .cta-inner { align-items: flex-start; flex-direction: column; gap: 30px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
  .footer-contact { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  h1 { font-size: clamp(2.25rem, 12vw, 3.2rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.55rem); }
  .utility-bar { display: none; }
  .header-inner { min-height: 68px; }
  .site-nav { inset: 68px 0 0; }
  .hero-inner { min-height: auto; padding: 52px 0 40px; }
  .hero-lead { font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero-visual { min-height: 320px; }
  .visual-card { width: 100%; padding: 10px; border-radius: 21px; }
  .orbit-one { width: 300px; height: 300px; }
  .orbit-two { width: 240px; height: 240px; }
  .chip-top { top: 10px; right: -4px; }
  .chip-bottom { bottom: 6px; left: -2px; }
  .audience-strip { grid-template-columns: 1fr; gap: 0; padding-bottom: 25px; }
  .audience-strip > * { padding: 13px 0; border-left: 0; border-top: 1px solid rgba(18,97,125,.1); }
  .audience-strip > *:first-child { border-top: 0; }
  .category-grid, .product-grid, .product-grid-three, .value-grid, .facts-grid, .quality-principles, .capability-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 250px; }
  .product-art { aspect-ratio: 1.55 / 1; }
  .product-grid { gap: 15px; }
  .split-layout { gap: 30px; }
  .process-panel { padding: 24px; }
  .capability-card { min-height: auto; border-left: 0; border-top: 1px solid var(--line); }
  .capability-card:first-child { border-top: 0; }
  .capability-card > span { margin-bottom: 35px; }
  .quality-visual { min-height: 350px; }
  .document-stack { width: 285px; height: 325px; }
  .doc-front { padding: 25px; }
  .doc-check { margin: 28px 0 16px; }
  .quality-points, .application-grid, .feature-list, .procurement-list, .preflight-list, .field-row { grid-template-columns: 1fr; }
  .faq-layout { gap: 35px; }
  .cta-band { padding: 58px 0; }
  .cta-actions, .cta-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .page-hero { padding: 65px 0; }
  .page-hero-inner { gap: 25px; }
  .filter-bar { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
  .filter-button { white-space: nowrap; }
  .procurement-grid, .preflight-grid { gap: 35px; }
  .detail-copy h1 { font-size: clamp(2.25rem, 11vw, 3.3rem); }
  .product-detail-hero { padding: 52px 0 65px; }
  .detail-content-grid { gap: 40px; }
  .spec-table th, .spec-table td { padding: 15px; font-size: .77rem; }
  .spec-table th { width: 38%; }
  .spec-disclaimer { flex-direction: column; gap: 6px; }
  .about-statement { min-height: 310px; padding: 32px; }
  .about-statement blockquote { font-size: 1.22rem; }
  .workflow-line, .quality-path { grid-template-columns: 1fr; }
  .workflow-line > div, .workflow-line > div:not(:first-child), .quality-path > div { min-height: auto; margin-top: 0; padding: 25px 0 25px 20px; border-right: 0; border-top: 1px solid var(--line); }
  .workflow-line > div:first-child, .quality-path > div:first-child { border-top: 0; }
  .workflow-line > div::before, .workflow-line > div:not(:first-child)::before, .quality-path > div::before { left: 0; }
  .workflow-line h3, .quality-path strong { margin-top: 25px; }
  .facts-grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .facts-grid > div:last-child { border-bottom: 0; }
  .quality-principles article { min-height: auto; border-right: 0; border-top: 1px solid var(--line); }
  .quality-principles article:first-child { border-top: 0; }
  .quality-principles h2 { margin-top: 30px; }
  .process-document { padding: 25px; }
  .document-header { align-items: flex-start; flex-direction: column; gap: 15px; }
  .contact-copy { padding-top: 0; }
  .inquiry-panel { padding: 25px 20px; }
  .legal-copy h2 { font-size: 1.25rem; }
}
.brand-mark-img { width: 58px; height: 36px; object-fit: contain; flex: 0 0 auto; }
.brand-type strong { letter-spacing: .085em; }
.brand-type small { white-space: nowrap; letter-spacing: .17em; }
@media (max-width: 620px) {
  .brand-mark-img { width: 50px; height: 32px; }
  .brand-type strong { font-size: .9rem; }
  .brand-type small { font-size: .5rem; }
}
