:root {
  --navy-950: #04140d;
  --navy-900: #082018;
  --navy-800: #103128;
  --blue-700: #007a3d;
  --blue-600: #009b50;
  --blue-100: #e6f7ee;
  --green-600: #009b50;
  --green-100: #e6f7ee;
  --slate-900: #172033;
  --slate-700: #445069;
  --slate-500: #6b7587;
  --slate-300: #cbd2dc;
  --slate-200: #e4e8ee;
  --slate-100: #f3f5f8;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(16, 32, 56, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--slate-900);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.site-shell > main { flex: 1; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 50;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(203,210,220,.72);
  backdrop-filter: blur(18px);
}
.nav-wrap { width: min(1320px, calc(100% - 40px)); min-height: 78px; margin: 0 auto; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 174px; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; overflow: hidden; background: #fff; box-shadow: 0 4px 16px rgba(7,26,47,.1); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand strong { display: block; font-size: 21px; line-height: 1; letter-spacing: -.03em; color: #111827; }
.brand small { display: block; margin-top: 4px; font-size: 8px; font-weight: 800; letter-spacing: .16em; color: var(--slate-500); }
.desktop-nav { margin-left: auto; display: flex; align-items: stretch; height: 78px; }
.desktop-nav a { position: relative; display: flex; align-items: center; padding: 0 12px; font-size: 13px; font-weight: 700; color: #526076; white-space: nowrap; transition: color .2s ease; }
.desktop-nav a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 0; height: 3px; background: var(--blue-600); transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--blue-700); }
.desktop-nav a.active::after { transform: scaleX(1); }
.support-button { padding: 11px 16px; border-radius: 9px; background: var(--blue-600); color: white; font-size: 13px; font-weight: 800; white-space: nowrap; box-shadow: 0 8px 20px rgba(0,155,80,.24); }
.menu-button { display: none; margin-left: auto; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 9px; background: var(--slate-100); }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: var(--slate-900); }
.mobile-nav { display: none; }

.home-hero { position: relative; overflow: hidden; min-height: 670px; display: grid; align-items: center; background: radial-gradient(circle at 75% 30%, #0b6845 0, transparent 34%), linear-gradient(135deg, #03110b 0%, #08241b 58%, #0b3527 100%); color: white; }
.home-hero::before { content:""; position:absolute; inset:0; opacity:.14; background-image: linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg, #000, transparent 78%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); opacity: .24; }
.hero-glow.one { width: 380px; height: 380px; right: -120px; top: -120px; border: 1px solid #6fe0a3; box-shadow: inset 0 0 90px #009b50; }
.hero-glow.two { width: 260px; height: 260px; right: 25%; bottom: -180px; background: #0a9d5a; filter: blur(80px); }
.home-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .75fr; gap: 84px; align-items: center; padding: 86px 0; }
.eyebrow { margin: 0 0 14px; color: var(--blue-700); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.light { color: #77e2a8; }
.hero-copy h1 { max-width: 740px; margin: 0; font-size: clamp(38px, 4vw, 56px); line-height: 1.2; letter-spacing: -.045em; }
.hero-copy h1 span { display: block; color: #79e5ab; }
.hero-description { max-width: 690px; margin: 27px 0 0; color: #c8d4e4; font-size: 18px; line-height: 1.8; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border-radius: 9px; font-size: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--blue-600); color: white; box-shadow: 0 14px 30px rgba(0,155,80,.28); }
.button.ghost { border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.06); color: white; }
.button.white { background: white; color: var(--navy-900); }
.button.outline-white { border: 1px solid rgba(255,255,255,.35); color: white; }
.hero-panel { padding: 34px; border: 1px solid rgba(255,255,255,.18); background: rgba(10,27,47,.68); box-shadow: 0 24px 80px rgba(0,0,0,.2); backdrop-filter: blur(12px); }
.panel-kicker { margin: 0 0 12px; color: #77e2a8; font-size: 11px; font-weight: 900; letter-spacing: .17em; }
.hero-panel h2 { margin: 0 0 26px; font-size: 25px; line-height: 1.42; letter-spacing: -.03em; }
.infra-diagram { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.14); }
.infra-diagram span { min-height: 82px; display: grid; place-items: center; background: #0c2a1f; font-size: 13px; font-weight: 800; color: #dcefe5; }
.infra-diagram span:nth-child(1), .infra-diagram span:nth-child(4) { background: #10422f; }
.panel-note { margin: 22px 0 0; padding-top: 19px; border-top: 1px solid rgba(255,255,255,.13); color: #aebed1; font-size: 12px; }

.stats-strip { border-bottom: 1px solid var(--slate-200); background: white; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stats-grid article { min-height: 136px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 20px; padding: 27px 38px; border-left: 1px solid var(--slate-200); }
.stats-grid article:last-child { border-right: 1px solid var(--slate-200); }
.stats-grid article > strong { color: var(--blue-600); font-size: 28px; letter-spacing: -.04em; }
.stats-grid h2 { margin: 0 0 4px; font-size: 16px; }
.stats-grid p { margin: 0; color: var(--slate-500); font-size: 12px; line-height: 1.6; }

.section { padding-top: 104px; padding-bottom: 104px; }
.section-heading { margin-bottom: 46px; }
.section-heading h2, .brand-heading h2, .maintenance-intro h2, .company-message h2, .checklist-heading h2 { margin: 0; font-size: clamp(31px, 4vw, 48px); line-height: 1.25; letter-spacing: -.045em; }
.section-heading > p:last-child, .brand-heading > div > p:last-child { color: var(--slate-500); font-size: 16px; line-height: 1.8; }
.section-heading.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; }
.section-heading.split > p { margin: 0; }
.section-heading.centered { max-width: 760px; margin-left: auto; margin-right: auto; text-align: center; }
.section-lead { color: var(--slate-500); font-size: 17px; line-height: 1.85; }
.feature-grid { display: grid; gap: 22px; }
.feature-grid.two { grid-template-columns: repeat(2, 1fr); }
.feature-card { position: relative; min-height: 360px; overflow: hidden; padding: 42px; color: white; box-shadow: var(--shadow); }
.feature-card::before { content:""; position:absolute; right:-65px; bottom:-65px; width:240px; height:240px; border:1px solid rgba(255,255,255,.18); transform:rotate(45deg); }
.products-feature { background: linear-gradient(140deg, #073020, #009b50); }
.maintenance-feature { background: linear-gradient(140deg, #0b291f, #08703f); }
.feature-card .card-index { position: absolute; right: 32px; top: 27px; color: rgba(255,255,255,.2); font-size: 54px; font-weight: 900; }
.feature-card h3 { max-width: 440px; margin: 38px 0 18px; font-size: 30px; letter-spacing: -.04em; }
.feature-card > p:not(.eyebrow) { max-width: 500px; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.75; }
.text-link { position: absolute; left: 42px; bottom: 38px; font-size: 14px; font-weight: 800; }
.vision-section { padding: 106px 0; background: var(--slate-100); }
.vision-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.vision-grid h2 { margin: 0; font-size: 42px; letter-spacing: -.04em; }
.principle-list { border-top: 1px solid var(--slate-300); }
.principle-list article { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid var(--slate-300); }
.principle-list span { color: var(--blue-600); font-size: 12px; font-weight: 900; }
.principle-list h3 { margin: 0 0 7px; font-size: 20px; }
.principle-list p { margin: 0; color: var(--slate-500); font-size: 14px; }
.banner-wrap { padding-top: 90px; padding-bottom: 90px; }
.inquiry-banner { position: relative; overflow: hidden; min-height: 270px; display: flex; justify-content: space-between; align-items: center; gap: 40px; padding: 54px 64px; background: linear-gradient(125deg, #08271c, #008f49); color: white; }
.inquiry-banner::after { content:""; position:absolute; width:290px; height:290px; right:-95px; top:-125px; border:48px solid rgba(255,255,255,.06); transform:rotate(45deg); }
.inquiry-banner h2 { max-width: 690px; margin: 0 0 13px; font-size: 32px; letter-spacing: -.04em; }
.inquiry-banner > div > p:last-child { max-width: 720px; margin: 0; color: #cbdaf0; line-height: 1.75; }
.inquiry-actions { position: relative; z-index: 1; display: flex; flex-direction: column; min-width: 170px; gap: 10px; }

.page-hero { position: relative; overflow: hidden; min-height: 365px; display: flex; align-items: center; background: linear-gradient(120deg, var(--navy-950), #0b4a33); color: white; }
.page-hero::after { content:""; position:absolute; width:440px; height:440px; top:-270px; right:7%; border:80px solid rgba(58,203,127,.15); transform:rotate(45deg); }
.page-hero-grid { position:absolute; inset:0; opacity:.13; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.16) 1px,transparent 1px); background-size:50px 50px; mask-image:linear-gradient(90deg,#000,transparent 75%); }
.page-hero-inner { position: relative; z-index: 1; padding: 72px 0; }
.page-hero h1 { margin: 0 0 20px; font-size: clamp(44px, 6vw, 68px); letter-spacing: -.055em; }
.page-hero-inner > p:last-child { max-width: 800px; margin: 0; color: #c7d4e5; font-size: 18px; line-height: 1.8; }

.product-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: center; }
.statement-card { padding: 48px; border-left: 5px solid var(--blue-600); background: var(--slate-100); }
.statement-card h2 { margin: 0 0 22px; font-size: 40px; line-height: 1.3; letter-spacing: -.04em; }
.statement-card > p:last-child { margin: 0; color: var(--slate-500); line-height: 1.85; }
.assurance-list article { display: grid; grid-template-columns: 45px 1fr; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--slate-200); }
.assurance-list article > strong { color: var(--blue-600); font-size: 12px; }
.assurance-list h3 { margin: 0 0 6px; font-size: 18px; }
.assurance-list p { margin: 0; color: var(--slate-500); font-size: 14px; line-height: 1.6; }
.soft-section { background: var(--slate-100); }
.brand-heading { display: grid; grid-template-columns: 115px 1fr; gap: 28px; align-items: center; margin-bottom: 45px; }
.brand-symbol { width: 108px; height: 76px; display: grid; place-items: center; font-size: 28px; font-weight: 900; letter-spacing: -.05em; }
.brand-symbol.hpe { border: 5px solid var(--green-600); color: var(--green-600); }
.brand-symbol.hp { width: 82px; height: 82px; margin-left: 13px; border-radius: 50%; background: #1687d9; color: white; font-size: 31px; font-style: italic; }
.brand-heading h2 { font-size: 40px; }
.brand-heading p { margin: 8px 0 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { min-height: 355px; padding: 30px; border: 1px solid var(--slate-200); background: white; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-code { color: var(--blue-600); font-size: 20px; line-height: 1.2; font-weight: 900; letter-spacing: .08em; }
.product-card h3 { margin: 22px 0 12px; font-size: 23px; }
.product-card > p { min-height: 70px; margin: 0; color: var(--slate-500); font-size: 14px; line-height: 1.7; }
.product-card ul, .plan-grid ul, .team-grid ul { margin: 22px 0 0; padding: 19px 0 0; border-top: 1px solid var(--slate-200); list-style: none; }
.product-card li, .plan-grid li, .team-grid li { position: relative; margin: 9px 0; padding-left: 14px; color: var(--slate-700); font-size: 13px; }
.product-card li::before, .plan-grid li::before, .team-grid li::before { content:""; position:absolute; left:0; top:.55em; width:5px; height:5px; background: var(--blue-600); }
.vendor-link { display: inline-flex; margin-top: 28px; padding-bottom: 5px; border-bottom: 1px solid currentColor; color: var(--blue-700); font-size: 13px; font-weight: 800; }
.hp-heading { margin-top: -8px; }
.hp-product-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--slate-300); }
.hp-product-list article { display: grid; grid-template-columns: 1fr; min-height: 148px; padding: 29px 24px 26px 0; border-bottom: 1px solid var(--slate-300); }
.hp-product-list article:nth-child(odd) { border-right: 1px solid var(--slate-300); }
.hp-product-list article:nth-child(even) { padding-left: 30px; }
.hp-product-list p { margin: 0 0 6px; color: #1687d9; font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.hp-product-list h3 { margin: 0 0 8px; font-size: 20px; }
.hp-product-list small { display: block; color: var(--slate-500); font-size: 13px; line-height: 1.55; }
.order-section { background: #f8fafc; border-top: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-grid article { position: relative; min-height: 190px; padding: 30px; border: 1px solid var(--slate-200); border-right: 0; background: white; }
.process-grid article:last-child { border-right: 1px solid var(--slate-200); }
.process-grid article:not(:last-child)::after { content:"→"; position:absolute; z-index:1; right:-13px; top:32px; width:26px; height:26px; display:grid; place-items:center; border:1px solid var(--slate-200); border-radius:50%; background:white; color:var(--blue-600); font-size:12px; }
.process-grid strong { color: var(--blue-600); font-size: 12px; }
.process-grid h3 { margin: 30px 0 9px; font-size: 18px; }
.process-grid p { margin: 0; color: var(--slate-500); font-size: 13px; line-height: 1.6; }
.availability-note { margin: 30px 0 0; padding: 19px 22px; border-left: 3px solid var(--slate-300); background: white; color: var(--slate-500); font-size: 12px; line-height: 1.7; }

.maintenance-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.maintenance-intro h2 { font-size: 42px; }
.maintenance-intro .section-lead { margin-top: 0; }
.maintenance-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 27px; }
.maintenance-badges span { padding: 9px 14px; border: 1px solid #bfd9ca; border-radius: 100px; background: var(--green-100); color: #08753e; font-size: 12px; font-weight: 800; }
.dark-section { background: var(--navy-950); color: white; }
.dark-copy > p { color: #a9b8ca !important; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #29394d; border: 1px solid #29394d; }
.service-grid article { min-height: 260px; padding: 32px; background: var(--navy-900); }
.service-grid article > span { color: #63d196; font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.service-grid h3 { margin: 38px 0 13px; font-size: 22px; }
.service-grid p { margin: 0; color: #aebdce; font-size: 13px; line-height: 1.7; }
.response-flow { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.response-flow::before { content:""; position:absolute; left:8%; right:8%; top:33px; height:1px; background: var(--slate-300); }
.response-flow article { position:relative; padding-top: 80px; text-align: center; }
.response-flow strong { position:absolute; top:8px; left:50%; width:50px; height:50px; display:grid; place-items:center; border:1px solid var(--blue-600); border-radius:50%; background:white; color:var(--blue-600); font-size:12px; transform:translateX(-50%); }
.response-flow h3 { margin: 0 0 10px; font-size: 19px; }
.response-flow p { margin: 0; color: var(--slate-500); font-size: 13px; line-height: 1.65; }
.checklist-section { background: var(--slate-100); }
.checklist-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; }
.checklist-heading { position: sticky; top: 130px; align-self: start; }
.checklist-heading > p:last-child { color: var(--slate-500); line-height: 1.8; }
.checklist { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--slate-300); }
.checklist li { display: grid; grid-template-columns: 60px 1fr; gap: 15px; padding: 22px 0; border-bottom: 1px solid var(--slate-300); }
.checklist span { color: var(--green-600); font-size: 11px; font-weight: 900; }
.checklist p { margin: 0; font-size: 14px; line-height: 1.65; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan-grid article { min-height: 365px; padding: 34px; border: 1px solid var(--slate-200); }
.plan-grid article.featured { border-top: 4px solid var(--green-600); background: #f2fbf6; box-shadow: var(--shadow); }
.plan-grid article > span { display: inline-block; padding: 6px 10px; background: var(--slate-100); color: var(--slate-700); font-size: 11px; font-weight: 900; }
.plan-grid .featured > span { background: #d8f3e4; color: #08753e; }
.plan-grid h3 { margin: 27px 0 13px; font-size: 24px; }
.plan-grid > article > p { min-height: 80px; margin: 0; color: var(--slate-500); font-size: 14px; line-height: 1.7; }

.business-list { border-top: 1px solid var(--slate-300); }
.business-list article { display: grid; grid-template-columns: 70px 1.1fr .9fr; gap: 35px; padding: 42px 0; border-bottom: 1px solid var(--slate-300); }
.business-list > article > span { color: var(--blue-600); font-size: 12px; font-weight: 900; }
.business-list h2 { margin: 0 0 12px; font-size: 28px; }
.business-list p { margin: 0; color: var(--slate-500); line-height: 1.7; }
.business-list ul { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-content: center; }
.business-list li { padding: 10px 12px; background: var(--slate-100); color: var(--slate-700); font-size: 12px; }
.business-links { background: var(--slate-100); }
.simple-link-card { padding: 40px; border: 1px solid var(--slate-200); background: white; }
.simple-link-card h2 { margin: 0 0 35px; font-size: 28px; }
.simple-link-card span { color: var(--blue-700); font-size: 13px; font-weight: 800; }

.company-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: start; }
.company-message h2 { margin-bottom: 24px; }
.company-message > p:last-child { color: var(--slate-500); font-size: 16px; line-height: 1.85; }
.company-facts { margin: 0; border-top: 2px solid var(--slate-900); }
.company-facts > div { display: grid; grid-template-columns: 140px 1fr; padding: 22px 8px; border-bottom: 1px solid var(--slate-200); }
.company-facts dt { color: var(--slate-500); font-size: 13px; font-weight: 700; }
.company-facts dd { margin: 0; font-size: 14px; font-weight: 800; }
.company-facts .partner { background: var(--blue-100); padding: 24px 18px; }
.company-facts .partner dt, .company-facts .partner dd { color: var(--blue-700); }
.company-facts dd small { color: var(--slate-500); font-weight: 500; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-grid article { min-height: 250px; padding: 30px; border: 1px solid var(--slate-200); background: white; }
.value-grid strong { color: var(--blue-600); font-size: 11px; }
.value-grid h3 { margin: 45px 0 12px; font-size: 20px; }
.value-grid p { margin: 0; color: var(--slate-500); font-size: 13px; line-height: 1.65; }

.reference-summary { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 45px; border: 1px solid var(--slate-200); }
.reference-summary article { padding: 25px; border-right: 1px solid var(--slate-200); }
.reference-summary article:last-child { border-right: 0; }
.reference-summary strong { color: var(--blue-600); font-size: 17px; }
.reference-summary p { margin: 9px 0 0; color: var(--slate-500); font-size: 12px; line-height: 1.6; }
.project-table { border-top: 2px solid var(--slate-900); }
.project-row { display: grid; grid-template-columns: 80px 1.1fr 1.25fr 1.25fr; gap: 20px; padding: 19px 18px; border-bottom: 1px solid var(--slate-200); font-size: 13px; line-height: 1.5; }
.project-row.head { background: var(--slate-100); color: var(--slate-500); font-size: 11px; font-weight: 800; }
.project-row:not(.head) > span:first-child { color: var(--blue-600); font-weight: 900; }
.project-row:not(.head) > span:last-child { color: var(--slate-500); }
.table-note { margin-top: 18px; color: var(--slate-500); font-size: 11px; }

.team-responsibility { display:grid; grid-template-columns:1.25fr .75fr; gap:16px; margin-bottom:28px; }
.team-responsibility article { min-height:220px; padding:34px; border:1px solid #c9e8d7; background:#f2fbf6; }
.team-responsibility article:last-child { background:var(--navy-900); border-color:var(--navy-900); color:white; }
.team-responsibility span { color:var(--green-600); font-size:10px; font-weight:900; letter-spacing:.14em; }
.team-responsibility article:last-child span { color:#77e2a8; }
.team-responsibility h3 { margin:24px 0 13px; font-size:24px; letter-spacing:-.03em; }
.team-responsibility p { margin:0; color:var(--slate-500); font-size:14px; line-height:1.8; }
.team-responsibility article:last-child p { color:#afc7ba; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 0; }
.team-grid article { position: relative; min-height: 505px; padding: 26px; border: 1px solid var(--slate-200); }
.member-mark { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 38px; background: var(--green-600); color: white; font-size: 20px; font-weight: 900; }
.team-grid article > span { position: absolute; top: 28px; right: 25px; color: var(--slate-300); font-size: 11px; font-weight: 900; }
.team-grid h3 { margin: 0 0 8px; font-size: 21px; }
.team-grid h3 small { color: var(--slate-500); font-size: 12px; }
.team-grid article > p { margin: 0; color: var(--blue-600); font-size: 12px; font-weight: 800; }
.team-grid article > .member-description { min-height:86px; margin-top:15px; color:var(--slate-500); font-size:12px; font-weight:500; line-height:1.7; }

/* Section sequence numbers share one clear, readable visual scale. */
.principle-list span,
.assurance-list article > strong,
.process-grid strong,
.response-flow strong,
.checklist span,
.business-list > article > span,
.value-grid strong,
.team-grid article > span {
  font-size: 23px;
  line-height: 1;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}
.cert-strip { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; margin-top: 55px; padding: 45px; background: linear-gradient(120deg, #08231a, #0b5f3d); color: white; }
.cert-strip h2 { margin: 0; font-size: 28px; }
.cert-strip > p { margin: 0; color: #bdcbdb; line-height: 1.8; }

.download-section { max-width: 980px; }
.download-card { display: grid; grid-template-columns: 320px 1fr; min-height: 420px; border: 1px solid var(--slate-200); box-shadow: var(--shadow); }
.document-preview { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; padding: 35px; background: linear-gradient(145deg,#08231a,#008f49); color: white; }
.document-preview::after { content:""; position:absolute; width:210px; height:210px; right:-90px; bottom:-90px; border:34px solid rgba(67,206,132,.45); transform:rotate(45deg); }
.document-preview > span { font-size: 14px; font-weight: 900; letter-spacing: .12em; }
.document-preview strong { position:relative; z-index:1; font-size: 36px; line-height: 1.15; letter-spacing: -.04em; }
.document-preview small { font-weight: 800; }
.download-copy { padding: 52px; align-self: center; }
.download-copy h2 { margin: 0 0 19px; font-size: 32px; letter-spacing: -.04em; }
.download-copy > p:not(.eyebrow) { color: var(--slate-500); line-height: 1.8; }
.download-meta { display: flex; gap: 8px; margin: 24px 0; }
.download-meta span { padding: 7px 10px; background: var(--slate-100); color: var(--slate-500); font-size: 11px; font-weight: 700; }
.download-notice { display: grid; grid-template-columns: 140px 1fr; gap: 30px; margin-top: 28px; padding: 24px; border-top: 1px solid var(--slate-300); color: var(--slate-500); font-size: 12px; line-height: 1.7; }
.download-notice p { margin: 0; }

.site-footer { background: #04140d; color: white; }
.footer-inner { width: min(1180px, calc(100% - 40px)); margin: 0 auto; display: flex; justify-content: space-between; gap: 50px; padding: 48px 0; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-mark { width: 50px; height: 50px; display:grid; place-items:center; overflow:hidden; border-radius:10px; background:white; box-shadow:0 8px 20px rgba(0,0,0,.18); }
.footer-mark img { width:100%; height:100%; object-fit:cover; }
.footer-brand strong { font-size: 17px; }
.footer-brand p { margin: 7px 0 0; color: #8292a6; font-size: 11px; }
.footer-meta { color: #8292a6; font-size: 11px; text-align: right; line-height: 1.75; }
.footer-meta p { margin: 0; }

/* Card category labels use one readable scale throughout the site. */
.feature-card > .eyebrow,
.simple-link-card > .eyebrow,
.statement-card > .eyebrow,
.product-card > .product-code,
.hp-product-list article p,
.service-grid article > span,
.plan-grid article > span,
.team-responsibility article > span,
.document-preview > span,
.download-copy > .eyebrow,
.reference-summary strong {
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: .08em;
}

.product-card > .product-code {
  font-size: 20px;
}

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .desktop-support { margin-left: auto; }
  .menu-button { display: block; margin-left: 0; }
  .mobile-nav { display: grid; grid-template-columns: repeat(4, 1fr); max-height: 0; overflow: hidden; opacity: 0; padding: 0 20px; background: white; transition: max-height .25s ease, opacity .2s ease, padding .25s ease; }
  .mobile-nav.open { max-height: 420px; opacity: 1; padding-top: 15px; padding-bottom: 20px; border-top: 1px solid var(--slate-200); }
  .mobile-nav a { padding: 13px 12px; border-bottom: 1px solid var(--slate-200); color: var(--slate-700); font-size: 13px; font-weight: 700; }
  .mobile-nav a.active { color: var(--blue-600); }
  .mobile-nav .mobile-support { grid-column: span 4; margin-top: 10px; border: 0; background: var(--blue-600); color: white; text-align: center; }
  .home-hero-inner { grid-template-columns: 1fr .58fr; gap: 45px; }
  .hero-copy h1 { font-size: 42px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 680px); }
  .desktop-support { display: none; }
  .nav-wrap { width: calc(100% - 32px); min-height: 70px; }
  .mobile-nav { grid-template-columns: repeat(2, 1fr); }
  .mobile-nav .mobile-support { grid-column: span 2; }
  .home-hero { min-height: auto; }
  .home-hero-inner { grid-template-columns: 1fr; padding: 78px 0; }
  .hero-panel { display: none; }
  .hero-copy h1 { font-size: clamp(36px, 7vw, 42px); }
  .hero-description { font-size: 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid article, .stats-grid article:last-child { min-height: 110px; border-right: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); padding: 22px; }
  .section { padding-top: 76px; padding-bottom: 76px; }
  .section-heading.split, .vision-grid, .product-intro, .maintenance-intro, .checklist-grid, .company-grid, .cert-strip, .team-responsibility { grid-template-columns: 1fr; gap: 36px; }
  .feature-grid.two, .hp-product-list, .plan-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 340px; padding: 34px; }
  .text-link { left: 34px; }
  .inquiry-banner { align-items: flex-start; flex-direction: column; padding: 44px 34px; }
  .inquiry-actions { width: 100%; flex-direction: row; }
  .inquiry-actions .button { flex: 1; }
  .page-hero { min-height: 320px; }
  .page-hero-inner > p:last-child { font-size: 16px; }
  .product-grid { grid-template-columns: 1fr; }
  .brand-heading { grid-template-columns: 90px 1fr; }
  .brand-symbol { width: 86px; height: 62px; }
  .brand-symbol.hp { width: 68px; height: 68px; }
  .hp-product-list article:nth-child(odd) { border-right: 0; }
  .hp-product-list article:nth-child(even) { padding-left: 0; }
  .process-grid, .response-flow, .value-grid, .reference-summary { grid-template-columns: repeat(2, 1fr); }
  .process-grid article:nth-child(2) { border-right: 1px solid var(--slate-200); }
  .process-grid article:nth-child(3), .process-grid article:nth-child(4) { border-top: 0; }
  .process-grid article::after { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .response-flow::before { display: none; }
  .business-list article { grid-template-columns: 55px 1fr; }
  .business-list ul { grid-column: 2; }
  .project-row { grid-template-columns: 60px 1fr 1.3fr; }
  .project-row > span:last-child { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-grid article { min-height:490px; }
  .download-card { grid-template-columns: 250px 1fr; }
  .download-copy { padding: 34px; }
  .footer-inner { width: calc(100% - 32px); flex-direction: column; }
  .footer-meta { text-align: left; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 28px); }
  .brand { min-width: 0; }
  .brand small { display: none; }
  .home-hero-inner { padding: 60px 0 70px; }
  .hero-copy h1 { font-size: 34px; line-height: 1.24; }
  .hero-description { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .section { padding-top: 62px; padding-bottom: 62px; }
  .section-heading h2, .brand-heading h2, .maintenance-intro h2, .company-message h2, .checklist-heading h2 { font-size: 31px; }
  .feature-card { min-height: 380px; padding: 29px; }
  .feature-card h3 { font-size: 26px; }
  .text-link { left: 29px; bottom: 30px; }
  .banner-wrap { padding-top: 60px; padding-bottom: 60px; }
  .inquiry-banner { padding: 38px 25px; }
  .inquiry-banner h2 { font-size: 27px; }
  .inquiry-actions { flex-direction: column; }
  .page-hero { min-height: 300px; }
  .page-hero h1 { font-size: 43px; }
  .statement-card { padding: 32px 26px; }
  .statement-card h2 { font-size: 31px; }
  .brand-heading { grid-template-columns: 1fr; }
  .brand-symbol.hp { margin-left: 0; }
  .hp-product-list article { grid-template-columns: 1fr; }
  .process-grid, .service-grid, .response-flow, .value-grid, .reference-summary, .team-grid { grid-template-columns: 1fr; }
  .process-grid article, .process-grid article:nth-child(2) { border-right: 1px solid var(--slate-200); border-top: 0; }
  .process-grid article:first-child { border-top: 1px solid var(--slate-200); }
  .service-grid article { min-height: 220px; }
  .checklist-heading { position: static; }
  .business-list article { grid-template-columns: 1fr; gap: 14px; }
  .business-list ul { grid-column: auto; grid-template-columns: 1fr; margin-top: 9px; }
  .company-facts > div { grid-template-columns: 1fr; gap: 7px; }
  .reference-summary article { border-right: 0; border-bottom: 1px solid var(--slate-200); }
  .project-table { overflow-x: auto; }
  .project-row { min-width: 650px; grid-template-columns: 60px 1fr 1.2fr 1.1fr; }
  .project-row > span:last-child { display: block; }
  .cert-strip { padding: 30px; }
  .download-card { grid-template-columns: 1fr; }
  .document-preview { min-height: 290px; }
  .download-copy { padding: 32px 25px; }
  .download-notice { grid-template-columns: 1fr; gap: 8px; }
  .footer-inner { width: calc(100% - 28px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

.menu-button { cursor: pointer; }
