:root {
  --bg: #f7f5ef;
  --paper: #fffdf8;
  --ink: #1d2528;
  --muted: #657170;
  --line: #d9ded8;
  --teal: #0d6b68;
  --teal-dark: #084d4b;
  --green: #6a8f3d;
  --amber: #d99a29;
  --rose: #bd5a4b;
  --blue: #436a92;
  --shadow: 0 16px 40px rgba(29, 37, 40, 0.09);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.85;
  overflow-x: hidden;
}

p,
li,
h1,
h2,
h3,
strong,
a,
td,
th {
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
}

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

.mobile-copy {
  display: none;
}

a {
  color: var(--teal-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 222, 216, 0.86);
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
}

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

.nav .nav-cta {
  padding: 8px 13px;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(13, 107, 104, 0.18);
}

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

.hero {
  min-height: 620px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 245, 239, 0.96), rgba(247, 245, 239, 0.82) 38%, rgba(247, 245, 239, 0.08) 67%),
    url("./server-hero-calm.png") center / cover no-repeat;
  transform: scale(1.01);
  filter: saturate(1.04) contrast(1.02);
  animation: heroDrift 22s ease-in-out infinite alternate;
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 70px;
}

.hero-inner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 62px;
  color: rgba(13, 107, 104, 0.09);
  font-size: clamp(54px, 9vw, 126px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: 0;
  pointer-events: none;
  writing-mode: vertical-rl;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 5px 10px;
  border: 1px solid rgba(13, 107, 104, 0.22);
  border-radius: 8px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
}

.hero h1,
.hero-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.14;
  letter-spacing: 0;
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
  text-shadow: none;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  position: relative;
  display: inline-block;
  color: var(--amber);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-title-accent::after {
  content: "";
  position: absolute;
  left: 0.02em;
  right: 0.02em;
  bottom: 0.04em;
  height: 0.17em;
  border-radius: 999px;
  background: linear-gradient(90deg, #40e3c7, #ffd06f);
  opacity: 0.82;
  transform: skewX(-12deg);
  z-index: -1;
}

.hero-title-sub {
  font-size: 0.88em;
}

.hero-title-sub::before {
  content: "";
  display: inline-block;
  width: 0.72em;
  height: 0.1em;
  margin-right: 0.16em;
  border-radius: 999px;
  background: #40e3c7;
  vertical-align: 0.18em;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #304142;
  font-size: 18px;
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 7px 10px;
  border: 1px solid rgba(13, 107, 104, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.62);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero-stats b {
  color: var(--amber);
  font-size: 18px;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  background: #f7c86f;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button.secondary {
  color: var(--teal-dark);
  background: rgba(255, 253, 248, 0.62);
  border-color: rgba(13, 107, 104, 0.28);
  box-shadow: none;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.notice {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  background: #fff8e8;
  color: #5b4b2f;
  font-size: 14px;
}

.notice-inner {
  display: block;
}

.notice-inner,
.section-inner,
.article-shell,
.process-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.process-strip {
  padding: 26px 0;
  border-bottom: 1px solid rgba(6, 22, 24, 0.12);
  background: #123c3b;
  color: #fff;
}

.process-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 34px rgba(6, 22, 24, 0.14);
}

.process-item {
  min-height: 154px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.process-item span {
  display: block;
  margin-bottom: 10px;
  color: #ffd06f;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.process-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.45;
}

.process-item p {
  margin: 0;
  color: #dcece8;
  font-size: 14px;
  line-height: 1.75;
}

.decision-band {
  padding: 46px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 132px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 24px;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.choice-card,
.server-card,
.question-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(29, 37, 40, 0.05);
}

.choice-card {
  padding: 18px;
  animation: cardIn 320ms ease both;
}

.choice-card:nth-child(2) {
  animation-delay: 30ms;
}

.choice-card:nth-child(3) {
  animation-delay: 60ms;
}

.choice-card:nth-child(4) {
  animation-delay: 90ms;
}

.choice-card:nth-child(5) {
  animation-delay: 120ms;
}

.choice-card:nth-child(6) {
  animation-delay: 150ms;
}

.choice-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.choice-card span {
  display: inline-flex;
  margin-top: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  background: #e7f2ef;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.choice-card a {
  display: inline-flex;
  margin-top: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  background: #e7f2ef;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.choice-card a:hover {
  background: #cfe9e3;
}

.choice-grid.in-article {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 18px;
}

.article-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 36px;
  padding: 44px 0 72px;
  counter-reset: content-section;
}

.toc {
  position: sticky;
  top: 86px;
  align-self: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
}

.toc-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 900;
  color: var(--muted);
}

.toc a {
  display: block;
  padding: 8px 0;
  border-top: 1px solid rgba(217, 222, 216, 0.7);
  color: var(--ink);
  font-size: 14px;
  text-decoration: none;
}

.toc a:hover {
  color: var(--teal);
}

main {
  min-width: 0;
}

.content-section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 132px;
}

.content-section:first-child {
  padding-top: 30px;
}

.content-section h2 {
  position: relative;
  min-height: 52px;
  margin: 0 0 26px;
  padding: 6px 0 12px 70px;
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: 0;
}

.content-section h2::before {
  counter-increment: content-section;
  content: counter(content-section, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 6px;
  width: 48px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  box-shadow: 0 8px 18px rgba(13, 107, 104, 0.18);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.content-section h2::after {
  content: "";
  position: absolute;
  left: 70px;
  bottom: 0;
  width: 118px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}

.content-section h3 {
  margin: 24px 0 10px;
  font-size: 21px;
  line-height: 1.45;
  letter-spacing: 0;
}

.content-section p {
  margin: 10px 0 16px;
}

.answer-summary {
  padding: 68px 34px 36px;
  border: 1px solid rgba(13, 107, 104, 0.18);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 14px 34px rgba(29, 37, 40, 0.06);
}

.answer-summary h2 {
  margin-top: 0;
}

.answer-summary h2::before {
  top: 6px;
  color: var(--teal);
  background: #e4f3ef;
  box-shadow: inset 0 0 0 1px rgba(13, 107, 104, 0.24);
}

.answer-box {
  margin: 20px 0;
  padding: 18px 20px;
  border-radius: 8px;
  background: #123c3b;
  color: #fff;
}

.answer-box strong {
  display: block;
  margin-bottom: 8px;
  color: #ffd06f;
}

.answer-box ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
}

.callout {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: #edf7f4;
}

.callout strong {
  display: block;
  margin-bottom: 6px;
}

.reason-list,
.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.reason-list li,
.check-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 20px;
}

.pill {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eef2e8;
  color: #40552a;
  font-size: 13px;
  font-weight: 800;
}

.section-top-link {
  display: flex;
  justify-content: flex-end;
  margin: 22px 0 0;
}

.section-top-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 12px;
  border: 1px solid rgba(13, 107, 104, 0.2);
  border-radius: 8px;
  background: #e7f2ef;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.section-top-link a:hover {
  background: #cfe9e3;
}

.table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

th {
  background: #edf2ea;
  color: #24302f;
  font-weight: 900;
}

th:first-child,
td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  width: 128px;
  min-width: 128px;
  background: #fffdf8;
  box-shadow: 1px 0 0 var(--line);
  font-weight: 900;
  overflow-wrap: normal;
  word-break: keep-all;
  line-break: strict;
}

th:first-child {
  z-index: 2;
  background: #edf2ea;
}

tr:last-child td {
  border-bottom: 0;
}

.compare-note {
  color: var(--muted);
  font-size: 13px;
}

.table-hint {
  display: inline-flex;
  margin: 4px 0 0;
  padding: 6px 10px;
  border-radius: 8px;
  background: #eef7f4;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.metric {
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
}

.metric:nth-child(2) {
  background: var(--blue);
}

.metric:nth-child(3) {
  background: var(--green);
}

.metric strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
}

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

.server-card {
  padding: 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.server-card:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 107, 104, 0.34);
  box-shadow: var(--shadow);
}

.server-card h3 {
  margin-top: 0;
}

.server-card dl {
  margin: 14px 0 0;
}

.server-card dt {
  margin-top: 14px;
  color: var(--teal-dark);
  font-weight: 900;
}

.server-card dd {
  margin: 6px 0 0;
  color: var(--muted);
}

.server-card ul {
  margin: 6px 0 0;
  padding-left: 1.1em;
}

.server-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #e7f2ef;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.server-link:hover {
  background: #cfe9e3;
}

.after-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 22px 0;
}

.after-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(29, 37, 40, 0.05);
}

.after-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.after-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.45;
}

.after-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

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

.question-card {
  padding: 18px;
}

.source-list {
  columns: 2;
  column-gap: 26px;
  padding-left: 1.1em;
}

.source-list li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: 8px;
  background: #123c3b;
  color: #fff;
}

.final-cta::after {
  content: "確認";
  position: absolute;
  right: 24px;
  bottom: -16px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
}

.final-cta p {
  color: #e8f4f1;
}

.final-cta h2 {
  padding-left: 0;
  color: #fff;
}

.final-cta h2::before,
.final-cta h2::after {
  content: none;
}

.final-cta-side {
  position: relative;
  z-index: 1;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.final-cta-side strong {
  display: block;
  margin-bottom: 8px;
  color: #ffd06f;
  font-size: 18px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 8px;
  background: #f7c86f;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.cta-link:hover {
  background: #ffd985;
}

.footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 14px;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: var(--teal-dark);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(29, 37, 40, 0.16);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.back-to-top:hover {
  transform: translateY(-2px);
  background: var(--teal);
  box-shadow: 0 14px 30px rgba(29, 37, 40, 0.2);
}

@keyframes heroDrift {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.045) translate3d(-10px, -4px, 0);
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(247, 245, 239, 0.98), rgba(247, 245, 239, 0.92) 62%, rgba(247, 245, 239, 0.46)),
      url("./server-hero-calm.png") 61% center / cover no-repeat;
  }

  .choice-grid,
  .metric-grid,
  .choice-grid.in-article,
  .after-grid,
  .server-grid,
  .process-inner,
  .question-grid {
    grid-template-columns: 1fr;
  }

  .article-shell {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }

  .source-list {
    columns: 1;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .notice-inner,
  .section-inner,
  .article-shell,
  .process-inner,
  .hero-inner {
    width: calc(100vw - 56px) !important;
    max-width: calc(100vw - 56px) !important;
    margin-left: auto;
    margin-right: auto;
  }

  .choice-grid,
  .after-grid,
  .server-grid,
  .question-grid,
  main,
  .content-section,
  .answer-summary,
  .choice-card,
  .after-card,
  .server-card,
  .question-card,
  .callout,
  .final-cta {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .table-wrap {
    max-width: 100%;
  }

  .hero {
    min-height: 560px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(247, 245, 239, 0.99), rgba(247, 245, 239, 0.96) 66%, rgba(247, 245, 239, 0.72)),
      url("./server-hero-calm.png") 74% center / cover no-repeat;
    transform: scale(1.005);
  }

  .hero h1,
  .hero-title {
    max-width: 100%;
    font-size: 27px;
    line-height: 1.28;
    word-break: normal;
    line-break: strict;
  }

  .hero-inner::after {
    display: none;
  }

  .hero-title-accent::after {
    bottom: 0.02em;
    height: 0.15em;
  }

  .hero-title-sub::before {
    width: 0.58em;
  }

  .lead {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.75;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: inline;
  }

  .eyebrow {
    max-width: 100%;
    white-space: normal;
  }

  .notice {
    font-size: 13px;
    line-height: 1.75;
  }

  .notice-inner,
  .process-item p {
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: anywhere;
  }

  .notice-inner {
    width: calc(100vw - 88px) !important;
    max-width: calc(100vw - 88px) !important;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    gap: 8px;
  }

  .hero-stats span {
    padding: 6px 8px;
    font-size: 12px;
  }

  .process-strip {
    padding: 18px 0;
  }

  .process-item {
    min-height: 0;
    padding: 18px;
  }

  .choice-card,
  .after-card,
  .server-card,
  .question-card {
    min-width: 0;
  }

  .choice-card p,
  .after-card p,
  .server-card p,
  .server-card dd,
  .answer-summary p,
  .callout p,
  .check-list li,
  .question-card p,
  th,
  td {
    overflow-wrap: anywhere;
    line-break: anywhere;
  }

  .section-title,
  .content-section h2 {
    font-size: 24px;
    overflow-wrap: break-word;
    word-break: normal;
    line-break: strict;
  }

  .content-section h2 {
    min-height: 48px;
    padding: 7px 0 12px 58px;
    margin-bottom: 24px;
  }

  .content-section h2::before {
    top: 7px;
    width: 42px;
    height: 32px;
    font-size: 14px;
  }

  .answer-summary {
    padding: 60px 22px 28px;
  }

  .content-section h2::after {
    left: 58px;
    bottom: 0;
    width: 92px;
  }

  p,
  li,
  strong,
  a {
    word-break: normal;
    line-break: strict;
  }

  .final-cta {
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .final-cta-side {
    padding-left: 0;
    padding-top: 16px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
