:root {
  --primary: #0f766e;
  --primary-dark: #0b4f49;
  --primary-soft: #eaf7f3;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --ink: #171717;
  --text: #3b3b3b;
  --muted: #6a6a6a;
  --line: #d9e7e2;
  --accent: #c98a2c;
  --accent-dark: #a96e16;
  --accent-soft: #fff3df;
  --shadow: 0 18px 48px rgba(18, 56, 50, 0.11);
  --soft-shadow: 0 10px 24px rgba(18, 56, 50, 0.08);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 0%, rgba(15, 118, 110, 0.08), transparent 24rem),
    linear-gradient(180deg, #fffefa 0%, var(--paper) 40%, #fffdfa 100%);
  color: var(--ink);
  font-family:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 118, 110, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 118, 110, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 70%);
}

.mobile-view {
  display: none;
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: 0;
}

.container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  min-height: 76px;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 28px;
  align-items: center;
  padding: 14px clamp(20px, 4vw, 58px);
  border-bottom: 1px solid rgba(11, 79, 73, 0.1);
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 900;
  color: var(--primary-dark);
}

.brand-mark {
  position: relative;
  width: 30px;
  height: 30px;
  border: 2px solid var(--primary);
  border-radius: 9px;
  background: var(--surface);
  box-shadow: inset 9px -9px 0 var(--primary-soft);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  background: var(--primary);
}

.brand-mark::before {
  top: 7px;
  left: 7px;
  width: 12px;
  height: 2px;
}

.brand-mark::after {
  top: 15px;
  left: 7px;
  width: 16px;
  height: 2px;
  opacity: 0.62;
}

.brand-text {
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: clamp(18px, 2vw, 34px);
  align-items: center;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.header-cta {
  padding: 12px 24px;
  background: linear-gradient(180deg, #dc9b2b, var(--accent));
  color: #fff;
  font-size: 14px;
  box-shadow: 0 14px 28px rgba(201, 138, 44, 0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(50px, 6vw, 86px) 0 48px;
}

.hero::before {
  position: absolute;
  top: 80px;
  right: -120px;
  width: 360px;
  height: 720px;
  content: "";
  border-left: 2px solid rgba(15, 118, 110, 0.18);
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), transparent 68%);
  pointer-events: none;
  transform: skewX(-18deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  grid-template-columns: minmax(470px, 0.88fr) minmax(580px, 1.12fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.desktop-live-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 900;
}

.desktop-live-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(201, 138, 44, 0.22);
}

.desktop-live-row strong {
  color: #222;
}

.hero-dashboard-image img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(11, 79, 73, 0.14);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(18, 56, 50, 0.11);
}

.eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 26px;
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 900;
}

.hero h1 {
  color: #2a211d;
  font-size: clamp(44px, 4.2vw, 60px);
  font-weight: 900;
  line-height: 1.13;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero h1 span {
  color: var(--primary);
}

.lead {
  max-width: 620px;
  margin-top: 24px;
  color: var(--text);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 600;
}

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

.button {
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--primary-dark);
  box-shadow: var(--soft-shadow);
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(180deg, #dd9b2b, var(--accent));
  color: #fff;
  box-shadow: 0 15px 30px rgba(201, 138, 44, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
}

.button-icon {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 5px;
  color: currentColor;
  font-size: 0;
}

.button-icon::before,
.button-icon::after {
  content: "";
  width: 3px;
  height: 7px;
  margin-top: -12px;
  border-radius: 4px;
  background: currentColor;
}

.button-icon::after {
  margin-left: 8px;
}

.quick-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 560px;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

.quick-points div {
  display: grid;
  min-height: 86px;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.quick-points div + div {
  border-left: 1px solid var(--line);
}

.quick-points p {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.line-icon {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  color: var(--primary);
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
  border-color: currentColor;
}

.person::before {
  top: 3px;
  left: 10px;
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-radius: 50%;
}

.person::after {
  right: 5px;
  bottom: 3px;
  left: 5px;
  height: 14px;
  border: 2px solid;
  border-radius: 14px 14px 4px 4px;
}

.chat::before,
.window::before {
  inset: 4px 3px 7px;
  border: 2px solid;
  border-radius: 8px;
}

.chat::after {
  right: 8px;
  bottom: 4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(45deg);
}

.shield::before {
  inset: 2px 4px;
  border: 2px solid;
  border-radius: 14px 14px 16px 16px;
  clip-path: polygon(50% 0, 100% 18%, 86% 78%, 50% 100%, 14% 78%, 0 18%);
}

.shield::after,
.safe::after {
  top: 9px;
  left: 10px;
  width: 9px;
  height: 5px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(45deg);
}

.hero-board {
  min-width: 0;
}

.board-window {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(11, 79, 73, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.window-dots {
  display: flex;
  gap: 7px;
  margin-bottom: 10px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #edb189;
}

.window-dots span:nth-child(2) {
  background: #e3c46e;
}

.window-dots span:nth-child(3) {
  background: #62b89a;
}

.board-title {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 900;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(84px, 1fr));
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}

.pipeline span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
}

.pipeline span:nth-of-type(3) {
  background: #f6f2eb;
  color: #241b17;
}

.pipeline i {
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid #c8d7d1;
  border-right: 2px solid #c8d7d1;
  transform: rotate(45deg);
}

.pipeline i:nth-of-type(1) {
  left: 23%;
}

.pipeline i:nth-of-type(2) {
  left: 41%;
}

.pipeline i:nth-of-type(3) {
  left: 59%;
}

.pipeline i:nth-of-type(4) {
  left: 77%;
}

.board-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr 1fr 0.9fr;
  gap: 12px;
}

.board-grid article,
.improvement-board,
.memo-grid article,
.problem-grid article,
.industry-grid article,
.support-grid article,
.price-grid article,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(18, 56, 50, 0.05);
}

.board-grid article {
  min-height: 260px;
  padding: 14px;
}

.board-grid h3,
.memo-grid h3,
.support-grid h3,
.industry-grid h3,
.price-grid h3 {
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 900;
}

.inbox-card h3 {
  margin: 10px 0 8px;
  color: #1f302d;
  font-size: 11px;
}

.message {
  margin-top: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.message.green {
  background: #c9ead5;
  border-color: #b1dcc1;
}

.message.large {
  margin-top: 16px;
  min-height: 92px;
  display: flex;
  align-items: center;
}

.board-grid small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}

button {
  font: inherit;
}

.board-grid button,
.faq-card button,
.reply-card button {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 6px 12px;
  border: 0;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 900;
}

.draft-card p,
.faq-card p,
.reply-overlay p {
  margin-top: 12px;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
}

.draft-lines {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.draft-lines span,
.soft-lines span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #e9ece8;
}

.draft-lines span:nth-child(2),
.soft-lines span:nth-child(2) {
  width: 80%;
}

.draft-lines span:nth-child(3),
.soft-lines span:nth-child(3) {
  width: 64%;
}

.draft-card em {
  display: inline-flex;
  margin-top: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f7f1e9;
  color: var(--text);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.confirm-card {
  text-align: center;
}

.avatar {
  width: 58px;
  height: 58px;
  margin: 18px auto 12px;
  border: 8px solid #e6f1ed;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, #f0c6ab 0 23%, transparent 24%),
    radial-gradient(circle at 50% 102%, #3c8c83 0 42%, transparent 43%),
    #d7efe7;
}

.confirm-card ul,
.support-grid ul,
.price-grid ul,
.memo-grid ul,
.memo-grid ol,
.improvement-board ol {
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.confirm-card li,
.support-grid li,
.price-grid li,
.memo-grid li,
.improvement-board li {
  position: relative;
  margin-top: 8px;
  padding-left: 18px;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.confirm-card li::before,
.support-grid li::before,
.price-grid li::before,
.memo-grid li::before,
.improvement-board li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--primary);
}

.note {
  margin-top: 14px;
  padding: 9px;
  border-radius: 7px;
  background: #f4f4f0;
  color: #9a9a90;
  font-size: 11px;
  font-weight: 700;
}

.improvement-board {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
  padding: 16px;
  border-color: #ecd8b5;
  background: linear-gradient(180deg, #fffdfa, var(--accent-soft));
}

.improvement-board strong {
  color: #2d211b;
  font-size: 15px;
  font-weight: 900;
}

.improvement-board ol {
  margin: 0;
}

.improvement-board li {
  margin: 4px 0;
  color: var(--text);
}

.improvement-board li::before {
  background: var(--accent);
}

.improvement-board a,
.memo-grid a {
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
}

.trust-strip {
  display: grid;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary-soft), rgba(255, 255, 255, 0.88));
  overflow: hidden;
}

.trust-strip div {
  display: grid;
  min-height: 98px;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 36px;
}

.trust-strip div + div {
  border-left: 1px solid rgba(15, 118, 110, 0.18);
}

.trust-strip strong,
.trust-strip small {
  display: block;
}

.trust-strip strong {
  font-size: 16px;
  line-height: 1.5;
}

.trust-strip small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.consultant::before {
  inset: 3px 8px 13px;
  border: 2px solid;
  border-radius: 50%;
}

.consultant::after {
  right: 2px;
  bottom: 1px;
  left: 2px;
  height: 16px;
  border: 2px solid;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.safe::before {
  inset: 0;
  border: 2px solid;
  border-radius: 50%;
}

.doc::before {
  inset: 2px 6px;
  border: 2px solid;
  border-radius: 4px;
}

.doc::after {
  top: 10px;
  left: 12px;
  width: 11px;
  height: 2px;
  box-shadow: 0 7px 0 currentColor;
  background: currentColor;
}

.section {
  padding: clamp(58px, 7vw, 90px) 0;
}

.desktop-kicker {
  display: table;
  margin: 0 auto 14px;
  padding: 7px 16px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 999px;
  background: rgba(234, 247, 243, 0.9);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.section h2 {
  margin-bottom: 32px;
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.16;
  text-align: center;
}

.section h2 small {
  color: var(--muted);
  font-size: 0.45em;
  font-weight: 800;
}

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

.problem-grid {
  counter-reset: desktop-problem;
}

.problem-grid article {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  padding: 30px 26px;
}

.problem-grid article::after {
  position: absolute;
  right: 18px;
  top: 16px;
  counter-increment: desktop-problem;
  content: "0" counter(desktop-problem);
  color: rgba(15, 118, 110, 0.09);
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
}

.problem-grid h3 {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 900;
}

.problem-grid p,
.support-grid p,
.industry-grid p,
.price-grid p {
  margin-top: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}

.clock::before {
  inset: 2px;
  border: 2px solid;
  border-radius: 50%;
}

.clock::after {
  top: 7px;
  left: 14px;
  width: 8px;
  height: 9px;
  border-left: 2px solid;
  border-bottom: 2px solid;
}

.question::before {
  inset: 2px;
  border: 2px solid;
  border-radius: 50%;
}

.question::after {
  top: 7px;
  left: 12px;
  content: "?";
  border: 0;
  font-size: 18px;
  font-weight: 900;
}

.window::after {
  top: 11px;
  left: 8px;
  width: 14px;
  height: 2px;
  box-shadow: 0 6px 0 currentColor;
  background: currentColor;
}

.ai::before {
  inset: 3px;
  border: 2px solid;
  border-radius: 50%;
}

.ai::after {
  top: 8px;
  left: 8px;
  width: 14px;
  height: 14px;
  border: 2px solid;
  border-radius: 6px;
}

.sample {
  background:
    linear-gradient(145deg, transparent 0 36%, rgba(15, 118, 110, 0.08) 36% 38%, transparent 38%),
    linear-gradient(180deg, rgba(234, 247, 243, 0.86), rgba(255, 255, 255, 0));
}

.memo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(234, 247, 243, 0.6);
}

.memo-grid article {
  position: relative;
  min-height: 225px;
  padding: 26px 20px 24px 54px;
}

.memo-grid article::before {
  position: absolute;
  top: 26px;
  left: 20px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  content: "✓";
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.memo-grid h3 {
  margin-bottom: 12px;
}

.soft-lines {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.roadmap p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 12px;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.roadmap span {
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.sample-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.section-cta {
  display: flex;
  width: min(520px, 100%);
  min-height: 60px;
  align-items: center;
  justify-content: center;
  margin: 28px auto 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #dd9b2b, var(--accent));
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(201, 138, 44, 0.28);
}

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

.industry-grid article {
  padding: 28px;
}

.industry-grid h3 {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 21px;
}

.before-after {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.before-after p {
  min-height: 96px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.before-after p:last-child {
  border-color: #ead5b1;
  background: var(--accent-soft);
}

.before-after strong {
  display: block;
  margin-bottom: 6px;
  color: #2c241f;
  font-size: 13px;
}

.before-after p:last-child strong {
  color: var(--accent-dark);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.chips span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 900;
}

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

.support-grid article {
  min-height: 250px;
  padding: 32px;
}

.big-icon {
  display: inline-grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 18px;
  border: 3px solid var(--primary);
  border-radius: 14px;
  color: transparent;
  background:
    linear-gradient(var(--primary), var(--primary)) 18px 23px / 28px 3px no-repeat,
    linear-gradient(var(--primary), var(--primary)) 18px 34px / 22px 3px no-repeat,
    var(--primary-soft);
}

.goal {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 clamp(58px, 7vw, 90px);
}

.goal-inner {
  position: relative;
  display: grid;
  min-height: 360px;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border-radius: 18px;
  background: var(--primary-soft);
  box-shadow: var(--soft-shadow);
}

.goal-copy {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 5vw, 72px);
}

.goal-copy h2 {
  color: var(--primary-dark);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 900;
  line-height: 1.34;
}

.goal-copy p {
  max-width: 450px;
  margin-top: 20px;
  color: var(--text);
  font-weight: 700;
}

.goal img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.reply-overlay {
  position: absolute;
  right: 34px;
  bottom: 30px;
  display: grid;
  width: min(430px, 42%);
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.reply-overlay article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.reply-overlay h3 {
  font-size: 14px;
  font-weight: 900;
}

.reply-overlay button {
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 900;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-grid article {
  position: relative;
  padding: 34px 30px;
  text-align: center;
}

.price-grid .featured {
  border-color: #e2bd7b;
  background: linear-gradient(180deg, #fffdfa, var(--accent-soft));
  box-shadow: 0 18px 36px rgba(201, 138, 44, 0.14);
}

.ribbon {
  position: absolute;
  top: 18px;
  left: 24px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.price-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
}

.price-grid .featured strong {
  color: var(--accent-dark);
}

.price-grid ul {
  margin: 20px auto;
  max-width: 260px;
  text-align: left;
}

.price-grid a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.price-grid .featured a {
  background: var(--accent);
}

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

.faq details {
  padding: 0 20px;
}

.faq summary {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  color: var(--primary);
  font-size: 22px;
  line-height: 1;
}

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

.faq details p {
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.final-cta {
  padding: 0 0 34px;
}

.final-card {
  display: grid;
  min-height: 154px;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px clamp(34px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(90deg, var(--primary-soft), rgba(255, 255, 255, 0.82));
  box-shadow: 0 16px 34px rgba(18, 56, 50, 0.08);
}

.final-card h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.18;
}

.final-card p {
  margin-top: 6px;
  color: var(--text);
  font-weight: 700;
}

.final-card--form {
  grid-template-columns: 1fr;
  gap: 28px;
}

.final-card--form .final-card-intro {
  max-width: 720px;
}

.contact-form {
  display: grid;
  gap: 18px;
  width: 100%;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form .form-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contact-form .form-required,
.contact-form .form-optional {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

.contact-form .form-required {
  background: var(--accent);
  color: #fff;
}

.contact-form .form-optional {
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary-dark);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.55;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
  font-weight: 500;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.18);
}

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

.contact-form .form-consent {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.contact-form .form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}

.contact-form .form-submit {
  justify-self: start;
  margin-top: 4px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-weight: 800;
}

.contact-form .form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mobile-contact-form .form-submit {
  justify-self: stretch;
  width: 100%;
  justify-content: center;
}

.footer {
  padding: 20px 0;
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
}

.footer .container {
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer span {
  margin-left: auto;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-dashboard-image {
    max-width: 780px;
    margin: 0 auto;
  }

  .trust-strip,
  .problem-grid,
  .support-grid,
  .memo-grid,
  .industry-grid,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .memo-grid article:last-child {
    grid-column: 1 / -1;
  }

  .goal-inner {
    grid-template-columns: 1fr;
  }

  .goal img {
    min-height: 300px;
  }

  .reply-overlay {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    padding: 0 24px 24px;
  }
}

@media (max-width: 720px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .container,
  .hero-inner,
  .trust-strip,
  .goal {
    width: min(100% - 28px, 1240px);
  }

  .site-header {
    min-height: 68px;
    padding: 12px 14px;
  }

  .brand-text {
    font-size: 16px;
  }

  .header-cta {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .hero {
    padding: 36px 0 28px;
  }

  .hero h1 {
    font-size: clamp(35px, 10.5vw, 46px);
  }

  .hero-actions,
  .quick-points,
  .trust-strip,
  .problem-grid,
  .support-grid,
  .memo-grid,
  .industry-grid,
  .price-grid,
  .faq-grid,
  .final-card,
  .reply-overlay {
    grid-template-columns: 1fr;
  }

  .quick-points div + div,
  .trust-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .button,
  .header-cta {
    white-space: normal;
    text-align: center;
  }

  .trust-strip div {
    padding: 20px;
  }

  .section {
    padding: 52px 0;
  }

  .goal-copy {
    padding: 30px 24px;
  }

  .final-card {
    text-align: center;
  }

  .footer .container {
    flex-wrap: wrap;
  }

  .footer span {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .desktop-view {
    display: none;
  }

  .mobile-view {
    display: block;
    min-height: 100vh;
    overflow-x: hidden;
    background:
      radial-gradient(circle at 12% 0%, rgba(15, 118, 110, 0.1), transparent 18rem),
      linear-gradient(180deg, #fffefa 0%, var(--paper) 52%, #fffdfa 100%);
  }

  .mobile-header {
    position: sticky;
    top: 0;
    z-index: 80;
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(11, 79, 73, 0.1);
    background: rgba(251, 250, 247, 0.92);
    backdrop-filter: blur(18px);
  }

  .mobile-brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    color: var(--primary-dark);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
  }

  .mobile-header-cta {
    display: inline-flex;
    min-height: 42px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #dc9b2b, var(--accent));
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(201, 138, 44, 0.24);
  }

  .mobile-hero {
    position: relative;
    overflow: hidden;
    padding: 26px 14px 40px;
  }

  .mobile-hero::before {
    position: absolute;
    top: 86px;
    right: -70px;
    width: 180px;
    height: 420px;
    content: "";
    border-left: 2px solid rgba(15, 118, 110, 0.2);
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), transparent 64%);
    transform: skewX(-18deg);
    pointer-events: none;
  }

  .mobile-live-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-live-row span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 10px 22px rgba(201, 138, 44, 0.22);
  }

  .mobile-live-row strong {
    min-width: 0;
    color: #222;
    font-size: 12px;
    text-align: right;
  }

  .mobile-eyebrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    margin-bottom: 24px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-hero h1 {
    position: relative;
    z-index: 1;
    color: #2a211d;
    font-size: clamp(40px, 11.4vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .mobile-hero h1 span {
    color: var(--primary);
  }

  .mobile-hero p {
    position: relative;
    z-index: 1;
    margin-top: 22px;
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.78;
  }

  .mobile-actions {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    margin-top: 28px;
  }

  .mobile-actions .button {
    width: 100%;
    min-height: 56px;
    white-space: normal;
  }

  .mobile-hero-visual {
    position: relative;
    z-index: 1;
    margin-top: 30px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 22px 54px rgba(18, 56, 50, 0.12);
  }

  .mobile-hero-visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .mobile-trust {
    display: grid;
    gap: 12px;
    padding: 0 14px 46px;
  }

  .mobile-trust article,
  .mobile-card-list article,
  .mobile-memo article,
  .mobile-industry article,
  .mobile-price-list article,
  .mobile-faq details {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(18, 56, 50, 0.06);
  }

  .mobile-trust article {
    display: grid;
    min-height: 88px;
    grid-template-columns: 40px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    background: linear-gradient(90deg, var(--primary-soft), rgba(255, 255, 255, 0.88));
  }

  .mobile-trust strong,
  .mobile-trust small {
    display: block;
  }

  .mobile-trust strong {
    font-size: 17px;
    line-height: 1.45;
  }

  .mobile-trust small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
  }

  .mobile-section {
    position: relative;
    padding: 52px 14px;
  }

  .mobile-section-kicker {
    display: table;
    margin: 0 auto 12px;
    padding: 6px 14px;
    border: 1px solid rgba(15, 118, 110, 0.2);
    border-radius: 999px;
    background: rgba(234, 247, 243, 0.88);
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
  }

  .mobile-section h2,
  .mobile-goal h2,
  .mobile-final h2 {
    color: var(--primary-dark);
    font-size: clamp(30px, 8.8vw, 42px);
    font-weight: 900;
    line-height: 1.18;
    text-align: center;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .mobile-final h2 span {
    white-space: nowrap;
  }

  .mobile-card-list,
  .mobile-memo,
  .mobile-industry,
  .mobile-price-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
  }

  .mobile-card-list {
    counter-reset: mobile-problem;
  }

  .mobile-card-list article {
    position: relative;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding: 22px 20px;
    overflow: hidden;
  }

  .mobile-card-list article::after {
    position: absolute;
    right: 14px;
    top: 12px;
    counter-increment: mobile-problem;
    content: "0" counter(mobile-problem);
    color: rgba(15, 118, 110, 0.1);
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
  }

  .mobile-card-list h3 {
    font-size: 18px;
    font-weight: 900;
  }

  .mobile-card-list p {
    grid-column: 2;
    margin-top: -4px;
    color: var(--text);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.7;
  }

  .mobile-sample {
    background:
      linear-gradient(145deg, transparent 0 18%, rgba(15, 118, 110, 0.08) 18% 20%, transparent 20%),
      linear-gradient(180deg, rgba(234, 247, 243, 0.92), rgba(255, 255, 255, 0));
  }

  .mobile-memo {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(234, 247, 243, 0.7);
  }

  .mobile-memo article {
    position: relative;
    padding: 22px 20px 22px 58px;
  }

  .mobile-memo article::before {
    position: absolute;
    top: 22px;
    left: 20px;
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    content: "✓";
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
  }

  .mobile-memo strong,
  .mobile-industry h3,
  .mobile-price-list h3 {
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 900;
  }

  .mobile-section-cta {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    border-radius: 999px;
    background: linear-gradient(180deg, #dd9b2b, var(--accent));
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 16px 32px rgba(201, 138, 44, 0.28);
  }

  .mobile-memo p,
  .mobile-industry p,
  .mobile-price-list p,
  .mobile-final p,
  .mobile-goal p {
    margin-top: 10px;
    color: var(--text);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.78;
  }

  .mobile-industry article,
  .mobile-price-list article {
    padding: 20px;
  }

  .mobile-industry p {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
  }

  .mobile-industry p + p {
    border-color: #ead5b1;
    background: var(--accent-soft);
  }

  .mobile-industry strong {
    display: block;
    margin-bottom: 4px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 900;
  }

  .mobile-goal {
    margin: 14px 14px 44px;
    overflow: hidden;
    border-radius: 18px;
    background: var(--primary-soft);
    box-shadow: var(--soft-shadow);
  }

  .mobile-goal div {
    padding: 34px 24px 22px;
  }

  .mobile-goal h2 {
    text-align: left;
  }

  .mobile-goal img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: 62% center;
  }

  .mobile-price-list article {
    position: relative;
    text-align: center;
  }

  .mobile-price-list article.featured {
    border-color: #e2bd7b;
    background: linear-gradient(180deg, #fffdfa, var(--accent-soft));
    box-shadow: 0 16px 34px rgba(201, 138, 44, 0.14);
  }

  .mobile-price-list span {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 3px 12px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
  }

  .mobile-price-list strong {
    display: block;
    margin-top: 8px;
    color: var(--primary-dark);
    font-size: 34px;
    line-height: 1.15;
  }

  .mobile-price-list .featured strong {
    color: var(--accent-dark);
  }

  .mobile-faq {
    padding-top: 36px;
  }

  .mobile-faq details {
    margin-top: 10px;
    padding: 0 16px;
  }

  .mobile-faq summary {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--text);
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    list-style: none;
  }

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

  .mobile-faq summary::after {
    content: "+";
    color: var(--primary);
    font-size: 22px;
  }

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

  .mobile-faq details p {
    padding-bottom: 16px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
  }

  .mobile-final {
    margin: 0 14px 28px;
    padding: 26px 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, var(--primary-soft), rgba(255, 255, 255, 0.92));
    text-align: center;
  }

  .mobile-final .button {
    width: 100%;
    margin-top: 20px;
    min-height: 56px;
  }

  .mobile-footer {
    display: grid;
    gap: 8px;
    padding: 22px 14px;
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 700;
  }
}
