:root {
  --navy: #1b3a6b;
  --navy-dark: #0d2040;
  --navy-mid: #2a5298;
  --orange: #e85d26;
  --orange-dark: #c94919;
  --ink: #18181e;
  --muted: #5c6a7a;
  --line: #e2e8f0;
  --bg: #f7f8fa;
  --white: #ffffff;
  --green: #17825c;
  --shadow-sm: 0 1px 4px rgba(13, 32, 64, 0.06), 0 4px 12px rgba(13, 32, 64, 0.07);
  --shadow: 0 4px 16px rgba(13, 32, 64, 0.1), 0 12px 32px rgba(13, 32, 64, 0.08);
  --shadow-lg: 0 8px 24px rgba(13, 32, 64, 0.12), 0 24px 56px rgba(13, 32, 64, 0.1);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic UI", "Meiryo UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  font-size: 1rem;
}

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

button,
input,
select {
  font: inherit;
}

/* ─── HEADER ─────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 68px;
  padding: 12px clamp(16px, 4vw, 48px);
  color: var(--white);
  background: rgba(13, 32, 64, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow 0.2s ease;
}

.site-header[data-elevated="true"] {
  box-shadow: 0 4px 24px rgba(13, 32, 64, 0.3);
}

.brand,
.header-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--orange);
  font-weight: 900;
  flex-shrink: 0;
}

.header-nav {
  gap: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease;
}

.header-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* ─── SECTION BASE ────────────────────────────────────── */

.section {
  scroll-margin-top: 80px;
  padding: clamp(56px, 8vw, 104px) clamp(16px, 5vw, 64px);
}

/* スクロールリビール — JS がロードされた場合のみ opacity:0 を適用 */
.js .section:not(.hero) {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .section[data-visible="true"] {
  opacity: 1;
  transform: none;
}

/* ─── HERO ────────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  min-height: calc(100vh - 68px);
  color: var(--white);
  background:
    radial-gradient(ellipse at 76% 20%, rgba(232, 93, 38, 0.22), transparent 32%),
    linear-gradient(148deg, var(--navy-dark) 0%, var(--navy) 56%, #102846 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── 見出し共通 ──────────────────────────────────────── */

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  line-height: 1.28;
  letter-spacing: -0.01em;
}

/* h1: 旧 clamp(2.75rem, 8vw, 6.8rem) → 最大108px で改行崩れ。修正後は最大48px */
.hero h1 {
  max-width: 640px;
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 900;
}

.lead {
  max-width: 580px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  line-height: 1.8;
}

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

/* ─── BUTTONS ─────────────────────────────────────────── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  padding: 12px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 6px 20px rgba(232, 93, 38, 0.28);
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 24px rgba(232, 93, 38, 0.38);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.17);
}

/* ─── TRUST STRIP ─────────────────────────────────────── */

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.trust-strip div {
  min-width: 100px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.trust-strip dt,
.trust-strip dd {
  margin: 0;
}

.trust-strip dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.trust-strip dd {
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

/* ─── HERO VISUAL ─────────────────────────────────────── */

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  background: #07172b;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.05);
  filter: saturate(0.9) contrast(1.07);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 32, 64, 0.9), rgba(13, 32, 64, 0.1) 44%, rgba(13, 32, 64, 0.3)),
    linear-gradient(90deg, rgba(13, 32, 64, 0.38), transparent 50%);
}

/* ─── SECTION HEADING ─────────────────────────────────── */

.section-heading {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

/* h2: 旧 clamp(2rem, 5vw, 4.4rem) → 最大70px。修正後は最大36px */
.section-heading h2,
.contact-copy h2 {
  color: var(--navy);
  font-size: clamp(1.375rem, 3vw, 2.25rem);
  font-weight: 900;
}

.section-heading > p:not(.eyebrow) {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.75;
}

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

/* ─── LOSS SECTION ────────────────────────────────────── */

.loss-card {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--line);
}

.formula-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  color: var(--navy);
  font-size: clamp(0.875rem, 1.6vw, 1.0625rem);
  font-weight: 700;
}

.formula-row span {
  min-width: 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  word-break: keep-all;
}

.equals {
  margin: 16px 0 2px;
  color: var(--muted);
  font-size: 1.5rem;
  font-weight: 900;
}

/* loss-total: 旧 clamp(1.8rem, 5vw, 3.9rem) → 最大62px。修正後は最大34px */
.loss-total {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.375rem, 2.5vw, 2.125rem);
  font-weight: 900;
  line-height: 1.3;
}

.loss-total strong {
  color: var(--orange);
  font-size: 1.2em;
}

/* ─── GRIDS ───────────────────────────────────────────── */

.pain-grid,
.feature-grid,
.scope-grid {
  display: grid;
  gap: 16px;
  max-width: 1100px;
  margin: 28px auto 0;
}

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

.pain-grid article,
.feature-grid article,
.scope-card,
.faq-list details,
.contact-form {
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.pain-grid article,
.feature-grid article {
  padding: 24px;
  border: 1px solid var(--line);
}

.mini-icon,
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
  font-size: 0.6875rem;
  letter-spacing: -0.01em;
}

.pain-grid h3,
.feature-grid h3,
.steps h3,
.scope-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.55;
}

.pain-grid p,
.feature-grid p,
.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.75;
}

/* ─── SERVICE SECTION ─────────────────────────────────── */

.service-section,
.contact-section {
  background: linear-gradient(148deg, var(--navy-dark), var(--navy-mid));
}

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

.feature-grid article {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.feature-grid h3,
.feature-grid p {
  color: var(--white);
}

.feature-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.feature-icon {
  color: var(--navy);
  background: var(--white);
}

/* ─── HOW IT WORKS ────────────────────────────────────── */

.how-section,
.faq-section {
  background: var(--white);
}

.steps {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.steps li:hover {
  border-color: rgba(27, 58, 107, 0.4);
  box-shadow: var(--shadow-sm);
}

.step-number {
  display: inline-grid;
  place-items: center;
  min-height: 40px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

/* ─── SCOPE ───────────────────────────────────────────── */

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

.scope-card {
  padding: 28px;
  border: 1px solid var(--line);
}

.scope-card.can {
  background: #edfaf5;
  border-color: rgba(23, 130, 92, 0.2);
}

.scope-card.cannot {
  background: var(--bg);
}

.scope-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.scope-card li {
  position: relative;
  padding-left: 26px;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.scope-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.can li::before {
  content: "✓";
  color: var(--green);
}

.cannot li::before {
  content: "×";
  color: var(--muted);
}

.trial-note {
  max-width: 720px;
  margin: 24px auto 0;
  padding: 16px 20px;
  border: 2px solid var(--navy);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  text-align: center;
  font-weight: 700;
  font-size: 0.9375rem;
}

/* ─── PRIVACY ─────────────────────────────────────────── */

.privacy-section {
  background: var(--bg);
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 28px auto 0;
}

.privacy-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.privacy-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 8px;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
  font-size: 0.6875rem;
}

.privacy-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.55;
}

.privacy-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.75;
}

.privacy-link-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 1100px;
  margin: 18px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(27, 58, 107, 0.18);
  border-radius: 10px;
  background: #eef5ff;
}

.privacy-link-panel p {
  margin: 0;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.65;
}

.privacy-policy-button {
  color: var(--white);
  background: var(--navy);
  border: 0;
}

.privacy-policy-button:hover {
  background: var(--navy-dark);
}

/* ─── FAQ ─────────────────────────────────────────────── */

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  box-shadow: none;
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  padding: 18px 52px 18px 20px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.6;
  list-style: none;
  transition: background 0.15s ease;
}

.faq-list summary:hover {
  background: var(--bg);
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

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

.faq-list p {
  margin: 0;
  padding: 2px 20px 20px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* ─── CONTACT ─────────────────────────────────────────── */

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.95fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  color: var(--white);
}

.contact-copy {
  position: sticky;
  top: 100px;
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  margin-top: 12px;
  font-size: 0.9375rem;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3.5vw, 32px);
  color: var(--ink);
}

.contact-form label,
.contact-form fieldset {
  display: grid;
  gap: 6px;
}

.contact-form span,
.contact-form legend {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.875rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 13px;
  color: var(--ink);
  background: var(--bg);
  font-size: 0.9375rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
  line-height: 1.7;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 93, 38, 0.14);
}

.contact-form fieldset {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.contact-form fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  cursor: pointer;
}

.contact-form fieldset input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--orange);
  flex-shrink: 0;
}

.submit-button {
  width: 100%;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.form-error {
  min-height: 1.4em;
  margin: 0;
  color: #b42318;
  font-weight: 700;
  font-size: 0.875rem;
}

.privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.65;
}

.privacy a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── FOOTER ──────────────────────────────────────────── */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(16px, 4vw, 48px);
  color: var(--white);
  background: var(--navy-dark);
}

.footer-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
}

.site-footer a:hover {
  color: var(--white);
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  line-height: 1.5;
}

/* ─── POLICY PAGE ─────────────────────────────────────── */

.policy-page {
  background: var(--white);
}

.policy-hero {
  color: var(--white);
  background: linear-gradient(148deg, var(--navy-dark), var(--navy));
}

.policy-hero > div,
.policy-content {
  max-width: 920px;
  margin: 0 auto;
}

.policy-hero h1 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.25;
  font-weight: 900;
}

.policy-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9375rem;
  line-height: 1.85;
}

.policy-updated {
  font-weight: 700;
}

.policy-content {
  display: grid;
  gap: 24px;
  padding-top: 56px;
}

.policy-content article {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.policy-content h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.45;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.85;
}

.policy-content p {
  margin: 0;
}

.policy-content ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 1.25em;
}

.policy-contact {
  margin-top: 18px;
}

/* ─── FLOATING CTA ────────────────────────────────────── */

.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  min-height: 44px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 8px 24px rgba(232, 93, 38, 0.32);
  font-weight: 700;
  font-size: 0.875rem;
  transition: transform 0.18s ease, background 0.18s ease;
}

.floating-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* ─── TOAST ───────────────────────────────────────────── */

.toast {
  position: fixed;
  left: 50%;
  bottom: 80px;
  z-index: 40;
  max-width: calc(100vw - 32px);
  transform: translate(-50%, 12px);
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-dark);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  font-size: 0.9rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast[data-visible="true"] {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ─── TABLET ──────────────────────────────────────────── */

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

  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-visual img {
    min-height: 460px;
  }

  .pain-grid,
  .feature-grid,
  .scope-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

/* ─── MOBILE ──────────────────────────────────────────── */

@media (max-width: 640px) {
  .site-header {
    min-height: 60px;
    padding: 10px 14px;
  }

  .brand {
    font-size: 0.9375rem;
  }

  .header-cta {
    padding: 8px 13px;
    font-size: 0.84rem;
  }

  .section {
    padding: 56px 16px;
  }

  .hero {
    padding: 40px 16px;
  }

  .button {
    width: 100%;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .trust-strip div {
    min-width: 0;
    padding: 9px 10px;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-visual img {
    min-height: 380px;
    transform: scale(1.07);
  }

  .formula-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-number {
    width: fit-content;
    min-width: 80px;
  }

  .privacy-link-panel,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-meta {
    justify-items: start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

/* ─── REDUCED MOTION ──────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .js .section:not(.hero) {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .floating-cta,
  .header-cta,
  .steps li,
  .faq-list summary,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    transition: none;
  }
}
