:root {
  --bg: #f7f8f4;
  --paper: #ffffff;
  --soft: #eef3ee;
  --mint: #e6f1e8;
  --green: #275d45;
  --green-dark: #173829;
  --orange: #b76a3a;
  --brown: #56635b;
  --ink: #1f2f28;
  --muted: #66736c;
  --line: #dbe2d8;
  --shadow: 0 18px 42px rgba(26, 44, 34, 0.1);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: none;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(247, 248, 244, 0.94);
  border-bottom: 1px solid rgba(219, 226, 216, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--green-dark);
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  font-weight: 800;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-nav a {
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 9px 16px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--green);
}

.section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px clamp(18px, 4vw, 34px);
}

.section.compact {
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
  min-height: calc(100vh - 72px);
  padding-top: 68px;
  padding-bottom: 76px;
}

.hero-content {
  max-width: 690px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4.25vw, 54px);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(26px, 3.2vw, 39px);
  line-height: 1.34;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: 0;
}

.hero-lead,
.section-heading p,
.split-copy p,
.revenue-copy p,
.final-copy p,
.why-list p,
.pricing-band p,
.clinic p {
  color: var(--muted);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.35;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 26px rgba(23, 61, 46, 0.18);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  background: #fff;
  color: var(--green-dark);
  border-color: var(--line);
}

.trust-badges,
.industry-badges,
.benefit-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.trust-badges li {
  min-height: 58px;
  padding: 13px 12px;
  border: 1px solid #d9e5db;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-dark);
  font-weight: 800;
  line-height: 1.35;
}

.industry-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.industry-badges span,
.industry-badges a {
  padding: 6px 12px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--brown);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.editorial-visual {
  min-height: auto;
}

.editorial-visual picture {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(219, 226, 216, 0.92);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.editorial-visual img {
  width: 100%;
  min-height: 520px;
  max-height: 640px;
  object-fit: cover;
  object-position: 48% center;
}

.hero-proof-card,
.mini-record-card {
  position: absolute;
  border: 1px solid rgba(219, 226, 216, 0.96);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(26, 44, 34, 0.12);
  backdrop-filter: blur(12px);
}

.hero-proof-card {
  right: 22px;
  bottom: 22px;
  width: min(78%, 360px);
  padding: 20px;
}

.hero-proof-card p {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-proof-card strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
}

.hero-proof-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.mini-record-card {
  left: -24px;
  top: 42px;
  width: 236px;
  padding: 16px;
}

.mini-record-line {
  display: block;
  width: 100%;
  height: 8px;
  margin-bottom: 9px;
  border-radius: 999px;
  background: #dfebe3;
}

.mini-record-line.short {
  width: 62%;
  background: #dfe8df;
}

.mini-record-card div {
  display: grid;
  gap: 2px;
  margin-top: 14px;
}

.mini-record-card b {
  color: var(--green-dark);
}

.mini-record-card small {
  color: var(--muted);
  font-weight: 700;
}

.device-card,
.karte-card,
.model-panel,
.timeline-card,
.lead-form,
.photo-panel {
  border: 1px solid rgba(219, 226, 216, 0.95);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: none;
}

.device-card {
  position: relative;
  z-index: 2;
  width: min(100%, 380px);
  margin-left: auto;
  padding: 18px;
}

.device-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green-dark);
}

.device-top span {
  width: 34px;
  height: 8px;
  border-radius: 99px;
  background: #d3e4d7;
}

.device-top small {
  color: var(--muted);
  font-weight: 800;
}

.meal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(2, 100px);
  gap: 10px;
  margin-bottom: 16px;
}

.meal-photo {
  border-radius: 8px;
  background: var(--soft);
  overflow: hidden;
}

.meal-photo.greens {
  grid-row: span 2;
  background:
    radial-gradient(circle at 30% 35%, #5d8f51 0 12%, transparent 13%),
    radial-gradient(circle at 56% 48%, #79a761 0 14%, transparent 15%),
    radial-gradient(circle at 45% 70%, #eab56e 0 10%, transparent 11%),
    linear-gradient(135deg, #fff8e7, #dbe8d7);
}

.meal-photo.soup {
  background:
    radial-gradient(circle at 50% 50%, #d28b3d 0 28%, transparent 29%),
    radial-gradient(circle at 42% 43%, #f3c66c 0 8%, transparent 9%),
    #f8f0dc;
}

.meal-photo.rice {
  background:
    radial-gradient(circle at 62% 38%, #7f5a37 0 11%, transparent 12%),
    radial-gradient(circle at 40% 58%, #f5f0d7 0 22%, transparent 23%),
    #e7f0e6;
}

.status-row,
.progress-title,
.note-card,
.model-panel div,
.timeline-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status-row {
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 800;
}

.progress-block {
  margin-top: 14px;
  padding: 14px;
  border-radius: 8px;
  background: #f5f8f4;
}

.progress-title {
  margin-bottom: 9px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 800;
}

.progress-bar {
  height: 10px;
  border-radius: 99px;
  background: #d9e2d8;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
}

.note-card {
  margin-top: 14px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 14px;
  border: 1px solid #ead6bd;
  border-radius: 8px;
  color: var(--muted);
}

.note-card p {
  margin: 0;
  font-size: 14px;
}

.note-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.karte-card {
  position: absolute;
  right: 64px;
  bottom: 18px;
  width: min(100%, 360px);
  padding: 22px;
}

.karte-card h2 {
  font-size: 22px;
  line-height: 1.45;
}

.card-label {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff4e8;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.karte-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
}

.karte-card div {
  padding: 12px;
  border-radius: 8px;
  background: #f5f8f4;
}

.karte-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.karte-card dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.answer-strip,
.industry-answer {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 5vw, 54px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfdf9;
}

.answer-strip h2,
.industry-answer h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 35px);
}

.industry-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.answer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.answer-list div {
  min-height: 130px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.answer-list dt {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.answer-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.6;
}

.statement h2 {
  margin-bottom: 0;
}

.statement p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

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

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.pain-grid,
.reason-grid,
.feature-grid,
.menu-grid,
.usecase-grid {
  display: grid;
  gap: 14px;
}

.pain-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pain-grid article {
  min-height: 122px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 42px;
}

.photo-panel {
  margin: 0;
  overflow: hidden;
}

.photo-panel img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.photo-panel figcaption {
  padding: 12px 16px 16px;
  color: var(--muted);
  font-size: 13px;
}

.pricing-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 32px;
  max-width: none;
  padding-left: max(clamp(18px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
  padding-right: max(clamp(18px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
  background: #173d2e;
  color: #fff;
}

.pricing-band .eyebrow,
.pricing-band p {
  color: #d8eadc;
}

.pricing-band h2 {
  color: #fff;
}

.model-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: #fbfdf9;
  box-shadow: none;
}

.model-panel div {
  padding: 18px;
  border-radius: 8px;
  background: #eef4ed;
}

.model-panel span {
  color: var(--muted);
  font-weight: 800;
}

.model-panel strong {
  color: var(--green-dark);
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1;
}

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

.reason-grid article,
.feature-grid article,
.menu-grid article,
.usecase-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.reason-grid article::before,
.feature-grid article::before,
.menu-grid article::before,
.usecase-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--green);
}

.reason-grid span,
.process-list span,
.timeline-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.reason-grid p,
.feature-grid p,
.menu-grid p,
.usecase-grid p,
.process-list p,
.faq p {
  margin-bottom: 0;
  color: var(--muted);
}

.muted {
  max-width: none;
  padding-left: max(clamp(18px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
  padding-right: max(clamp(18px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
  background: #eff4ef;
}

.feature-grid {
  max-width: var(--max);
  margin: 0 auto;
}

.feature-grid article {
  border-color: #d9e4d7;
}

.menu-grid article:nth-child(even)::before,
.usecase-grid article:nth-child(even)::before {
  background: var(--orange);
}

.section-note {
  max-width: 900px;
  margin: 26px auto 0;
  padding: 14px 16px;
  border-left: 4px solid var(--orange);
  background: #fff;
  color: var(--brown);
  font-size: 14px;
  font-weight: 800;
}

.revenue {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 40px;
}

.timeline-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  box-shadow: none;
}

.timeline-card div {
  justify-content: flex-start;
  padding: 16px;
  border-radius: 8px;
  background: #f5f8f4;
}

.timeline-card p {
  margin: 0;
  font-weight: 800;
}

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

.clinic {
  max-width: none;
  padding-left: max(clamp(18px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
  padding-right: max(clamp(18px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
  background:
    linear-gradient(90deg, rgba(231, 242, 233, 0.96), rgba(255, 253, 248, 0.92)),
    url("assets/counseling-visual.webp") center / cover;
}

.clinic .section-heading {
  max-width: 760px;
  padding: 30px;
  border: 1px solid #d9e4d7;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
}

.notice {
  padding: 14px 16px;
  border-left: 4px solid var(--orange);
  background: #fff7ed;
  color: var(--brown) !important;
  font-size: 14px;
  font-weight: 800;
}

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

.usecase-grid article {
  grid-column: span 2;
}

.usecase-grid article:nth-child(4),
.usecase-grid article:nth-child(5) {
  grid-column: span 3;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: var(--max);
  margin: 0 auto;
}

.benefit-list li {
  padding: 13px 15px;
  border: 1px solid #d9e4d7;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.why-now {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.why-list {
  display: grid;
  gap: 16px;
}

.why-list p {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

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

.process-list li {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.55;
}

details p {
  padding: 0 20px 20px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 36px;
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(47, 107, 79, 0.18);
  border-color: var(--green);
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

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

.direct-contact {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink) !important;
  font-weight: 900;
}

.direct-contact a,
.site-footer a[href^="mailto:"] {
  color: #d8eadc;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.direct-contact a {
  color: var(--green);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  padding: 46px clamp(18px, 4vw, 48px) 96px;
  background: #1f2e28;
  color: #dbe5df;
}

.site-footer p {
  max-width: 760px;
  margin: 16px 0 0;
  color: #c5d0c9;
  font-size: 13px;
}

.footer-brand {
  color: #fff;
}

.site-footer nav {
  display: grid;
  gap: 10px;
  min-width: 180px;
  color: #f4f8f2;
  font-weight: 800;
}

.mobile-sticky-cta {
  display: none;
}

.header-nav a[aria-current="page"] {
  color: var(--green-dark);
}

.industry-badges a {
  padding: 6px 12px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--brown);
  font-size: 13px;
  font-weight: 800;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.page-hero {
  padding-top: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
  background: #eef3ee;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a::after {
  content: "/";
  margin-left: 8px;
  color: #b9b0a2;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: start;
}

.content-panel,
.simple-list p {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.content-panel {
  padding: 28px;
}

.content-panel p,
.simple-list p {
  color: var(--muted);
}

.content-panel p:last-child,
.simple-list p:last-child {
  margin-bottom: 0;
}

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

.simple-list p {
  margin: 0;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 800;
}

.link-card-grid,
.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.link-card,
.article-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 26px rgba(26, 44, 34, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.link-card::before,
.article-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--green);
}

.link-card:hover,
.article-card:hover {
  border-color: #c8d8cb;
  background: #fff;
  transform: translateY(-2px);
}

.link-card span,
.article-card span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.link-card strong,
.article-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
}

.link-card small,
.article-card p,
.article-card time {
  color: var(--muted);
}

.article-card-grid.compact .article-card {
  min-height: 0;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 230px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.article-layout .breadcrumbs,
.article-header {
  grid-column: 1 / -1;
}

.article-header {
  max-width: 920px;
}

.article-header p {
  color: var(--muted);
  font-size: 17px;
}

.article-header time {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.article-summary {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  max-width: 920px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-summary strong {
  color: var(--green-dark);
  font-size: 15px;
}

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

.article-summary li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 800;
}

.article-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.toc {
  position: sticky;
  top: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.toc strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-dark);
}

.toc ol {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.article-body {
  display: grid;
  gap: 30px;
  max-width: 790px;
}

.article-body section {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.article-body p {
  color: var(--muted);
}

.cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: none;
  padding-left: max(clamp(18px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
  padding-right: max(clamp(18px, 4vw, 34px), calc((100vw - var(--max)) / 2 + 34px));
  background: #213d31;
  color: #fff;
}

.cta-strip .eyebrow,
.cta-strip p {
  color: #d8eadc;
}

.cta-strip h2 {
  margin-bottom: 12px;
  color: #fff;
}

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

.check-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--green-dark);
  font-weight: 900;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.data-table th,
.data-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  width: 220px;
  background: #f5f8f4;
  color: var(--green-dark);
}

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 1020px) {
  .hero,
  .split,
  .answer-strip,
  .industry-answer,
  .pricing-band,
  .revenue,
  .why-now,
  .final-cta,
  .page-grid,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .editorial-visual img {
    min-height: 440px;
  }

  .mini-record-card {
    left: 18px;
    top: 18px;
  }

  .device-card {
    margin: 0;
  }

  .karte-card {
    right: 0;
  }

  .pain-grid,
  .reason-grid,
  .feature-grid,
  .benefit-list,
  .process-list,
  .link-card-grid,
  .article-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    min-height: 64px;
  }

  .header-nav a:not(.nav-cta) {
    display: none;
  }

  .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .hero {
    padding-top: 42px;
    gap: 34px;
  }

  h1 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .trust-badges {
    grid-template-columns: 1fr;
  }

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

  .trust-badges {
    display: grid;
  }

  .hero-visual {
    min-height: auto;
  }

  .editorial-visual img {
    min-height: 300px;
    max-height: 360px;
    object-position: center;
  }

  .hero-proof-card,
  .mini-record-card {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 10px;
  }

  .mini-record-card {
    display: none;
  }

  .device-card,
  .karte-card {
    width: 100%;
  }

  .karte-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 14px;
  }

  .meal-grid {
    grid-template-rows: repeat(2, 84px);
  }

  .section-heading {
    text-align: left;
  }

  .pain-grid,
  .answer-list,
  .reason-grid,
  .feature-grid,
  .menu-grid,
  .benefit-list,
  .process-list,
  .usecase-grid,
  .link-card-grid,
  .article-card-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }

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

  .usecase-grid article,
  .usecase-grid article:nth-child(4),
  .usecase-grid article:nth-child(5) {
    grid-column: auto;
  }

  .pain-grid article {
    min-height: auto;
  }

  .pain-grid {
    border-left: 0;
  }

  .pain-grid article {
    border-left: 1px solid var(--line);
  }

  .clinic .section-heading {
    padding: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 253, 248, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }

  .mobile-sticky-cta a {
    display: grid;
    place-items: center;
    min-height: 46px;
    border-radius: 8px;
    background: var(--green);
    color: #fff;
    font-weight: 900;
  }

  .mobile-sticky-cta a + a {
    background: var(--orange);
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    font-size: 15px;
  }

  .nav-cta {
    padding: 8px 12px;
    font-size: 13px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lead-form {
    padding: 18px;
  }
}
