@charset "utf-8";

:root {
  --fluence-bg: #f2f2f2;
  --fluence-ink: #343434;
  --white: #ffffff;
  --pale: #f8f8f8;
  --line: #d7d7d7;
  --line-dark: #bdbdbd;
  --muted: #5f5f5f;
  --soft: #7a7a7a;
  --blue: #b8dbe8;
  --blue-2: #e6f2f6;
  --teal: #5e8f91;
  --amber: #c7975f;
  --radius: 4px;
  --wrap: 976px;
  --pad: 32px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background: var(--fluence-bg);
  color: var(--fluence-ink);
  font-family: "aktiv-grotesk", "FP-KoburinaGoStdN-W3", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 2.08;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1 0 auto;
}

h1, h2, h3, h4, p {
  margin: 0;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.keep {
  display: inline-block;
}

:focus-visible {
  outline: 1px solid var(--fluence-ink);
  outline-offset: 5px;
}

.wrap {
  width: min(100%, var(--wrap));
  margin: 0 auto;
  padding: 0 var(--pad);
}

.narrow {
  max-width: 812px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 86px;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  background: rgba(242, 242, 242, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #222222;
  text-decoration: none;
  white-space: nowrap;
}

.brand-main {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0;
}

.brand-sub {
  display: none;
}

.brand > span:not(.brand-main):not(.brand-sub) {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #222222;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.site-nav a {
  border-bottom: 1px solid transparent;
  padding: 0 0 6px;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-bottom-color: currentColor;
}

.site-nav a.pill {
  min-height: auto;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: #222222;
  font-size: 12px;
  font-weight: 600;
}

.site-nav a.pill:hover,
.site-nav a.pill:focus-visible,
.site-nav a.pill[aria-current="page"] {
  border-bottom-color: currentColor;
  background: transparent;
  color: #222222;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--fluence-ink);
  border-radius: 999px;
  background: var(--fluence-ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.pill:hover,
.pill:focus-visible {
  background: #222222;
  color: var(--white);
}

.pill.sm {
  min-height: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--fluence-ink);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.text-link::after {
  content: "";
  width: 46px;
  height: 1px;
  background: currentColor;
}

.floating-contact {
  position: fixed;
  right: 42px;
  bottom: 48px;
  z-index: 45;
  width: 46px;
  height: 112px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  color: var(--fluence-ink);
  display: grid;
  place-items: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb span::before {
  content: ">";
  margin-right: 11px;
  color: var(--soft);
}

.service-hero,
.top-hero,
.hero,
.sub-hero {
  position: relative;
  padding: 102px 0 86px;
  overflow: hidden;
}

.service-hero > .wrap,
.top-hero > .wrap,
.hero > .wrap,
.sub-hero > .wrap {
  position: relative;
  z-index: 1;
}

.service-hero::after,
.top-hero::after,
.hero::after,
.sub-hero::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -92px;
  height: 214px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .52);
  transform: rotate(-3deg);
  pointer-events: none;
}

.home-hero {
  padding-top: 112px;
}

.top-hero {
  padding: 116px 0 96px;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 188px;
  gap: 80px;
  align-items: start;
}

.top-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 188px;
  gap: 80px;
  align-items: start;
}

.top-copy {
  max-width: 720px;
}

.top-copy h1 {
  margin-top: 20px;
  color: var(--fluence-ink);
  font-size: clamp(52px, 7vw, 78px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.top-hero .hero-statement {
  max-width: 520px;
  margin-top: 58px;
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.65;
}

.top-hero .lead {
  max-width: 560px;
  margin-top: 28px;
}

.hero-main {
  max-width: 720px;
}

.hero-kicker,
.section-label,
.en {
  color: var(--fluence-ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

.service-hero h1,
.hero h1,
.sub-hero h1 {
  color: var(--fluence-ink);
  font-size: clamp(30px, 3.2vw, 34px);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0;
}

.hero-statement {
  max-width: 410px;
  margin-top: 94px;
  color: var(--fluence-ink);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.75;
}

.lead {
  max-width: 430px;
  margin-top: 36px;
  color: var(--fluence-ink);
  font-size: 13px;
  line-height: 2.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
}

.page-index {
  display: grid;
  gap: 19px;
  margin-top: 35px;
  padding-left: 18px;
  border-left: 1px solid var(--line-dark);
  color: var(--fluence-ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
}

.page-index a {
  text-decoration: none;
}

.page-index a:hover,
.page-index a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.intro-section {
  position: relative;
  z-index: 2;
  padding: 0 0 116px;
}

.intro-layout {
  display: grid;
  grid-template-columns: 350px minmax(0, 400px);
  gap: 75px;
  align-items: end;
}

.hero-photo {
  margin: 0;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
}

.intro-copy h2,
.section-head h2,
.split-layout h2,
.cta h2 {
  margin-top: 19px;
  color: var(--fluence-ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}

.intro-copy p {
  margin-top: 29px;
  color: var(--fluence-ink);
  line-height: 2.1;
}

.section {
  padding: 104px 0;
  background: var(--white);
}

.section-muted,
.section.tint,
.tint {
  background: var(--fluence-bg);
}

.section-head {
  max-width: 620px;
  margin-bottom: 55px;
}

.section-head p,
.section-lead {
  max-width: 470px;
  margin-top: 25px;
  color: var(--fluence-ink);
  line-height: 2.1;
}

.problem-list {
  border-top: 1px solid var(--line-dark);
}

.problem-row {
  display: grid;
  grid-template-columns: 124px minmax(220px, .84fr) minmax(0, 1fr);
  gap: 34px;
  align-items: baseline;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}

.problem-name,
.tag {
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
}

.problem-row h3,
.abstract-card h3,
.feature-card h3,
.case-block h3,
.faq-item h3,
.policy-card h3,
.menu-item h3,
.flow-card h3,
.process-step h3,
.service-detail-row h3,
.story h3,
.text-block h3,
.policy-items h3,
.price-factors h3 {
  color: var(--fluence-ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

.problem-row p,
.abstract-card p,
.feature-card p,
.case-block p,
.faq-item p,
.policy-card p,
.menu-item p,
.flow-card p,
.process-step p,
.service-detail-row p,
.text-block p,
.policy-items p,
.price-factors p,
.card .d {
  color: var(--fluence-ink);
  font-size: 13px;
  font-weight: 400;
  line-height: 2.05;
}

.abstract-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
}

.abstract-card {
  padding: 30px 34px 32px 0;
  border-bottom: 1px solid var(--line);
}

.abstract-card:nth-child(even) {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.abstract-card p {
  margin-top: 14px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(420px, 1fr);
  gap: 82px;
  align-items: start;
}

.karte-panel {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
}

.karte-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.karte-head span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
}

.karte-head strong {
  font-size: 14px;
  font-weight: 600;
}

.karte-flow {
  display: grid;
}

.karte-flow div {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.karte-flow div:last-child {
  border-bottom: 0;
}

.karte-flow span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
}

.karte-flow p {
  color: var(--fluence-ink);
  font-size: 13px;
}

.karte-flow .is-human {
  background: transparent;
}

.feature-grid,
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}

.feature-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-grid-5 .feature-card {
  padding-right: 18px;
}

.feature-card,
.card {
  display: block;
  min-height: 100%;
  padding: 28px 22px 32px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-decoration: none;
}

.feature-card + .feature-card,
.card + .card {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.feature-card span,
.card .en,
.promise-card .n {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
}

.feature-card p,
.card .d {
  display: block;
  margin-top: 14px;
}

.card .t {
  display: block;
  color: var(--fluence-ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

.card .go {
  display: inline-flex;
  margin-top: 22px;
  color: var(--fluence-ink);
  font-size: 12px;
  font-weight: 600;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
}

.case-block,
.faq-item,
.policy-card,
.promise-card,
.story {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line);
  padding: 28px 0 30px;
  background: transparent;
}

.case-block .tag,
.menu-item .tag {
  display: inline-block;
  margin-bottom: 16px;
}

.case-block p,
.faq-item p,
.policy-card p,
.flow-card p,
.promise-card p {
  margin-top: 14px;
}

.section-action {
  margin-top: 30px;
}

.price-table {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(176px, .78fr) 1.22fr;
}

.price-row + .price-row {
  border-top: 1px solid var(--line);
}

.price-name,
.price-value {
  padding: 20px 0;
}

.price-name {
  padding-right: 26px;
  color: var(--fluence-ink);
  font-weight: 600;
}

.price-value {
  color: var(--fluence-ink);
  font-weight: 400;
}

.faq-list {
  display: grid;
  gap: 0;
  max-width: 812px;
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
}

.faq-list.compact {
  grid-template-columns: repeat(3, 1fr);
  max-width: none;
  border-top: 1px solid var(--line-dark);
}

.faq-list.compact .faq-item {
  padding-right: 28px;
}

.faq-list.compact .faq-item + .faq-item {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.faq-item {
  border-top: 0;
}

.faq-item h3 {
  position: relative;
  padding-left: 30px;
}

.faq-item h3::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 600;
}

.service-menu {
  border-top: 1px solid var(--line-dark);
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 142px;
  gap: 34px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item strong {
  color: var(--fluence-ink);
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-dark);
}

.flow-card {
  padding: 26px 18px 28px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.flow-card + .flow-card {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.flow-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
}

.simple-map {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.simple-map div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.simple-map span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
}

.simple-map p {
  color: var(--fluence-ink);
  line-height: 2;
}

.process-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.process-step {
  position: relative;
  min-height: 230px;
  padding: 88px 20px 30px 0;
  border-bottom: 1px solid var(--line);
}

.process-step + .process-step {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: 28px;
  left: 0;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.process-step + .process-step::before {
  left: 20px;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 51px;
  left: 58px;
  right: -10px;
  height: 1px;
  background: var(--line-dark);
}

.process-step + .process-step:not(:last-child)::after {
  left: 78px;
}

.process-step p {
  margin-top: 14px;
}

.service-detail-list {
  border-top: 1px solid var(--line-dark);
}

.service-detail-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 28px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail-row > span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
}

.service-detail-row p {
  margin-top: 12px;
}

.policy-list,
.policy-items {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}

.policy-card,
.policy-items .card {
  border-top: 0;
  border-bottom: 1px solid var(--line);
  padding: 25px 0;
  background: transparent;
}

.cta {
  padding: 86px 0;
  background: #383838;
  color: var(--white);
}

.cta-layout,
.cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.cta .section-label,
.cta .en {
  color: var(--blue);
}

.cta h2 {
  color: var(--white);
}

.cta p {
  max-width: 430px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .78);
}

.cta .free {
  color: var(--white);
  font-weight: 600;
}

.cta .pill {
  border-color: var(--white);
  background: var(--white);
  color: var(--fluence-ink);
}

.site-footer {
  flex-shrink: 0;
  padding: 42px 0 58px;
  background: var(--fluence-bg);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px 34px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a[aria-current="page"] {
  color: var(--fluence-ink);
}

.copy {
  width: 100%;
  color: var(--muted);
  font-size: 12px;
}

.hero .hero-en,
.sub-hero .hero-en {
  display: block;
  margin-bottom: 18px;
  color: var(--fluence-ink);
  font-size: 11px;
  font-weight: 600;
}

.text-block {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 30px 0;
  background: transparent;
}

.text-block p + p,
.text-block ul + p {
  margin-top: 22px;
}

.text-block h3 {
  margin: 38px 0 14px;
}

.text-block h4 {
  margin: 30px 0 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
}

.text-block strong,
.faq-item strong,
.price-factors strong,
.promise-card strong {
  color: var(--fluence-ink);
  font-weight: 600;
}

.checks {
  display: grid;
  gap: 0;
  max-width: 812px;
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.checks li {
  position: relative;
  padding: 19px 0 19px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--fluence-ink);
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.inline-checks {
  max-width: none;
  margin-top: 20px;
}

.note-center,
.tool-note,
.note {
  max-width: 812px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 2;
  text-align: center;
}

.promise {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
}

.policy-list.promise {
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
}

.promise-card p {
  font-size: 14px;
}

.card:hover,
.card:focus-visible,
.feature-card:hover,
.feature-card:focus-visible {
  color: var(--fluence-ink);
}

.price-factors {
  max-width: 812px;
  margin: 36px auto 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 30px 0;
  background: transparent;
}

.price-factors ol {
  display: grid;
  gap: 16px;
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: factor;
}

.price-factors li {
  position: relative;
  padding-left: 34px;
  color: var(--fluence-ink);
  counter-increment: factor;
}

.price-factors li::before {
  content: counter(factor);
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
}

.contact-form {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--fluence-ink);
  font-size: 12px;
  font-weight: 600;
}

.contact-form b {
  color: var(--teal);
  font-size: 11px;
}

.form-full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--fluence-ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--fluence-ink);
  outline: 1px solid var(--fluence-ink);
  outline-offset: 2px;
}

.agree {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agree input {
  width: 16px;
  height: 16px;
}

.form-submit {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.form-submit .pill:disabled {
  border-color: var(--muted);
  background: var(--muted);
  cursor: not-allowed;
}

.form-submit p {
  color: var(--muted);
  font-size: 12px;
}

.decomp {
  margin-top: 34px;
}

.decomp-bar {
  display: grid;
  grid-template-columns: 1.15fr 1fr .95fr .9fr;
  gap: 8px;
}

.cell {
  min-height: 126px;
  padding: 18px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.is-machine {
  background: #4c4c4c;
  color: var(--white);
}

.is-human {
  background: var(--blue-2);
}

.cell-no {
  font-size: 12px;
  font-weight: 600;
}

.cell-label {
  font-weight: 600;
}

.decomp-legend {
  display: grid;
  grid-template-columns: 1.15fr 1fr .95fr .9fr;
  gap: 8px;
  margin-top: 10px;
}

.seg {
  padding: 8px 12px;
  border-radius: 0;
  background: transparent;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.seg-machine {
  grid-column: 1 / 4;
}

.seg-human {
  grid-column: 4 / 5;
}

.decomp-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1040px) {
  :root {
    --wrap: 920px;
  }

  .site-header {
    padding: 24px var(--pad);
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 16px 22px;
  }

  .hero-layout,
  .top-hero-layout,
  .intro-layout,
  .split-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-statement {
    margin-top: 62px;
  }

  .page-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
    padding-left: 0;
    padding-top: 20px;
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .intro-layout {
    max-width: 720px;
  }

  .hero-photo img {
    aspect-ratio: 1.38 / 1;
  }

  .feature-grid,
  .cards,
  .flow-list,
  .process-map,
  .faq-list.compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card:nth-child(odd),
  .card:nth-child(odd),
  .flow-card:nth-child(odd),
  .process-step:nth-child(odd),
  .faq-list.compact .faq-item:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .feature-card:nth-child(even),
  .card:nth-child(even),
  .flow-card:nth-child(even),
  .process-step:nth-child(even),
  .faq-list.compact .faq-item:nth-child(even) {
    padding-left: 22px;
    border-left: 1px solid var(--line);
  }

  .process-step:nth-child(odd)::before {
    left: 0;
  }

  .process-step:nth-child(even)::before {
    left: 22px;
  }

  .process-step::after {
    display: none;
  }

  .problem-row {
    grid-template-columns: 116px 1fr;
  }

  .problem-row p {
    grid-column: 2;
  }

  .flow-card + .flow-card {
    padding-left: 0;
    border-left: 0;
  }

  .cta-layout,
  .cta .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  :root {
    --pad: 22px;
  }

  body {
    font-size: 13px;
  }

  .site-header {
    min-height: 0;
  }

  .brand-main {
    font-size: 23px;
  }

  .service-hero,
  .top-hero,
  .hero,
  .sub-hero {
    padding: 78px 0 70px;
  }

  .service-hero h1,
  .hero h1,
  .sub-hero h1 {
    font-size: 31px;
  }

  .top-copy h1 {
    font-size: 48px;
  }

  .hero-statement {
    margin-top: 48px;
    font-size: 18px;
  }

  .lead {
    max-width: none;
    margin-top: 26px;
  }

  .floating-contact {
    display: none;
  }

  .page-index,
  .feature-grid,
  .cards,
  .flow-list,
  .abstract-grid,
  .process-map,
  .faq-list.compact,
  .case-list,
  .promise,
  .policy-list.promise,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .card,
  .flow-card,
  .abstract-card,
  .process-step,
  .faq-list.compact .faq-item {
    padding-left: 0 !important;
    border-left: 0 !important;
  }

  .abstract-card {
    padding-right: 0;
  }

  .process-step {
    min-height: auto;
    padding-top: 80px;
    padding-right: 0;
  }

  .process-step::before {
    left: 0 !important;
  }

  .simple-map div,
  .service-detail-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .intro-section {
    padding-bottom: 72px;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .problem-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .problem-row p {
    grid-column: auto;
  }

  .karte-flow div,
  .menu-item,
  .price-row {
    grid-template-columns: 1fr;
  }

  .price-value {
    padding-top: 0;
  }

  .menu-item strong {
    text-align: left;
  }

  .hero-actions .pill,
  .cta .pill {
    width: 100%;
  }

  .decomp-bar,
  .decomp-legend {
    grid-template-columns: 1fr;
  }

  .seg-machine,
  .seg-human {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
