/* ============================================================
   craft-01-shinrai
   信頼感コーポレート / 工務店
   navy #16324f / bg #f4f6f8 / white / accent #d9a44a
   ============================================================ */

:root {
  --navy: #16324f;
  /* --navy-deep は --navy から派生 → skin で --navy を差し替えると自動追従（取りこぼし防止） */
  --navy-deep: color-mix(in srgb, var(--navy) 78%, #05101f);
  --white: #ffffff;
  --bg: #f4f6f8;
  --ink: #1c2933;
  --ink-soft: #4c5c68;
  --accent: #d9a44a;
  --line: #d8dee3;
  --heading: "Noto Sans JP", sans-serif;
  --en: "Barlow Semi Condensed", sans-serif;
  --sans: "Noto Sans JP", sans-serif;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
}

.inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  background: var(--navy);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  transition: padding .4s cubic-bezier(0.19,1,0.22,1), background .4s ease, box-shadow .4s ease;
}

body.is-scrolled .site-header {
  padding: 11px 40px;
  background: color-mix(in srgb, var(--navy-deep) 96%, transparent);
  box-shadow: 0 1px 0 0 var(--accent), 0 10px 30px rgba(8, 20, 36, 0.28);
}

.header-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.header-logo-ja {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.04em;
}

.header-logo-en {
  font-family: var(--en);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  transition: color 0.25s ease;
}

.site-nav a:hover { color: var(--accent); }

.nav-cta a {
  font-family: var(--en);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: var(--accent);
  padding: 10px 22px;
  border-radius: 2px;
  transition: filter 0.25s ease;
}

.nav-cta a:hover { filter: brightness(1.08); }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  margin-top: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 紺のduotone: 写真をやや脱色→紺で焼き込み、全国ゼネコンの広報写真の格に */
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--navy);
  mix-blend-mode: multiply;
  opacity: 0.42;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(178deg,
    rgba(11, 26, 46, 0.28) 0%,
    rgba(11, 26, 46, 0.10) 38%,
    rgba(11, 26, 46, 0.66) 82%,
    rgba(11, 26, 46, 0.86) 100%);
}

.hero-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: linear-gradient(180deg, transparent, rgba(11, 26, 46, 0.55) 40%, var(--navy) 100%);
}

.hero-band-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 92px) 40px clamp(40px, 5vw, 60px);
  position: relative;
}

.hero-sub {
  display: inline-block;
  font-family: var(--en);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}

.hero-title {
  position: relative;
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(30px, 5.4vw, 60px);
  line-height: 1.42;
  color: var(--white);
  letter-spacing: 0.03em;
  max-width: 15em;
  padding-left: clamp(20px, 2.6vw, 34px);
}

/* 行頭の金茶の縦ライン */
.hero-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.24em;
  bottom: 0.24em;
  width: 4px;
  background: var(--accent);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: clamp(28px, 3.4vw, 40px);
  padding-left: clamp(20px, 2.6vw, 34px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 30px;
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border-radius: 2px;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--accent);
  color: var(--navy-deep);
}

.btn-primary:hover { filter: brightness(1.08); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
}

/* ---------- Stats band — 実績を主役に ---------- */
.stats {
  background: var(--navy-deep);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: clamp(48px, 6vw, 80px) 24px;
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 6px;
  padding: 4px clamp(24px, 3vw, 48px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-item:first-child { border-left: none; }

.stats-en {
  font-family: var(--en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.stats-num {
  font-family: var(--en);
  font-weight: 700;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.005em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.stats-num [data-counter] { color: inherit; }

.stats-label {
  margin-top: 12px;
  max-width: 15em;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.64);
  letter-spacing: 0.02em;
}

/* ---------- News ---------- */
.news {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.news-inner {
  display: flex;
  gap: 40px;
  padding: 28px 0;
}

.news-label {
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  padding-top: 2px;
}

.news-list { flex: 1; }

.news-list li {
  display: flex;
  gap: 20px;
  padding: 6px 0;
  font-size: 14px;
}

.news-list time {
  font-family: var(--en);
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}

/* ---------- Sections（共通） ---------- */
.section { padding: clamp(96px, 12vw, 140px) 0 0; }

.section-head { margin-bottom: clamp(44px, 5vw, 60px); max-width: 760px; }

/* 二段構え: 英字ラベル（小さく・letter-spacing広め）を見出しの上に添える */
.section-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-tag::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--navy);
}

/* ---------- Concept ---------- */
.concept { background: var(--white); }

.concept-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 96px;
}

.concept-para {
  color: var(--ink-soft);
  margin-bottom: 1.4em;
  font-size: 15px;
}

.license-box {
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--bg);
  border-left: 4px solid var(--accent);
  border-radius: 2px;
}

.license-label {
  display: block;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.license-text {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.concept-media {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.concept-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy);
  mix-blend-mode: multiply;
  opacity: 0.22;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.concept-media:hover::after { opacity: 0; }

.concept-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

/* ---------- Menu ---------- */
.menu { background: var(--bg); }

.menu-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.menu-group {
  background: var(--white);
  border-radius: 2px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.menu-category {
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  background: var(--navy);
  padding: 14px 22px;
}

.menu-items { padding: 6px 22px 10px; }

.menu-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item:last-child { border-bottom: none; }

.menu-item-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.menu-name { font-size: 15px; font-weight: 500; color: var(--ink); }

.menu-price {
  font-family: var(--en);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.menu-note {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--ink-soft);
}

.menu-foot {
  margin-top: 28px;
  padding-bottom: 96px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* ---------- Works ---------- */
.works { background: var(--white); }

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding-bottom: 96px;
}

.works-item {
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.3s ease;
}

.works-item:hover { border-color: var(--navy); }

.works-media {
  position: relative;
  overflow: hidden;
}

/* 平時は紺のオーバーレイで沈め、hoverで晴れる */
.works-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--navy);
  mix-blend-mode: multiply;
  opacity: 0.28;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.works-item:hover .works-media::after { opacity: 0; }

.works-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.works-item:hover .works-media img { transform: scale(1.06); }

.works-text {
  padding: 24px 26px 28px;
  background: var(--white);
  transition: background 0.3s ease;
}

.works-item:hover .works-text { background: var(--bg); }

.works-tag {
  display: inline-block;
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.works-title {
  font-family: var(--heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 8px;
}

.works-desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* ---------- People ---------- */
.people { background: var(--bg); }

.people-list {
  display: grid;
  gap: 56px;
  padding-bottom: 96px;
}

.people-item {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 32px;
}

/* 現場写真は長方形で。円形アバター/正方形は「顔前提」の証拠なので使わない */
.people-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.people-role {
  font-family: var(--en);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.people-name {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.people-bio {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.9;
}

/* ---------- Voices ---------- */
.voices { background: var(--white); }

.voices-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 96px;
}

.voices-item {
  background: var(--bg);
  border-top: 4px solid var(--accent);
  padding: 30px 26px;
  border-radius: 2px;
}

.voices-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink);
}

.voices-author {
  margin-top: 18px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
}

/* ---------- Flow ---------- */
.flow { background: var(--bg); }

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding-bottom: 96px;
}

.flow-item {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px 22px;
}

.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid var(--accent);
  z-index: 2;
}

.flow-step {
  display: inline-block;
  font-family: var(--en);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  background: var(--navy);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 2px;
  margin-bottom: 16px;
}

.flow-title {
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.flow-desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* ---------- FAQ ---------- */
.faq { background: var(--white); }

.faq-list {
  max-width: 780px;
  padding-bottom: 96px;
}

.faq-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.faq-q {
  display: flex;
  gap: 16px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
}

.faq-q::before {
  content: "Q";
  font-family: var(--en);
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.faq-a {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.9;
}

.faq-a::before {
  content: "A";
  font-family: var(--en);
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

/* ---------- Access ---------- */
.access { background: var(--bg); }

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 96px;
}

.access-info {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 8px 28px;
}

.access-info div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.access-info div:last-child { border-bottom: none; }

.access-info dt {
  font-weight: 700;
  color: var(--navy);
}

.access-info dd a { border-bottom: 1px solid var(--accent); }

.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 2px;
}

/* ---------- CTA ---------- */
.cta {
  margin-top: 0;
  background: var(--navy);
  border-top: 3px solid var(--accent);
}

.cta-inner {
  padding-top: 88px;
  padding-bottom: 88px;
  text-align: center;
}

.cta-tag {
  font-family: var(--en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.cta-title {
  font-family: var(--heading);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  margin: 16px 0 14px;
}

.cta-text {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-sns {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.cta-sns a {
  font-family: var(--en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 4px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.cta-sns a:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer {
  padding: 44px 24px 40px;
  text-align: center;
  background: var(--navy-deep);
}

.footer-logo {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}

.footer-logo span {
  display: block;
  font-family: var(--en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-top: 4px;
  text-transform: uppercase;
}

.footer-license {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-copy {
  margin-top: 14px;
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Demo bar ---------- */
.demo-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 20px;
  background: var(--navy-deep);
  color: var(--white);
  font-size: 12.5px;
  border-top: 2px solid var(--accent);
}

.demo-bar p { max-width: 900px; line-height: 1.6; }

.demo-bar .js-demo-close {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 2px;
  cursor: pointer;
}

.demo-bar .js-demo-close:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Skin（店舗別差別化 / TEMPLATE_SPEC §9） ---------- */
.u-alt-font .hero-title,
.u-alt-font .section-title,
.u-alt-font .works-title,
.u-alt-font .people-name,
.u-alt-font .flow-title,
.u-alt-font .cta-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

body.u-btn-square .btn, body.u-btn-square .nav-cta a { border-radius: 0; }
body.u-btn-round .btn, body.u-btn-round .nav-cta a { border-radius: 8px; }
body.u-btn-pill .btn, body.u-btn-pill .nav-cta a { border-radius: 999px; }

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .stats-inner { grid-template-columns: 1fr; gap: 32px; padding: 44px 24px; }
  .stats-item { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 28px 8px 0; }
  .stats-item:first-child { border-top: none; padding-top: 0; }
  .stats-num { font-size: clamp(56px, 20vw, 88px); }

  .concept-grid { grid-template-columns: 1fr; gap: 32px; }
  .menu-groups { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }
  .people-item { grid-template-columns: 1fr; padding: 24px; }
  .voices-list { grid-template-columns: 1fr; }
  .flow-list { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .flow-item::after { display: none; }
  .access-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  body { font-size: 15px; }

  .site-header { padding: 12px 20px; }
  .header-logo-ja { font-size: 15px; }

  .site-nav {
    position: fixed;
    inset: 0;
    top: 58px;
    background: var(--navy);
    display: grid;
    place-items: start center;
    padding-top: 60px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 28px;
  }

  .site-nav a { font-size: 16px; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 110;
  }

  .nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    margin: 0 auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .inner { padding: 0 18px; }
  .section { padding-top: 64px; }
  .section-head { margin-bottom: 32px; }

  .hero-band-inner { padding: 28px 18px 32px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }

  .concept-grid,
  .menu-foot,
  .works-grid,
  .people-list,
  .voices-list,
  .flow-list,
  .faq-list,
  .access-grid {
    padding-bottom: 64px;
  }

  .news-inner { flex-direction: column; gap: 10px; padding: 20px 0; }

  .flow-list { grid-template-columns: 1fr; }

  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-inner { padding-top: 64px; padding-bottom: 64px; }

  .demo-bar { flex-direction: column; gap: 8px; text-align: center; padding: 12px 16px 14px; }
}
