@charset "UTF-8";

/* ============================================================
   シンオン株式会社 コーポレートサイト
   デザイントークンは design/drafts/*.png のドラフトに準拠
   ============================================================ */

:root {
  --navy-900: #101a3c;
  --navy-800: #16224a;
  --navy-700: #1c2f6e;
  --blue-600: #2547d0;
  --blue-500: #3358e0;
  --blue-050: #eef1f8;
  --blue-100: #dce4f7;

  --ink: #16203a;
  --ink-sub: #5a6478;
  --ink-mute: #8a93a6;
  --line: #e3e7ef;
  --bg: #ffffff;
  --bg-alt: #f6f7fa;

  --warn-bg: #fdf1ee;
  --warn-line: #eebfb1;

  --radius: 10px;
  --shadow-card: 0 1px 3px rgba(16, 26, 60, .06), 0 8px 24px rgba(16, 26, 60, .05);
  --wrap: 1120px;
  --header-h: 72px;

  --font: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic",
          Meiryo, system-ui, sans-serif;
  --font-en: "Helvetica Neue", Arial, var(--font);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.9;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 3px solid var(--blue-600); outline-offset: 2px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 24px;
  height: var(--header-h);
}
/* 「SYNON」と「シンオン株式会社」は文字サイズが違うのでベースラインで揃える。
   ロゴマークだけは align-self で中央に置く。 */
.brand { display: flex; align-items: baseline; gap: 10px; flex: none; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 34px; height: 34px; flex: none; align-self: center;
  border-radius: 7px; object-fit: cover;
}
.brand .logo {
  font-family: var(--font-en);
  font-size: 25px; font-weight: 700; letter-spacing: .12em;
  color: var(--navy-900);
}
.brand .logo-ja { font-size: 12px; color: var(--ink-sub); letter-spacing: .04em; }

.gnav { margin-left: auto; }
.gnav ul { display: flex; gap: 28px; align-items: center; }
.gnav .mobile-cta { display: none; }
.gnav a {
  color: var(--ink); font-size: 14px; font-weight: 600;
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.gnav a:hover { color: var(--blue-600); text-decoration: none; border-bottom-color: var(--blue-600); }
.gnav a[aria-current="page"] { color: var(--blue-600); border-bottom-color: var(--blue-600); }

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 8px; background: #fff; cursor: pointer;
  align-items: center; justify-content: center; gap: 4px; flex-direction: column;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy-900); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 6px;
  font-size: 15px; font-weight: 700; line-height: 1.4;
  border: 1px solid transparent; cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { text-decoration: none; }
.btn::after { content: "›"; font-size: 18px; line-height: 1; }
.btn-primary { background: var(--blue-600); color: #fff; }
.btn-primary:hover { background: var(--blue-500); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); }
.btn-outline { background: #fff; color: var(--blue-600); border-color: var(--blue-100); }
.btn-outline:hover { border-color: var(--blue-600); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.header-cta { flex: none; }

.link-arrow { font-weight: 700; font-size: 14.5px; display: inline-flex; gap: 8px; align-items: center; }
.link-arrow::after { content: "→"; }

/* ---------- Section basics ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head.left { text-align: left; }
.eyebrow {
  display: block; font-family: var(--font-en);
  font-size: 13px; font-weight: 700; letter-spacing: .18em;
  color: var(--blue-600); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(24px, 3.4vw, 32px); font-weight: 700;
  letter-spacing: .04em; line-height: 1.45;
}
.section-lead { margin-top: 14px; color: var(--ink-sub); font-size: 16px; }
.section-title + .rule { width: 40px; height: 3px; background: var(--blue-600); margin: 18px auto 0; }
.section-head.left .rule { margin-inline: 0; }

/* ---------- Hero (top) ---------- */
.hero { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--navy-900) 32%, rgba(16, 26, 60, .82) 52%, rgba(16, 26, 60, .35) 100%);
}
.hero .wrap { position: relative; padding-block: 116px; }
.hero-inner { max-width: 640px; }
.hero h1 {
  font-size: clamp(32px, 5.4vw, 54px); font-weight: 700;
  letter-spacing: .02em; line-height: 1.3;
}
.hero p { margin-top: 20px; font-size: clamp(15px, 2vw, 18px); color: #d7ddf0; }
.hero .btn { margin-top: 34px; }

/* ---------- Page hero (lower pages) ---------- */
.page-hero { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.page-hero .wrap { position: relative; padding-block: 68px; }
.page-hero .eyebrow { color: #8fa6f0; }
.page-hero h1 { font-size: clamp(26px, 4vw, 40px); font-weight: 700; letter-spacing: .04em; line-height: 1.35; }
.page-hero p { margin-top: 16px; color: #cbd4ee; max-width: 760px; }
.page-hero.with-media .hero-media img { object-position: center; }
.page-hero.with-media .hero-media::after {
  background: linear-gradient(95deg, var(--navy-900) 42%, rgba(16, 26, 60, .78) 62%, rgba(16, 26, 60, .3) 100%);
}
.page-hero-big {
  font-family: var(--font-en); font-size: clamp(56px, 11vw, 116px);
  font-weight: 700; letter-spacing: .02em; line-height: 1; color: #fff;
}

/* breadcrumb */
.breadcrumb { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 0; font-size: 12.5px; color: var(--ink-sub); }
.breadcrumb li + li::before { content: "›"; margin-right: 8px; color: var(--ink-mute); }
.breadcrumb a { color: var(--ink-sub); }

/* ---------- FDE band on top page ---------- */
.fde-band { background: var(--navy-800); color: #fff; }
.fde-band .wrap {
  padding-block: 40px; display: flex; align-items: center;
  gap: 32px; flex-wrap: wrap;
}
.fde-band .body { flex: 1 1 460px; border-left: 4px solid var(--blue-600); padding-left: 22px; }
.fde-band h2 { font-size: clamp(19px, 2.6vw, 26px); font-weight: 700; letter-spacing: .04em; }
.fde-band p { margin-top: 10px; color: #c3cdea; font-size: 14.5px; }
.fde-band .link-arrow { color: #fff; border-bottom: 1px solid rgba(255, 255, 255, .5); padding-bottom: 6px; }
.fde-band .link-arrow:hover { text-decoration: none; border-bottom-color: #fff; }

/* ---------- Stats ---------- */
.stats { background: var(--bg-alt); }
.stats .wrap { padding-block: 54px; }
.stats ul { display: grid; grid-template-columns: repeat(3, 1fr); }
.stats li { text-align: center; padding: 0 24px; }
.stats li + li { border-left: 1px solid var(--line); }
.stats .value {
  font-size: clamp(26px, 3.6vw, 40px); font-weight: 700;
  color: var(--blue-600); line-height: 1.25; letter-spacing: .02em;
}
.stats .label { font-weight: 700; font-size: 15px; margin-top: 2px; }
.stats .note { font-size: 13px; color: var(--ink-sub); margin-top: 8px; line-height: 1.7; }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.card h3 { font-size: 18px; font-weight: 700; letter-spacing: .03em; }
.card p { margin-top: 12px; font-size: 14.5px; color: var(--ink-sub); flex: 1; }
.card .link-arrow { margin-top: 18px; }
.card-featured { border-color: var(--blue-600); border-width: 2px; position: relative; }
.card-featured .badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue-600); color: #fff; font-size: 12px; font-weight: 700;
  padding: 3px 18px; border-radius: 99px; white-space: nowrap;
}
.card-num {
  font-family: var(--font-en); font-size: 30px; font-weight: 700;
  color: var(--blue-600); line-height: 1; margin-bottom: 12px;
}

/* icon square used in service cards */
.card-icon {
  width: 52px; height: 52px; border-radius: 8px; background: var(--blue-050);
  display: grid; place-items: center; margin-bottom: 16px;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--blue-600); fill: none; stroke-width: 1.7; }

/* ---------- Alternating feature rows ---------- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; padding-block: 56px;
}
.feature-row + .feature-row { border-top: 1px solid var(--line); }
.feature-row.reverse .feature-media { order: -1; }
.feature-media img { border-radius: var(--radius); width: 100%; }
.feature-body .num {
  font-family: var(--font-en); font-size: 40px; font-weight: 700;
  color: var(--blue-600); line-height: 1;
}
.feature-body h3 {
  font-size: clamp(20px, 2.6vw, 26px); font-weight: 700;
  letter-spacing: .04em; margin-top: 8px;
}
.feature-body h3 + .rule { width: 34px; height: 3px; background: var(--blue-600); margin-top: 16px; }
.feature-body p { margin-top: 18px; color: var(--ink-sub); font-size: 15px; }
.check-list { margin-top: 20px; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.check-list li::before {
  content: "✓"; flex: none; width: 19px; height: 19px; margin-top: 4px;
  border-radius: 50%; background: var(--blue-600); color: #fff;
  font-size: 11px; display: grid; place-items: center; font-weight: 700;
}
.feature-body .btn, .feature-body .link-arrow { margin-top: 24px; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { text-align: center; position: relative; padding: 0 8px; }
.step + .step::before {
  content: "›"; position: absolute; left: -14px; top: 4px;
  font-size: 26px; color: var(--blue-100); line-height: 1;
}
.step .n {
  font-family: var(--font-en); font-size: 30px; font-weight: 700;
  color: var(--blue-600); line-height: 1;
}
.step h3 { font-size: 16px; font-weight: 700; margin-top: 8px; }
.step p { margin-top: 12px; font-size: 13.5px; color: var(--ink-sub); line-height: 1.85; }

/* ---------- Tables ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.data {
  width: 100%; border-collapse: collapse; background: #fff;
  border: 1px solid var(--line); font-size: 14.5px; min-width: 640px;
}
table.data th, table.data td { padding: 14px 18px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
table.data thead th { background: var(--bg-alt); font-size: 13.5px; letter-spacing: .04em; white-space: nowrap; }
table.data tbody th { background: var(--bg-alt); font-weight: 700; white-space: nowrap; width: 150px; }
table.data .col-highlight { background: var(--blue-600); color: #fff; font-weight: 700; }
table.data td.col-highlight { background: var(--blue-050); color: var(--navy-700); }

/* profile table (company) */
table.profile { width: 100%; border-collapse: collapse; font-size: 15px; }
table.profile th, table.profile td { padding: 18px 4px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
table.profile th { width: 160px; font-weight: 700; color: var(--ink-sub); font-size: 14.5px; }

/* ---------- Pain cards ---------- */
.pain-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.pain {
  background: var(--warn-bg); border: 1px solid var(--warn-line);
  border-radius: var(--radius); padding: 24px;
}
.pain h3 { font-size: 15.5px; font-weight: 700; line-height: 1.7; }
.pain p { margin-top: 12px; font-size: 13.5px; color: var(--ink-sub); }
.pain-conclusion {
  margin-top: 34px; padding: 26px 30px; background: #fff;
  border-left: 4px solid var(--blue-600); border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-card); font-size: 15.5px;
}

/* ---------- Timeline ---------- */
.timeline { display: grid; gap: 0; }
.timeline li { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.timeline .date { font-weight: 700; color: var(--blue-600); font-size: 14.5px; }
.timeline .body { font-size: 15px; }

/* ---------- Value grid ---------- */
.value-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.value-card .en { font-family: var(--font-en); font-size: 13px; font-weight: 700; letter-spacing: .1em; color: var(--blue-600); }
.value-card h3 { font-size: 17px; font-weight: 700; margin-top: 6px; }
.value-card p { margin-top: 10px; font-size: 14px; color: var(--ink-sub); }

/* ---------- Security diagram ---------- */
.security-figure {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-card); overflow-x: auto;
}
.security-figure svg { display: block; margin-inline: auto; max-width: 100%; height: auto; min-width: 520px; }
.security-figure figcaption { margin-top: 16px; font-size: 13px; color: var(--ink-sub); text-align: center; }

/* ---------- News list ---------- */
.news-list { border-top: 1px solid var(--line); }
.news-list li { border-bottom: 1px solid var(--line); }
.news-list a {
  display: grid; grid-template-columns: 130px 110px 1fr auto; gap: 20px;
  align-items: center; padding: 20px 4px; color: var(--ink);
}
.news-list a:hover { text-decoration: none; background: var(--bg-alt); }
.news-list a:hover .title { color: var(--blue-600); }
.news-list .date { font-size: 13.5px; color: var(--ink-sub); font-variant-numeric: tabular-nums; }
.news-list .cat {
  font-size: 12px; font-weight: 700; text-align: center; padding: 3px 0;
  background: var(--blue-050); color: var(--navy-700); border-radius: 4px;
}
.news-list .title { font-size: 15.5px; font-weight: 600; }
.news-list .chev { color: var(--ink-mute); }

/* article */
.article { max-width: 780px; margin-inline: auto; }
.article .meta { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.article h1 { font-size: clamp(22px, 3.4vw, 30px); font-weight: 700; line-height: 1.5; }
.article .body { margin-top: 34px; display: grid; gap: 20px; font-size: 15.5px; }
.article .details { margin-top: 30px; }

/* ---------- Legal pages ---------- */
.legal { max-width: 860px; margin-inline: auto; }
.legal section + section { margin-top: 40px; }
.legal h2 { font-size: 18px; font-weight: 700; padding-left: 14px; border-left: 4px solid var(--blue-600); }
.legal ul { margin-top: 16px; display: grid; gap: 12px; }
.legal ul li { font-size: 14.5px; color: var(--ink-sub); padding-left: 18px; position: relative; }
.legal ul li::before { content: "・"; position: absolute; left: 0; color: var(--ink-mute); }
.legal ul.plain li { padding-left: 0; }
.legal ul.plain li::before { content: none; }
.legal .sub-list { margin-top: 16px; padding: 20px 24px; background: var(--bg-alt); border-radius: var(--radius); }
.legal .sub-list .label { font-weight: 700; font-size: 14px; }
.legal .signature { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 14px; color: var(--ink-sub); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.form-field { display: grid; gap: 8px; margin-bottom: 24px; }
.form-field label { font-weight: 700; font-size: 14.5px; }
.form-field .req { color: #c2452d; font-size: 12.5px; margin-left: 6px; }
.form-field input, .form-field textarea, .form-field select {
  font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 6px;
  background: #fff; width: 100%;
}
.form-field textarea { min-height: 190px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--blue-600); outline: none; box-shadow: 0 0 0 3px rgba(37, 71, 208, .12);
}
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin-bottom: 24px; }
.form-consent input { margin-top: 6px; flex: none; }
.contact-aside { background: var(--bg-alt); border-radius: var(--radius); padding: 30px; }
.contact-aside dl { display: grid; gap: 22px; }
.contact-aside dt { font-size: 13px; font-weight: 700; color: var(--ink-sub); letter-spacing: .06em; }
.contact-aside dd { font-size: 17px; font-weight: 700; margin-top: 4px; }
.contact-aside dd.small { font-size: 14.5px; font-weight: 400; line-height: 1.8; }
.form-note { font-size: 13.5px; color: var(--ink-sub); margin-top: 18px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--blue-600); color: #fff; border-radius: var(--radius); padding: 40px 44px; }
.cta-band .inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-band .body { flex: 1 1 420px; }
.cta-band h2 { font-size: clamp(19px, 2.6vw, 24px); font-weight: 700; letter-spacing: .03em; }
.cta-band p { margin-top: 10px; font-size: 14.5px; color: #d9e1fb; }
.cta-band .btn { background: #fff; color: var(--blue-600); }
.cta-band .btn:hover { background: #eef1f8; }
.cta-section { padding: 0 0 88px; }

/* ---------- Tag list ---------- */
.tag-cols { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.tag-col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; }
.tag-col h3 { font-size: 15.5px; font-weight: 700; color: var(--navy-700); padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.tag-col ul { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag-col li { font-size: 13px; background: var(--blue-050); color: var(--navy-700); padding: 4px 12px; border-radius: 99px; }

/* ---------- Work cases ---------- */
.case { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-card); }
.case .cat { font-size: 12.5px; font-weight: 700; color: var(--blue-600); }
.case h3 { font-size: 18px; font-weight: 700; margin-top: 8px; letter-spacing: .03em; }
.case p { margin-top: 14px; font-size: 14.5px; color: var(--ink-sub); }
.case .result { margin-top: 16px; padding: 14px 18px; background: var(--blue-050); border-radius: 6px; font-size: 14px; color: var(--navy-700); }
.case .items { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.case .items li { font-size: 12.5px; background: var(--bg-alt); border: 1px solid var(--line); padding: 3px 11px; border-radius: 4px; color: var(--ink-sub); }

/* ---------- Product list ---------- */
.product-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.product { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.product h4 { font-size: 16px; font-weight: 700; color: var(--navy-700); }
.product p { margin-top: 10px; font-size: 13.5px; color: var(--ink-sub); }

/* ---------- MCP notice ---------- */
.mcp-note {
  background: var(--navy-900); color: #fff; border-radius: var(--radius);
  padding: 32px 34px; display: grid; gap: 14px;
}
.mcp-note h3 { font-size: 18px; font-weight: 700; letter-spacing: .03em; }
.mcp-note p { font-size: 14.5px; color: #c3cdea; }
.mcp-note code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13.5px;
  background: rgba(255, 255, 255, .1); padding: 3px 9px; border-radius: 4px;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #fff; padding: 60px 0 28px; margin-top: 0; }
.site-footer .cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.site-footer .brand .logo { color: #fff; }
.site-footer .brand .logo-ja { color: #9fabcd; }
.site-footer .addr { margin-top: 18px; font-size: 13px; color: #9fabcd; line-height: 1.95; }
.site-footer h3 { font-size: 13px; font-weight: 700; letter-spacing: .08em; color: #fff; margin-bottom: 14px; }
.site-footer ul { display: grid; gap: 10px; }
.site-footer a { color: #c3cdea; font-size: 13.5px; }
.site-footer a:hover { color: #fff; }
.site-footer .bottom {
  margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 12.5px; color: #8e9ac0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .site-header .wrap { gap: 12px; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .gnav {
    position: fixed; inset: var(--header-h) 0 auto; background: #fff;
    border-bottom: 1px solid var(--line); padding: 8px 24px 24px;
    display: none; max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .gnav.open { display: block; }
  .gnav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .gnav li { border-bottom: 1px solid var(--line); }
  .gnav a { display: block; padding: 16px 0; font-size: 15px; border-bottom: none; }
  .gnav .mobile-cta { display: block; margin-top: 20px; border-bottom: none; }
  .gnav .mobile-cta .btn { width: 100%; justify-content: center; }

  .section { padding: 60px 0; }
  .hero .wrap { padding-block: 76px; }
  .hero-media img { object-position: 76% center; }
  .hero-media::after { background: linear-gradient(170deg, rgba(16, 26, 60, .95) 42%, rgba(16, 26, 60, .72) 100%); }

  .feature-row { grid-template-columns: 1fr; gap: 28px; padding-block: 40px; }
  .feature-row.reverse .feature-media { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .step + .step::before { display: none; }
  .stats ul { grid-template-columns: 1fr; gap: 28px; }
  .stats li { padding: 0; }
  .stats li + li { border-left: none; border-top: 1px solid var(--line); padding-top: 26px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .timeline li { grid-template-columns: 1fr; gap: 4px; }
  .news-list a { grid-template-columns: 1fr auto; gap: 6px 16px; padding: 18px 4px; }
  .news-list .date { grid-column: 1; }
  .news-list .cat { grid-column: 2; grid-row: 1; padding-inline: 12px; }
  .news-list .title { grid-column: 1 / -1; }
  .news-list .chev { display: none; }
  .cta-band { padding: 30px 26px; }
  .article .meta { flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .pain-grid, .card-grid, .value-grid, .product-grid, .tag-cols { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr; }
  .legal .sub-list { padding: 16px 18px; }
}

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

@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle { display: none; }
  body { font-size: 11pt; }
}
