:root {
  --color-background: #f5efe6;
  --color-surface: #fffdfa;
  --color-text: #25231f;
  --color-muted: #6f675d;
  --color-primary: #1f4738;
  --color-primary-dark: #10271f;
  --color-accent: #c7663d;
  --color-accent-dark: #a84d2a;
  --color-border: #e6dccd;
  --color-soft-green: #e8f0ea;
  --color-soft-terracotta: #f8e9df;
  --shadow-soft: 0 22px 60px rgba(35, 29, 23, 0.12);
  --shadow-small: 0 12px 28px rgba(35, 29, 23, 0.07);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--color-text);
  background:
    linear-gradient(180deg, #fbf7ef 0%, var(--color-background) 36%, #f9f3ea 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--color-accent-dark);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(217, 107, 59, 0.55);
  outline-offset: 4px;
}

.noscript {
  margin: 0;
  padding: 12px 20px;
  color: #ffffff;
  background: var(--color-primary-dark);
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 12px max(20px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 253, 250, 0.88);
  border-bottom: 1px solid rgba(230, 220, 205, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand__mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  overflow: hidden;
  background: #fffaf3;
  border: 1px solid rgba(31, 71, 56, 0.14);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(35, 29, 23, 0.08);
}

.brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(2.08);
  transform-origin: 50% 38%;
}

.brand__name {
  display: block;
  color: var(--color-primary-dark);
  font-weight: 800;
  line-height: 1.35;
}

.brand__note {
  display: block;
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--color-primary-dark);
  font-size: 0.93rem;
  font-weight: 700;
}

.global-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-cta {
  min-width: 142px;
  justify-content: center;
  padding: 0 18px;
  color: #ffffff;
  background: var(--color-accent);
  border-radius: 999px;
  box-shadow: var(--shadow-small);
}

.nav-cta:hover {
  color: #ffffff;
  background: var(--color-accent-dark);
}

.menu-button {
  display: none;
}

.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 720px;
  margin: 0;
  padding: 120px max(20px, calc((100vw - var(--container)) / 2)) 70px;
  overflow: hidden;
  color: #ffffff;
  background: var(--color-primary-dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 27, 22, 0.94) 0%, rgba(18, 35, 29, 0.8) 38%, rgba(18, 35, 29, 0.28) 72%, rgba(18, 35, 29, 0.12) 100%),
    linear-gradient(0deg, rgba(12, 27, 22, 0.7) 0%, rgba(12, 27, 22, 0.12) 48%, rgba(12, 27, 22, 0.36) 100%);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__content,
.hero-panel {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: none;
}

.hero .eyebrow {
  color: #f2a27c;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-primary-dark);
  line-height: 1.35;
}

h1,
h2 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-weight: 600;
}

.hero h1 {
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 3.35rem;
  line-height: 1.2;
  text-wrap: balance;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 2;
}

.hero__actions,
.final-cta__box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 170px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.button--accent {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-accent), #b85732);
  box-shadow: var(--shadow-small);
}

.button--accent:hover {
  color: #ffffff;
  background: var(--color-accent-dark);
}

.button--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.button--ghost:hover {
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.hero-concept {
  max-width: 650px;
  margin: 20px 0 0;
  padding: 0 18px;
  background: rgba(255, 253, 250, 0.08);
  border: 1px solid rgba(255, 253, 250, 0.22);
  border-left: 2px solid rgba(242, 162, 124, 0.8);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.hero-concept[open] {
  background: rgba(255, 253, 250, 0.1);
}

.hero-concept summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 56px;
  padding: 10px 0;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
}

.hero-concept summary::-webkit-details-marker {
  display: none;
}

.hero-concept summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.82);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.82);
  transform: rotate(45deg);
  transition: transform 180ms ease, border-color 180ms ease;
}

.hero-concept[open] summary::after {
  border-color: #f2a27c;
  transform: translateY(4px) rotate(-135deg);
}

.hero-concept__title,
.hero-concept__hint {
  display: block;
  line-height: 1.55;
}

.hero-concept__title {
  font-size: 1rem;
  font-weight: 800;
}

.hero-concept__hint {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-concept__body {
  display: grid;
  gap: 12px;
  padding: 4px 0 18px;
}

.hero-concept__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.9;
}

.hero-concept__lead,
.hero-concept__closing {
  color: rgba(255, 255, 255, 0.94) !important;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: 1rem !important;
  font-weight: 600;
  line-height: 1.9 !important;
}

.hero-concept__closing {
  margin-top: 4px !important;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  max-width: 650px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  min-height: 0;
  padding: 0 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.75;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 5px;
  height: 5px;
  background: #f2a27c;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(242, 162, 124, 0.14);
}

.hero-panel {
  align-self: end;
  max-width: 660px;
  margin-top: 58px;
  padding: 18px;
  background: rgba(255, 253, 250, 0.88);
  border: 1px solid rgba(255, 253, 250, 0.62);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-panel__label,
.hero-panel__copy {
  margin: 0;
  color: var(--color-primary-dark);
  font-weight: 800;
}

.hero-panel__copy {
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-panel__group {
  margin-top: 12px;
  padding: 12px;
  background: rgba(31, 71, 56, 0.06);
  border: 1px solid rgba(31, 71, 56, 0.1);
  border-radius: var(--radius);
}

.hero-panel__group--route {
  margin-top: 0;
  background: #fff7f0;
  border-color: rgba(199, 102, 61, 0.24);
}

.hero-panel__group-title {
  margin: 0 0 8px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-panel__connector {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 8px auto;
  color: #ffffff;
  background: var(--color-accent);
  border-radius: 50%;
  font-weight: 900;
  line-height: 1;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.channel-grid span,
.hero-panel__path span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 10px;
  color: var(--color-primary-dark);
  background: rgba(255, 253, 250, 0.94);
  border: 1px solid rgba(31, 71, 56, 0.08);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.hero-panel__path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.hero-panel__path span {
  color: var(--color-primary-dark);
  background: #fffdfa;
  border-color: rgba(199, 102, 61, 0.32);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.case-note h2,
.final-cta h2 {
  margin-bottom: 14px;
  font-size: 2.12rem;
  text-wrap: balance;
}

.section-heading p,
.case-note p,
.final-cta p {
  color: var(--color-muted);
  text-wrap: pretty;
}

.problems {
  padding-top: 96px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.problem-card,
.service-item,
.support-card,
.flow-step,
.timeline li,
.faq details,
.case-note,
.final-cta {
  background: rgba(255, 253, 250, 0.92);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.problem-card {
  position: relative;
  min-height: 96px;
  padding: 18px 18px 18px 20px;
  font-weight: 750;
  line-height: 1.55;
  box-shadow: 0 8px 22px rgba(35, 29, 23, 0.055);
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 3px;
  height: 28px;
  background: var(--color-accent);
  border-radius: 0 999px 999px 0;
}

.solution,
.running-cost {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--container)) / 2));
  padding-left: max(20px, calc((100vw - var(--container)) / 2));
  background: #fffaf3;
}

.flow-map {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.flow-map__sources,
.cost-grid {
  display: grid;
  gap: 10px;
}

.flow-map__sources {
  align-content: center;
  padding: 22px;
  background: linear-gradient(135deg, #f8e9df, #edf3ed);
  border: 1px solid #efd6ca;
  border-radius: var(--radius);
}

.flow-map__sources span,
.cost-grid span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 14px;
  color: var(--color-primary-dark);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-weight: 800;
}

.flow-map__steps {
  display: grid;
  gap: 12px;
}

.flow-step {
  position: relative;
  padding: 20px 20px 20px 72px;
}

.flow-step__number {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 50%;
  font-weight: 900;
}

.flow-step strong {
  display: block;
  margin-bottom: 5px;
  color: var(--color-primary-dark);
  font-size: 1.08rem;
}

.flow-step p {
  margin: 0;
  color: var(--color-muted);
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-extra {
  margin-top: 18px;
  padding: 18px 0 0 18px;
  border-top: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
}

.service-extra strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-primary-dark);
  font-size: 1.04rem;
}

.service-extra p {
  max-width: 760px;
  margin: 0;
  color: var(--color-muted);
}

.service-item {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1fr);
  gap: 28px;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(35, 29, 23, 0.1);
}

.service-item h3,
.support-card h3,
.timeline h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  text-wrap: balance;
}

.service-item__price,
.support-card__price,
.plan__price {
  margin-bottom: 10px;
  color: var(--color-accent-dark);
  font-weight: 900;
}

.service-item__price,
.support-card__price {
  font-size: 1.16rem;
}

.note,
.section-note {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--color-accent);
  border-radius: 50%;
}

.pricing {
  padding-top: 0;
}

.plan {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 28px;
  padding: 34px;
  color: #ffffff;
  background: linear-gradient(135deg, #10271f, #244c3d 72%, #315946);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.plan h2,
.plan p,
.plan li {
  color: #ffffff;
}

.plan .eyebrow {
  color: #f6b28f;
}

.plan__price {
  color: #ffffff;
  font-size: 2.1rem;
  line-height: 1.25;
}

.plan__details {
  padding: 22px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.check-list--columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-card {
  padding: 28px;
}

.support-card--highlight {
  border-color: rgba(199, 102, 61, 0.35);
  background: #fff8f3;
}

.cost-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.section-note {
  width: min(var(--container), 100%);
  margin: 20px auto 0;
  text-align: center;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  min-height: 240px;
  padding: 22px;
}

.timeline span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-accent-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.timeline p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.case-note {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  padding: 34px;
  background: linear-gradient(135deg, #e8f0ea, #fff8ef);
  box-shadow: none;
}

.faq {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  overflow: hidden;
}

.faq summary {
  position: relative;
  min-height: 58px;
  padding: 18px 54px 18px 20px;
  color: var(--color-primary-dark);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #ffffff;
  background: var(--color-primary);
  border-radius: 50%;
  font-weight: 900;
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--color-muted);
}

.privacy-page {
  max-width: 920px;
}

.privacy-page h1 {
  margin-bottom: 18px;
  font-size: 2.4rem;
}

.privacy-page__lead {
  margin-bottom: 34px;
  color: var(--color-muted);
  font-size: 1.04rem;
}

.privacy-content {
  display: grid;
  gap: 18px;
}

.privacy-content section {
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.privacy-content h2 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.privacy-content p,
.privacy-content ul {
  margin-bottom: 0;
  color: var(--color-muted);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 28px;
  align-items: center;
  padding: 36px;
  background: linear-gradient(135deg, var(--color-primary-dark), #203f33);
}

.final-cta h2,
.final-cta p {
  color: #ffffff;
}

.final-cta .eyebrow {
  color: #f6b28f;
}

.final-cta__box {
  flex-direction: column;
  align-items: flex-start;
}

.final-cta__box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 46px max(20px, calc((100vw - var(--container)) / 2)) 94px;
  color: rgba(255, 255, 255, 0.84);
  background: #111f19;
}

.site-footer .brand__name {
  color: #ffffff;
}

.site-footer p {
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-footer small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.6);
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 253, 250, 0.96);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 10px;
  color: var(--color-primary-dark);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
}

.mobile-cta__line {
  color: #ffffff !important;
  background: var(--color-accent);
}

.floating-line {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  min-width: 172px;
  padding: 12px 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-accent), #b85732);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-weight: 900;
}

.floating-line:hover {
  color: #ffffff;
  background: var(--color-accent-dark);
}

@media (max-width: 1040px) {
  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-item,
  .flow-map,
  .plan,
  .case-note,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .timeline,
  .cost-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 84px;
  }

  .site-header {
    min-height: 66px;
    padding: 10px 20px;
  }

  .brand__note {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 8px 12px;
    color: var(--color-primary-dark);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 900;
  }

  .menu-button__line {
    position: relative;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .menu-button__line::before,
  .menu-button__line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .menu-button__line::before {
    top: -6px;
  }

  .menu-button__line::after {
    top: 6px;
  }

  .global-nav {
    position: fixed;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 22px;
    background: rgba(247, 244, 238, 0.98);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
  }

  .global-nav.is-open {
    display: flex;
  }

  .privacy-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
  }

  .privacy-nav a {
    min-height: 44px;
    border-bottom: 0;
  }

  .privacy-nav a:first-child {
    display: none;
  }

  .global-nav a {
    min-height: 52px;
    border-bottom: 1px solid var(--color-border);
  }

  .global-nav a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    margin-top: 14px;
    border-bottom: 0;
  }

  .privacy-nav .nav-cta {
    margin-top: 0;
  }

  .section {
    width: min(100% - 32px, var(--container));
    padding: 66px 0;
  }

  .hero {
    min-height: 690px;
    padding: 86px 20px 44px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(17, 20, 18, 0.94) 0%, rgba(17, 20, 18, 0.78) 58%, rgba(17, 20, 18, 0.5) 100%),
      linear-gradient(0deg, rgba(17, 20, 18, 0.82) 0%, rgba(17, 20, 18, 0.28) 60%, rgba(17, 20, 18, 0.38) 100%);
  }

  .hero__image {
    object-position: 58% center;
  }

  .hero h1 {
    font-size: 2.34rem;
    line-height: 1.28;
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.9;
  }

  .hero-concept {
    margin-top: 16px;
    padding: 0 14px;
  }

  .hero-concept__body p {
    font-size: 0.9rem;
    line-height: 1.85;
  }

  .hero-panel {
    padding: 14px;
  }

  .problems {
    padding-top: 54px;
  }

  .problems .section-heading {
    margin-bottom: 20px;
  }

  .problems .section-heading h2 {
    max-width: 11em;
    margin-bottom: 10px;
    font-size: 1.48rem;
    line-height: 1.45;
  }

  .problems .section-heading p {
    font-size: 0.94rem;
    line-height: 1.85;
  }

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

  .problem-card {
    min-height: 0;
    padding: 13px 14px 13px 18px;
    background: rgba(255, 253, 250, 0.72);
    border-color: rgba(31, 71, 56, 0.12);
    border-radius: 6px;
    box-shadow: none;
    font-size: 0.93rem;
    line-height: 1.65;
  }

  .problem-card::before {
    top: 14px;
    height: 20px;
    background: var(--color-primary);
  }

  .channel-grid,
  .hero-panel__path,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .support-grid,
  .check-list--columns {
    grid-template-columns: 1fr;
  }

  .service-item {
    gap: 18px;
    padding: 22px;
  }

  .service-item h3,
  .support-card h3,
  .timeline h3 {
    font-size: 1.16rem;
    line-height: 1.48;
  }

  .service-item p,
  .support-card p,
  .timeline p,
  .check-list {
    line-height: 1.72;
  }

  .service-list {
    gap: 14px;
  }

  .service-extra {
    margin-top: 16px;
    padding: 16px 0 0 16px;
  }

  .section-heading h2,
  .case-note h2,
  .final-cta h2,
  .privacy-page h1 {
    font-size: 1.72rem;
  }

  .plan {
    padding: 24px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline li {
    min-height: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 112px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-cta {
    display: grid;
  }

  .floating-line {
    display: none;
  }
}

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

  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand__name {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .section {
    width: min(100% - 28px, var(--container));
    padding: 54px 0;
  }

  .hero {
    min-height: auto;
    padding: 78px 16px 34px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: 1.84rem;
    line-height: 1.34;
  }

  .hero__lead {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.85;
  }

  .button,
  .hero__actions,
  .final-cta__box {
    width: 100%;
  }

  .button {
    min-width: 0;
    min-height: 46px;
  }

  .hero-concept {
    padding: 0 12px;
  }

  .hero-concept summary {
    min-height: 52px;
    gap: 12px;
  }

  .hero-concept__title {
    font-size: 0.94rem;
  }

  .hero-concept__hint {
    font-size: 0.74rem;
  }

  .hero-concept__body {
    gap: 10px;
    padding-bottom: 16px;
  }

  .hero-concept__body p,
  .hero-concept__lead,
  .hero-concept__closing {
    font-size: 0.88rem !important;
    line-height: 1.82 !important;
  }

  .benefit-list {
    gap: 5px;
    margin-top: 14px;
  }

  .benefit-list li {
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .hero-panel {
    margin-top: 36px;
    padding: 12px;
  }

  .hero-panel__group {
    padding: 10px;
  }

  .channel-grid span,
  .hero-panel__path span,
  .flow-map__sources span,
  .cost-grid span {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .case-note h2,
  .final-cta h2,
  .privacy-page h1 {
    font-size: 1.48rem;
    line-height: 1.5;
  }

  .section-heading p {
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .service-item {
    gap: 14px;
    padding: 18px 16px;
  }

  .service-item__price {
    margin-bottom: 6px;
    font-size: 1rem;
  }

  .service-item h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
  }

  .check-list {
    gap: 6px;
    font-size: 0.92rem;
  }

  .service-extra {
    padding-left: 14px;
  }

  .service-extra strong {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .service-extra p {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .cost-grid {
    grid-template-columns: 1fr;
  }

  .flow-step {
    padding: 18px 18px 18px 64px;
  }

  .final-cta {
    padding: 26px 22px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
