﻿:root {
  --ink: #07172f;
  --ink-soft: #21324a;
  --muted: #657186;
  --line: #dce5e5;
  --paper: #f6f9f8;
  --white: #ffffff;
  --green: #008b5a;
  --green-dark: #0f3b2f;
  --blue: #053e65;
  --aqua: #e8f6f2;
  --gold: #b77733;
  --orange: #f26b21;
  --shadow: 0 24px 70px rgba(5, 30, 50, 0.12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.75;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 940px;
  margin-bottom: 22px;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.04;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.14;
  letter-spacing: 0;
}
h3 { margin-bottom: 8px; font-size: 18px; line-height: 1.4; }
p { color: var(--muted); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(220, 229, 229, 0.78);
  backdrop-filter: blur(18px);
}
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(7, 23, 47, 0.07); }
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: 280px; }
.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 9px solid var(--green);
  border-radius: 50%;
}
.brand-mark::before, .brand-mark::after {
  position: absolute;
  inset: -9px;
  content: "";
  border-radius: 50%;
  border: 9px solid transparent;
}
.brand-mark::before { border-top-color: #65c995; transform: rotate(35deg); }
.brand-mark::after { border-left-color: #d9efe8; transform: rotate(-20deg); }
.brand-text strong, .brand-text small { display: block; }
.brand-text strong { font-size: 18px; line-height: 1.1; letter-spacing: 0; }
.brand-text small {
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}
.site-nav { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 700; }
.site-nav a { padding: 8px 0; color: var(--ink-soft); }
.nav-cta {
  min-width: 118px;
  padding: 11px 18px !important;
  color: var(--white) !important;
  text-align: center;
  background: linear-gradient(135deg, var(--green), #007a50);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(0, 139, 90, 0.22);
}
.nav-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(410px, .86fr) minmax(520px, 1.14fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  min-height: 720px;
  padding: 118px clamp(22px, 5vw, 76px) 46px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(232, 246, 242, .82), rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 67% 45%, rgba(0, 139, 90, .08), transparent 36%),
    var(--white);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  position: absolute;
  inset: 76px auto 0 0;
  width: 1px;
  content: "";
  background: linear-gradient(var(--line), rgba(0, 139, 90, .35), var(--line));
}
.hero-side-label {
  position: absolute;
  left: 34px;
  top: 246px;
  color: var(--green);
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: clamp(18px, 3vw, 34px);
}
.hero-copy .lead {
  max-width: 590px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.35vw, 19px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 34px;
}
.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}
.button::after { content: ">"; font-family: Inter, sans-serif; }
.button.primary { color: var(--white); background: linear-gradient(135deg, var(--green), #007b51); box-shadow: 0 18px 36px rgba(0, 139, 90, 0.22); }
.button.secondary { color: var(--blue); background: var(--white); border-color: #b8c7ce; }
.metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  padding: 0;
}
.metrics div {
  display: grid;
  gap: 4px;
  min-height: 76px;
  align-content: center;
  padding: 14px 18px;
  background: rgba(255,255,255,.74);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.metrics div:last-child { border-right: 1px solid var(--line); }
.metrics span {
  color: var(--blue);
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 800;
  white-space: nowrap;
}
.metrics small { color: var(--muted); font-weight: 700; }
.hero-visual-card {
  position: relative;
  z-index: 1;
  min-height: 520px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(220, 229, 229, .88);
  border-radius: 30px 8px 30px 8px;
  box-shadow: 0 30px 80px rgba(7, 23, 47, .13);
}
.hero-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.visual-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 330px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(220, 229, 229, .95);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(7, 23, 47, .12);
}
.visual-badge span {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.visual-badge strong { display: block; color: var(--ink); line-height: 1.55; }

.section { padding: clamp(72px, 9vw, 124px) clamp(22px, 5vw, 76px); }
.section-kicker { max-width: 760px; margin-bottom: 36px; }
.intro { background: linear-gradient(180deg, #fff, var(--paper)); }
.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.quality-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(7, 23, 47, 0.05);
}
.quality-grid img { width: 100%; height: 220px; object-fit: cover; }
.quality-grid span, .quality-grid h3, .quality-grid p { margin-inline: 26px; }
.quality-grid span {
  display: block;
  margin-top: 24px;
  color: var(--green);
  font-family: Inter, sans-serif;
  font-weight: 800;
}
.quality-grid p { margin-bottom: 28px; }

.service-hub {
  display: grid;
  grid-template-columns: minmax(170px, .2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 30px clamp(22px, 5vw, 76px);
  background: linear-gradient(180deg, #f8fbfa, #fff);
  border-block: 1px solid var(--line);
}
.service-title {
  display: grid;
  align-content: center;
  min-height: 190px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.service-title h2 { margin-bottom: 0; font-size: clamp(25px, 2.6vw, 36px); }
.service-routes {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr .85fr;
  gap: 14px;
}
.route-card {
  position: relative;
  display: block;
  min-height: 205px;
  overflow: hidden;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.route-card.personal,
.route-card.business { padding-right: 44%; }
.route-card + .route-card { margin-left: 0; }
.route-card.data {
  display: grid;
  grid-template-columns: 1fr;
  padding-bottom: 82px;
  background: linear-gradient(135deg, #fff7f2, #fff);
}
.route-card div { position: relative; z-index: 1; display: grid; align-content: end; min-height: 134px; }
.route-card span {
  margin-bottom: 10px;
  color: var(--green);
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.route-card strong { color: var(--ink); font-size: 20px; line-height: 1.35; }
.route-card small { max-width: 260px; margin-top: 10px; color: var(--muted); font-weight: 700; line-height: 1.65; }
.route-card img {
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  object-fit: cover;
}
.route-card.data::after {
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: 120px;
  height: 48px;
  content: "Data Care";
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: var(--radius);
  font-family: Inter, sans-serif;
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: 1.25fr repeat(5, 1fr);
  gap: 0;
  padding: 24px clamp(22px, 5vw, 76px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.trust-strip > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  min-height: 82px;
  align-content: center;
  align-items: center;
  padding: 0 22px;
  border-left: 1px solid var(--line);
}
.trust-strip > div:not(.strip-heading) span,
.trust-strip > div:not(.strip-heading) strong { grid-column: 2; }
.trust-strip i {
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  color: var(--blue);
  stroke-width: 1.7;
}
.trust-strip > div:first-child { border-left: 0; }
.trust-strip span { color: var(--muted); font-size: 12px; font-weight: 700; }
.trust-strip strong { color: var(--blue); font-size: 16px; }
.strip-heading {
  grid-template-columns: 1fr !important;
}
.strip-heading span {
  display: block;
  color: var(--gold);
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}
.strip-heading strong { display: block; margin-top: 10px; font-size: 20px; line-height: 1.35; }

.system-board {
  padding: clamp(72px, 8vw, 116px) clamp(22px, 5vw, 76px);
  background: linear-gradient(180deg, #fff, #f8fbfa);
  border-bottom: 1px solid var(--line);
}
.board-heading {
  display: grid;
  grid-template-columns: minmax(280px, .55fr) minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}
.board-heading h2 { max-width: 760px; margin-bottom: 0; }
.process-lane {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.process-lane article {
  min-height: 174px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}
.process-lane article:last-child { border-right: 0; }
.process-lane span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 26px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 50%;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
}
.process-lane strong { display: block; color: var(--ink); font-size: 20px; }
.process-lane small { display: block; margin-top: 8px; color: var(--muted); font-weight: 700; line-height: 1.6; }
.quality-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.quality-panels figure {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.quality-panels figure > div {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.quality-panels img { width: 100%; height: 100%; object-fit: cover; }
.quality-panels figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: var(--green);
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: Inter, sans-serif;
  font-weight: 800;
}
.quality-panels p {
  margin: 0;
  padding: 18px 20px 20px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.solution-grid {
  display: grid;
  grid-template-columns: minmax(280px, .45fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(72px, 8vw, 116px) clamp(22px, 5vw, 76px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.solution-title { max-width: 520px; }
.solution-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.solution-links a {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.solution-links a::after { content: ">"; color: var(--green); font-family: Inter, sans-serif; font-weight: 800; }
.solution-links span { color: var(--green); font-family: Inter, sans-serif; font-size: 12px; font-weight: 800; }
.solution-links strong { color: var(--blue); font-size: 16px; }
.solution-links .recovery-cta {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, .28fr) minmax(240px, .38fr) minmax(0, 1fr);
  min-height: 118px;
  align-items: center;
  padding: 26px 34px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 139, 90, .38), transparent 34%),
    linear-gradient(135deg, #053e65, #07172f);
  border-color: rgba(0, 139, 90, .35);
  box-shadow: 0 24px 54px rgba(7, 23, 47, .16);
}
.solution-links .recovery-cta::before {
  content: "!";
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-family: Inter, sans-serif;
  font-weight: 900;
}
.solution-links .recovery-cta::after { color: var(--white); }
.solution-links .recovery-cta span {
  color: #d7efe8;
  font-size: 12px;
  text-transform: uppercase;
}
.solution-links .recovery-cta strong { color: var(--white); font-size: clamp(22px, 2vw, 30px); }
.solution-links .recovery-cta small {
  color: #d7e3ec;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px clamp(22px, 5vw, 76px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.detail-panel {
  min-height: 330px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.business-panel {
  background:
    linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.56)),
    url("./assets/business-consultation-bright.png") center right / cover;
}
.warranty-panel { background: linear-gradient(135deg, #053e65, #07172f); color: var(--white); }
.warranty-panel p, .warranty-panel .eyebrow { color: #c7d5df; }
.recycle-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, .65fr) minmax(220px, .35fr);
  gap: 24px;
  align-items: end;
  background: linear-gradient(135deg, #fff7f2, #f8fbfa);
}
.mini-list { display: grid; gap: 14px; margin-top: 22px; }
.mini-list span {
  display: block;
  padding: 14px 0;
  color: #dbe8ef;
  border-top: 1px solid rgba(255,255,255,.16);
}
.mini-list strong { color: var(--white); margin-right: 12px; }
.data-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-width: 190px;
  padding: 14px 22px;
  color: var(--white);
  background: var(--orange);
  border-radius: var(--radius);
  font-family: Inter, sans-serif;
  font-weight: 800;
}

.knowledge-company {
  display: grid;
  grid-template-columns: minmax(300px, .52fr) minmax(0, 1fr);
  gap: 14px;
  padding: 18px clamp(22px, 5vw, 76px) clamp(72px, 8vw, 116px);
  background: var(--white);
}
.knowledge-panel, .company-panel {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.knowledge-panel { background: var(--paper); }
.knowledge-panel a {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.knowledge-panel span { color: var(--gold); font-family: Inter, sans-serif; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.knowledge-panel strong { color: var(--blue); }
.company-panel dl { margin: 0; }
.company-panel dl div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.company-panel dt { color: var(--muted); font-size: 13px; font-weight: 800; }
.company-panel dd { margin: 0; color: var(--ink); font-weight: 800; }

.flow { background: var(--white); }
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.flow-steps article { min-height: 210px; padding: 30px; background: var(--white); border-right: 1px solid var(--line); }
.flow-steps article:last-child { border-right: 0; }
.flow-steps span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 50%;
  font-family: Inter, sans-serif;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.45fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  background: var(--paper);
}
.split-section > div:first-child { max-width: 520px; }
.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green);
  font-weight: 800;
  border-bottom: 2px solid currentColor;
}
.symptom-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.symptom-grid a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}
.symptom-grid a::after { content: ">"; color: var(--green); font-family: Inter, sans-serif; }

.feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.feature img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.check-list { margin: 22px 0 28px; padding: 0; list-style: none; }
.check-list li {
  position: relative;
  padding: 9px 0 9px 28px;
  color: var(--ink-soft);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "鉁?;
  font-weight: 900;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  background: #f9fbfb;
}
.panel {
  min-height: 430px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius);
}
.panel.dark { color: var(--white); background: linear-gradient(135deg, var(--blue), #07243a); }
.panel.dark p { color: #c7d5df; }
.warranty-list { display: grid; gap: 14px; }
.warranty-list article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.recycle {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, #f5fbf8, #fff7f2);
}
.recycle-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.recycle-cards article {
  min-height: 180px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 139, 90, 0.18);
  border-radius: var(--radius);
}
.recycle-cards strong { display: block; color: var(--green); font-family: Inter, sans-serif; font-size: 18px; }
.recycle-cards span { display: block; margin-top: 48px; color: var(--ink-soft); font-weight: 800; }

.news-faq {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 18px;
  background: var(--white);
}
.faq-column, .news-column {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
details:last-child { border-bottom: 0; }
summary { color: var(--ink); font-weight: 800; cursor: pointer; }
details p { margin: 12px 0 0; }
.news-column { background: var(--paper); }
.news-column a {
  display: grid;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.news-column a:last-child { border-bottom: 0; }
.news-column span { color: var(--gold); font-family: Inter, sans-serif; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.news-column strong { color: var(--blue); font-size: 17px; }

.company {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  background: var(--paper);
}
.company-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.company-grid div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.company-grid span { color: var(--muted); font-size: 13px; font-weight: 800; }
.company-grid strong { color: var(--ink); font-size: 15px; }

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), #061d32);
}
.contact p { color: #c7d5df; }
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}
.contact-form label { display: grid; gap: 7px; color: var(--ink-soft); font-size: 13px; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8fafb;
  border: 1px solid #d8e2e5;
  border-radius: var(--radius);
  font: inherit;
}
.contact-form textarea { resize: vertical; }
.order-field[hidden], [data-quantity-field][hidden], .hidden { display: none; }
.order-field span { color: var(--muted); font-size: 12px; font-weight: 700; }
.form-status { margin: 0; padding: 14px 16px; border-radius: var(--radius); font-size: 13px; font-weight: 800; line-height: 1.7; }
.form-status.is-success { color: #123f31; background: #e8f4ef; border: 1px solid #b9d7ca; }
.form-status.is-error { color: #5c1c1c; background: #fff1ef; border: 1px solid #efc5bf; }
.full { grid-column: 1 / -1; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(22px, 5vw, 76px);
  color: #c7d5df;
  background: #06111f;
}
.site-footer strong, .site-footer a { color: var(--white); }
.site-footer p { margin: 4px 0 0; }
.site-footer a { font-weight: 800; }

.support-page { min-height: 100vh; padding: clamp(28px, 5vw, 72px); background: var(--paper); }
.breadcrumb { display: inline-flex; margin-bottom: 34px; color: var(--green); font-weight: 800; }
.support-hero { max-width: 980px; margin-bottom: 42px; }
.support-hero h1 { max-width: 900px; font-size: clamp(40px, 6vw, 72px); }
.support-hero p { max-width: 780px; color: var(--muted); font-size: 18px; }
.support-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 380px); gap: 18px; align-items: start; max-width: 1180px; }
.support-article, .support-aside { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.support-article { padding: clamp(26px, 4vw, 44px); }
.support-article h2, .support-aside h2 { font-size: 22px; }
.support-article h2:not(:first-child) { margin-top: 36px; }
.support-article p, .support-article li, .support-aside p { color: var(--muted); }
.support-article ol { margin: 0; padding-left: 1.35em; }
.support-article li + li { margin-top: 10px; }
.support-aside { position: sticky; top: 100px; padding: 26px; }
.support-aside .button { width: 100%; margin-top: 12px; }
.support-article figure {
  margin: 24px 0;
  overflow: hidden;
  background: #f8fbfa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.support-image { width: 100%; max-height: 420px; object-fit: contain; background: var(--white); }
.support-article figcaption { padding: 14px 18px; color: var(--muted); font-size: 13px; font-weight: 700; }
.support-warning, .support-note {
  padding: 16px 18px;
  color: var(--ink-soft);
  background: #fff7f2;
  border: 1px solid #f3d3bd;
  border-radius: var(--radius);
  font-weight: 700;
}
.support-note { background: #f1f8f5; border-color: #c9e4d9; }
.support-steps {
  counter-reset: step;
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.support-steps li {
  position: relative;
  padding: 16px 16px 16px 58px;
  color: var(--muted);
  background: #f8fbfa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.support-steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 18px;
  color: var(--green);
  font-family: Inter, sans-serif;
  font-weight: 900;
}
.support-steps strong { display: block; margin-bottom: 4px; color: var(--ink); }
.support-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}
.support-mini-card {
  padding: 18px;
  background: #f8fbfa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.support-mini-card h3 { font-size: 17px; }

@media (max-width: 1120px) {
  .hero, .service-hub, .split-section, .feature, .two-column, .recycle, .news-faq, .company, .contact,
  .board-heading, .solution-grid, .service-detail-grid, .recycle-panel, .knowledge-company {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-side-label { display: none; }
  .hero-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-title { min-height: auto; padding-right: 0; border-right: 0; }
  .service-routes { grid-template-columns: 1fr; gap: 12px; }
  .route-card { clip-path: none; }
  .route-card + .route-card { margin-left: 0; }
  .trust-strip, .process-lane, .quality-panels { grid-template-columns: repeat(2, 1fr); }
  .process-lane article:nth-child(2n) { border-right: 0; }
  .process-lane article { border-bottom: 1px solid var(--line); }
  .process-lane article:last-child { border-bottom: 0; }
  .flow-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow-steps article:nth-child(2) { border-right: 0; }
  .flow-steps article { border-bottom: 1px solid var(--line); }
  .flow-steps article:nth-child(n+3) { border-bottom: 0; }
}

@media (max-width: 820px) {
  .brand { min-width: 0; }
  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }
  .nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); }
  .site-nav {
    position: fixed;
    top: 78px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px; }
  .nav-cta { text-align: center; }
  .metrics, .quality-grid, .symptom-grid, .recycle-cards, .company-grid, .trust-strip,
  .process-lane, .quality-panels, .solution-links { grid-template-columns: 1fr; }
  .metrics div, .metrics div:last-child { border-right: 0; border-left: 0; border-top: 1px solid var(--line); }
  .trust-strip > div { border-left: 0; border-top: 1px solid var(--line); }
  .process-lane article, .process-lane article:nth-child(2n) { border-right: 0; }
  .hero-visual-card, .hero-visual-card img { min-height: 360px; }
  .flow-steps { grid-template-columns: 1fr; }
  .flow-steps article { border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .flow-steps article:last-child { border-bottom: 0 !important; }
  .support-layout { grid-template-columns: 1fr; }
  .support-aside { position: static; }
}

@media (max-width: 620px) {
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  .brand-text small { display: none; }
  .hero { padding-top: 98px; }
  .hero-copy { padding-left: 0; }
  .hero-visual-card, .hero-visual-card img { min-height: 260px; }
  .visual-badge { position: static; max-width: none; border-width: 1px 0 0; border-radius: 0; box-shadow: none; }
  .route-card { grid-template-columns: 1fr; min-height: 210px; }
  .route-card img { position: static; width: 100%; height: 150px; margin-top: 18px; border-radius: var(--radius); }
  .hero-actions, .service-routes, .contact-form, .company-grid div { grid-template-columns: 1fr; }
  .company-panel dl div { grid-template-columns: 1fr; gap: 4px; }
  .data-button { justify-self: stretch; }
  .button { width: 100%; }
  .site-footer { display: block; }
  .site-footer a { display: inline-flex; margin-top: 14px; }
}
