@font-face {
  font-display: swap;
  font-family: "Oswald";
  font-style: normal;
  font-weight: 700;
  src: url("../../../../assets/fonts/oswald-700.ttf") format("truetype");
}

:root {
  --bg: #faf8f3;
  --bg-alt: #f1ece3;
  --white: #ffffff;
  --text: #2f2f2f;
  --heading: #1f3a3d;
  --accent: #b8793a;
  --accent-dark: #91602f;
  --border: #ddd6c8;
  --notice: #efe9dd;
  --muted: #6b6258;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(47, 47, 47, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 47, 47, 0.018) 1px, transparent 1px);
  background-size: 28px 28px;
}

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

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

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

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

.container,
.site-header__inner,
.site-footer__inner,
.hero__inner {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.hero__content,
.hero__sheet,
.section-heading,
.service-item > div,
.compare-box,
.deliverables > *,
.deliverables__content,
.document-stack,
.checklist-card,
.price-card,
.flow-list li,
.free-box > *,
.free-audit-memo,
.profile > *,
.final-cta__inner {
  min-width: 0;
}

h1,
h2,
h3,
p,
li,
a,
summary {
  overflow-wrap: anywhere;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 248, 243, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
}

.site-header__inner > *,
.hero__visual,
.hero__visual picture,
.manga-eyecatch {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: fit-content;
  line-height: 1;
}

.brand__logo {
  display: block;
  width: clamp(118px, 13vw, 160px);
  height: auto;
}

.brand__wordmark,
.footer-wordmark {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand__wordmark {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  padding-block: 6px;
}

.site-nav a:hover,
.text-link:hover,
.footer-links a:hover {
  color: var(--accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--accent);
  border-radius: 7px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.hero {
  padding: 46px 0 68px;
  border-bottom: 1px solid var(--border);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-alt);
  box-shadow: 0 18px 44px rgba(31, 58, 61, 0.09);
}

.hero__content--overlay {
  position: relative;
  z-index: 2;
  width: min(100% - 96px, 860px);
  margin: -246px auto 0;
  padding: 22px 26px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 32px rgba(31, 58, 61, 0.08);
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.hero h1 {
  margin-bottom: 14px;
  color: var(--heading);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.55;
}

.hero__lead {
  max-width: 880px;
  margin-bottom: 10px;
  color: var(--heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.hero__note {
  max-width: 880px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

button.button {
  font: inherit;
}

.button--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.button--primary:hover,
.header-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button--secondary {
  background: var(--white);
  color: var(--heading);
  border-color: var(--border);
}

.button--secondary:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.hero__sheet {
  position: relative;
  padding: 34px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(31, 58, 61, 0.08);
}

.paper-mockup {
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(221, 214, 200, 0.4)) border-box;
}

.hero__sheet::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 22px;
  bottom: 18px;
  width: 1px;
  background: rgba(184, 121, 58, 0.25);
}

.sticky-label {
  display: inline-block;
  margin-bottom: 24px;
  padding: 4px 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero__sheet h2 {
  margin-bottom: 18px;
  color: var(--heading);
  font-size: 24px;
  line-height: 1.5;
}

.sheet-block {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(250, 248, 243, 0.72);
}

.sheet-block__title {
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.inquiry-quote {
  margin: 0;
  color: var(--heading);
  font-weight: 700;
  line-height: 1.7;
}

.sheet-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 600;
  line-height: 1.6;
}

.sheet-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox {
  position: relative;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border: 1px solid var(--accent);
  border-radius: 3px;
  background: var(--white);
}

.checkbox::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.reply-template {
  margin-top: 18px;
  padding: 18px 18px 18px 22px;
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  background: var(--notice);
}

.reply-template p:not(.sheet-block__title) {
  margin: 0;
  color: var(--heading);
  font-weight: 600;
  line-height: 1.75;
}

.sheet-foot {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--accent-dark);
  font-weight: 700;
}

.soft-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}

.soft-icon::before,
.soft-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.soft-icon--estimate::before {
  left: 16px;
  top: 13px;
  width: 24px;
  height: 30px;
  border: 2px solid var(--heading);
  border-radius: 3px;
  background: var(--white);
}

.soft-icon--estimate::after {
  right: 10px;
  top: 10px;
  width: 24px;
  height: 18px;
  border: 2px solid var(--accent);
  border-radius: 10px 10px 10px 2px;
  background: rgba(255, 255, 255, 0.86);
}

.soft-icon--checklist::before,
.soft-icon--docs::before,
.soft-icon--memo::before {
  left: 16px;
  top: 11px;
  width: 27px;
  height: 36px;
  border: 2px solid var(--heading);
  border-radius: 4px;
  background: var(--white);
  box-shadow: inset 0 10px 0 rgba(239, 233, 221, 0.95);
}

.soft-icon--checklist::after {
  left: 22px;
  top: 27px;
  width: 16px;
  height: 12px;
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.soft-icon--faq-clock::before {
  left: 12px;
  top: 14px;
  width: 29px;
  height: 28px;
  border: 2px solid var(--heading);
  border-radius: 5px;
  background: var(--white);
}

.soft-icon--faq-clock::after {
  right: 9px;
  bottom: 9px;
  width: 22px;
  height: 22px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: var(--bg);
}

.soft-icon--mail::before {
  left: 12px;
  top: 17px;
  width: 34px;
  height: 24px;
  border: 2px solid var(--heading);
  border-radius: 4px;
  background: var(--white);
}

.soft-icon--mail::after {
  left: 17px;
  top: 20px;
  width: 24px;
  height: 16px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) skew(-10deg, -10deg);
}

.soft-icon--search::before {
  left: 13px;
  top: 12px;
  width: 25px;
  height: 25px;
  border: 2px solid var(--heading);
  border-radius: 50%;
  background: var(--white);
}

.soft-icon--search::after {
  right: 15px;
  bottom: 14px;
  width: 18px;
  height: 2px;
  background: var(--accent);
  transform: rotate(45deg);
}

.soft-icon--memo::after {
  left: 23px;
  top: 29px;
  width: 21px;
  height: 2px;
  background: var(--accent);
  transform: rotate(-35deg);
}

.soft-icon--docs::after {
  left: 22px;
  top: 26px;
  width: 20px;
  height: 14px;
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.soft-icon--check::before {
  left: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  border: 2px solid var(--heading);
  border-radius: 50%;
  background: var(--white);
}

.soft-icon--check::after {
  left: 23px;
  top: 24px;
  width: 12px;
  height: 7px;
  border: solid var(--accent);
  border-width: 0 0 3px 3px;
  transform: rotate(-45deg);
}

.section {
  padding: 78px 0;
}

section[id] {
  scroll-margin-top: 92px;
}

.section--alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
}

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

.section-heading h2,
.free-box h2,
.profile h2,
.final-cta h2 {
  margin-bottom: 18px;
  color: var(--heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.55;
}

.section-heading p:not(.eyebrow),
.free-box p,
.profile p,
.final-cta p {
  color: var(--muted);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.check-grid p {
  position: relative;
  min-height: 66px;
  margin: 0;
  padding: 16px 18px 16px 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 500;
  line-height: 1.7;
}

.visual-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}

.checklist-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.checklist-card h3 {
  margin: 16px 0 10px;
  color: var(--heading);
  font-size: 20px;
  line-height: 1.55;
}

.checklist-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.75;
}

.check-grid p::before,
.paper-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--accent);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.notice {
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--notice);
}

.notice p {
  color: var(--heading);
  font-weight: 500;
}

.manga-eyecatch {
  margin: 0;
}

.manga-eyecatch picture,
.manga-support picture {
  display: block;
}

.manga-eyecatch img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(31, 58, 61, 0.08);
}

.manga-support {
  margin: 0 0 28px;
}

.manga-support img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(31, 58, 61, 0.07);
}

.manga-support--free-audit {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 920px);
  margin-bottom: 4px;
}

.manga-support--final-cta {
  width: min(100%, 780px);
  margin: 28px auto 30px;
}

.final-cta .manga-support img {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

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

.service-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.service-item__number,
.flow-step__number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}

.service-item h3,
.compare-box h3,
.format-box h3,
.price-card h3,
.flow-list h3 {
  margin-bottom: 8px;
  color: var(--heading);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.55;
}

.service-item p,
.compare-box p,
.price-card p,
.flow-list p,
.support-text {
  color: var(--muted);
}

.compare {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 22px;
  align-items: start;
}

.before-after {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(241, 236, 227, 0.65);
}

.compare-box {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.compare-box--before {
  background: #f4f1eb;
}

.compare-box--after {
  border-color: rgba(184, 121, 58, 0.48);
  box-shadow: 0 14px 30px rgba(31, 58, 61, 0.07);
}

.compare-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 11px;
  border-radius: 4px;
  background: var(--heading);
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.compare-box--after .compare-label {
  background: var(--accent);
}

.compare-note {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.organized-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-weight: 500;
}

.organized-list li {
  position: relative;
  padding: 10px 12px 10px 38px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
}

.organized-list li::before {
  content: counter(list-item);
  position: absolute;
  left: 12px;
  top: 11px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.support-text {
  margin-top: 24px;
  padding-left: 18px;
  border-left: 4px solid var(--accent);
  font-weight: 500;
}

.deliverables {
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.deliverables__content {
  display: grid;
  gap: 22px;
}

.document-stack {
  position: relative;
  min-height: 440px;
  padding: 18px;
  border: 1px solid rgba(221, 214, 200, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(rgba(47, 47, 47, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 47, 47, 0.02) 1px, transparent 1px),
    rgba(250, 248, 243, 0.7);
  background-size: 22px 22px, 22px 22px, auto;
}

.document-stack::before {
  content: "納品資料イメージ";
  position: absolute;
  top: 14px;
  left: 18px;
  z-index: 7;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.doc-card {
  position: absolute;
  width: min(86%, 340px);
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 28px rgba(31, 58, 61, 0.08);
}

.doc-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 34px;
  width: 58px;
  height: 18px;
  border: 1px solid rgba(221, 214, 200, 0.55);
  background: rgba(239, 233, 221, 0.9);
  transform: rotate(-2deg);
}

.doc-card h3 {
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  color: var(--heading);
  font-size: 18px;
  line-height: 1.5;
}

.doc-card p {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.doc-card--faq {
  top: 42px;
  left: 2px;
  z-index: 4;
  transform: rotate(-1.2deg);
}

.doc-card--reply {
  top: 120px;
  right: 0;
  z-index: 3;
  background: #fffdf8;
  transform: rotate(1deg);
}

.doc-card--sheet {
  top: 224px;
  left: 28px;
  z-index: 2;
  background: var(--bg);
  transform: rotate(-0.8deg);
}

.doc-card--form {
  top: 330px;
  right: 18px;
  z-index: 1;
  transform: rotate(0.7deg);
}

.paper-list {
  display: grid;
  gap: 12px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

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

.paper-list li {
  position: relative;
  padding: 13px 16px 13px 42px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.62);
  font-weight: 500;
  line-height: 1.65;
}

.paper-list li::before {
  top: 20px;
}

.format-box {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.format-box p {
  color: var(--accent-dark);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.price-card--featured {
  border: 2px solid var(--accent);
}

.price-card__label {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 3px 9px;
  border: 1px solid var(--accent);
  background: var(--bg);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.price {
  margin-bottom: 18px;
  color: var(--heading) !important;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
}

.price span {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.45em;
  font-weight: 600;
  vertical-align: 0.16em;
}

.price-card__summary {
  min-height: 5.4em;
  color: var(--muted);
  font-weight: 500;
}

.price-card ul {
  margin: 18px 0 0;
  padding-left: 1.2em;
  color: var(--muted);
}

.price-card__note {
  margin-top: auto;
  padding-top: 18px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}

.plan-comparison,
.service-terms {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.plan-comparison h3,
.service-terms h3 {
  margin-bottom: 18px;
  color: var(--heading);
  font-size: 21px;
  line-height: 1.5;
}

.plan-comparison__scroll {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.plan-comparison__scroll:focus-visible {
  outline: 3px solid rgba(184, 121, 58, 0.24);
  outline-offset: 4px;
}

.plan-comparison table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
}

.plan-comparison th,
.plan-comparison td {
  padding: 14px 16px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  line-height: 1.65;
}

.plan-comparison thead th {
  background: var(--heading);
  color: var(--white);
  font-size: 14px;
}

.plan-comparison tbody th {
  width: 22%;
  background: var(--bg-alt);
  color: var(--heading);
  font-size: 14px;
}

.plan-comparison td {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.service-terms {
  background: var(--notice);
}

.service-terms ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.3em;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.notice--price {
  margin-top: 22px;
}

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

.flow-list li {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.flow-step__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.flow-step__icon {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--border));
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent) 7%, var(--white));
  color: var(--accent-dark);
}

.flow-step__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.free-box {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: 30px;
  align-items: center;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.free-box .button {
  grid-column: 1 / -1;
  justify-self: start;
}

.free-box > .paper-list {
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.free-audit-memo {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(31, 58, 61, 0.07);
}

.free-audit-memo::before {
  content: "";
  position: absolute;
  inset: 64px 28px auto;
  height: 1px;
  background: var(--border);
}

.free-audit-memo p {
  color: var(--heading);
  font-weight: 600;
  line-height: 1.75;
}

.free-audit-memo ol {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding-left: 1.3em;
  color: var(--text);
  font-weight: 600;
}

.memo-foot {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 6px;
  background: var(--notice);
  color: var(--accent-dark) !important;
}

.request-note {
  grid-column: 1 / -1;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}

.request-note h3 {
  margin-bottom: 8px;
  color: var(--heading);
  font-size: 19px;
  line-height: 1.55;
}

.request-note p {
  margin-bottom: 14px;
}

.request-note ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding-left: 1.1em;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.7;
}

.application-form-panel,
.application-form-panel * {
  min-width: 0;
}

.application-form-panel {
  display: grid;
  gap: 22px;
  scroll-margin-top: 96px;
  background: #fffdf8;
}

.application-form-panel__head p:not(.eyebrow),
.application-form-panel__fallback p,
.application-form__actions p {
  color: var(--muted);
  font-weight: 500;
}

.application-form-panel__head .application-form-panel__assurance {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--accent);
  background: var(--notice);
  color: var(--heading);
}

.application-form-panel__assurance strong {
  color: var(--accent-dark);
}

.application-form {
  position: relative;
  display: grid;
  gap: 22px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.application-form label,
.application-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.application-form span,
.application-form legend {
  color: var(--heading);
  font-weight: 700;
  line-height: 1.55;
}

.application-form em {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-style: normal;
  line-height: 1.4;
  vertical-align: 0.08em;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  line-height: 1.6;
}

.application-form textarea {
  resize: vertical;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  outline: 3px solid rgba(184, 121, 58, 0.2);
  border-color: var(--accent);
}

.application-form fieldset {
  align-content: start;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.application-form .form-choice {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.6;
}

.application-form .form-choice input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
  accent-color: var(--accent);
}

.application-form .form-choice span {
  color: var(--text);
  font-weight: 600;
}

.form-choice--fixed {
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--notice);
}

.application-form__wide,
.application-form__actions {
  grid-column: 1 / -1;
}

.privacy-consent {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--border);
  background: var(--notice);
}

.privacy-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.privacy-dialog-open {
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--accent-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.privacy-dialog-open:hover {
  color: var(--heading);
}

.privacy-dialog {
  width: min(760px, calc(100vw - 32px));
  max-height: min(82dvh, 760px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  box-shadow: 0 28px 80px rgba(31, 58, 61, 0.24);
}

.privacy-dialog:not([open]) {
  display: none;
}

.privacy-dialog::backdrop {
  background: rgba(31, 58, 61, 0.48);
  backdrop-filter: blur(5px);
}

.privacy-dialog__body {
  position: relative;
  display: grid;
  gap: 20px;
  max-height: inherit;
  overflow: auto;
  padding: clamp(28px, 5vw, 52px);
}

.privacy-dialog__body > .eyebrow,
.privacy-dialog__body > h3 {
  margin: 0;
}

.privacy-dialog__body > h3 {
  padding-right: 72px;
  color: var(--heading);
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.3;
}

.privacy-dialog__close {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 9px 11px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  line-height: 1;
}

.privacy-dialog__content {
  display: grid;
  border-top: 1px solid var(--border);
}

.privacy-dialog__content section {
  padding-block: 18px;
  border-bottom: 1px solid var(--border);
}

.privacy-dialog__content h4 {
  margin: 0 0 6px;
  color: var(--heading);
  font-size: 16px;
}

.privacy-dialog__content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.privacy-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.privacy-dialog__actions > a {
  border-bottom: 1px solid currentColor;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
}

.application-form__actions {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--notice);
}

.application-form__actions .button {
  justify-self: start;
}

.application-form__actions .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.application-form__status {
  min-height: 1.7em;
  color: var(--heading) !important;
  font-size: 14px;
  font-weight: 700 !important;
}

.application-form__status[data-status="success"] {
  color: #2f6a4f !important;
}

.application-form__status[data-status="error"] {
  color: #9d3028 !important;
}

.turnstile-row:not([hidden]) {
  display: block;
  margin-top: 4px;
}

.google-form-submit-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
}

.application-form-panel__fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(239, 233, 221, 0.64);
}

.form-complete-dialog {
  width: min(calc(100% - 32px), 520px);
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 24px 60px rgba(31, 58, 61, 0.22);
}

.form-complete-dialog::backdrop {
  background: rgba(31, 58, 61, 0.42);
}

.form-complete-dialog__body {
  display: grid;
  gap: 14px;
  padding: 28px;
  background:
    linear-gradient(rgba(47, 47, 47, 0.035) 1px, transparent 1px),
    var(--white);
  background-size: 100% 28px, auto;
}

.form-complete-dialog h3 {
  color: var(--heading);
  font-size: 24px;
  line-height: 1.55;
}

.form-complete-dialog p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 500;
}

.form-complete-dialog form {
  margin-top: 4px;
}

.profile {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.profile__body {
  padding: 30px;
  border-left: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.48);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--heading);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 56px 20px 22px;
  color: var(--heading);
  font-weight: 700;
  line-height: 1.7;
  list-style: none;
  position: relative;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 22px;
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
}

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

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

.final-cta {
  padding: 84px 0;
  background: var(--heading);
  color: var(--white);
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.final-cta .eyebrow,
.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta .eyebrow {
  margin-bottom: 18px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta__title {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.final-cta__title-line {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.08em 0.22em;
  max-width: 100%;
  color: var(--white);
  line-height: 1.35;
  white-space: nowrap;
}

.final-cta__title-line--lead {
  font-size: 30px;
  font-weight: 600;
}

.final-cta__title-line--from {
  font-size: 28px;
  font-weight: 600;
}

.final-cta__title-line--to {
  padding: 2px 0 6px;
  font-size: 40px;
  font-weight: 700;
}

.final-cta__word {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.final-cta__word--quiet {
  font-size: 0.88em;
  font-weight: 600;
  opacity: 0.9;
}

.final-cta__word--lead {
  font-size: 0.92em;
  font-weight: 600;
  opacity: 0.96;
}

.final-cta__word--marker {
  z-index: 0;
  padding: 0 0.1em 0.04em;
  font-size: 1.06em;
  font-weight: 700;
}

.final-cta__word--marker::before,
.final-cta__word--hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.42em;
  border-radius: 999px;
  z-index: -1;
}

.final-cta__word--marker::before {
  background: rgba(184, 121, 58, 0.52);
}

.final-cta__word--accent {
  color: #f4d2a5;
  font-size: 0.9em;
  font-weight: 700;
}

.final-cta__word--hero {
  z-index: 0;
  padding: 0 0.18em 0.08em;
  color: #fff3d7;
  font-size: 1.24em;
  font-weight: 700;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.22);
}

.final-cta__word--hero::before {
  bottom: -0.01em;
  height: 0.44em;
  background: rgba(184, 121, 58, 0.94);
}

.final-cta__word--tail {
  font-size: 0.82em;
  font-weight: 600;
  opacity: 0.92;
}

.final-cta p {
  max-width: 720px;
  opacity: 0.88;
}

.final-cta__message {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.35em;
  justify-content: center;
}

.final-cta__message span {
  display: inline-block;
  white-space: nowrap;
}

.final-cta__message--sub {
  margin-top: 4px;
  font-size: 15px;
  opacity: 0.76 !important;
}

.final-cta .button {
  margin-top: 18px;
  min-width: 280px;
  justify-content: center;
  background: var(--white);
  color: var(--heading);
  border-color: var(--white);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
}

.final-cta__actions .button--secondary {
  border-color: rgba(255, 255, 255, 0.64);
  background: transparent;
  color: var(--white);
  box-shadow: none;
}

.final-cta__actions .button--secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.final-cta .button:hover {
  background: var(--bg-alt);
  border-color: var(--bg-alt);
}

.site-footer {
  padding: 30px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-footer strong {
  color: var(--heading);
}

.site-footer__inner > p {
  display: grid;
  gap: 8px;
}

.footer-wordmark {
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .site-header__inner {
    min-height: auto;
    padding: 14px 0;
  }

  .site-nav {
    display: none;
  }

  .hero {
    padding: 38px 0 58px;
  }

  .hero__inner,
  .deliverables,
  .free-box,
  .profile {
    grid-template-columns: 1fr;
  }

  .document-stack {
    min-height: 430px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero__lead {
    font-size: 16px;
  }

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

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

  .flow-list li {
    min-height: auto;
  }

  .profile__body {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
    line-height: 1.85;
  }

  .container,
  .site-header__inner,
  .site-footer__inner,
  .hero__inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .site-header__inner {
    gap: 10px;
    min-height: 58px;
    padding: 9px 0;
  }

  .brand__logo {
    width: 118px;
  }

  .brand__wordmark {
    font-size: clamp(0.9rem, 4.6vw, 1.1rem);
  }

  .header-cta {
    flex: 0 1 112px;
    padding-inline: 13px;
    font-size: 13px;
    text-align: center;
    white-space: normal;
  }

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

  .hero__inner {
    gap: 0;
  }

  .hero__visual img {
    border-radius: 7px;
    box-shadow: 0 12px 28px rgba(31, 58, 61, 0.08);
  }

  .hero__content--overlay {
    width: 100%;
    margin-top: 16px;
    padding: 20px;
    background: var(--white);
    display: flex;
    flex-direction: column;
  }

  .hero__content--overlay .hero__actions {
    order: -1;
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: 22px;
    line-height: 1.55;
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__note {
    font-size: 14px;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero__sheet,
  .compare-box,
  .before-after,
  .format-box,
  .price-card,
  .plan-comparison,
  .service-terms,
  .free-box,
  .free-audit-memo,
  .profile__body {
    padding: 22px;
  }

  .sheet-checks {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

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

  .section-heading h2,
  .free-box h2,
  .profile h2,
  .final-cta h2 {
    font-size: 25px;
  }

  .check-grid,
  .visual-card-grid,
  .compare,
  .organized-list,
  .paper-list--columns,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .check-grid p {
    min-height: auto;
  }

  .service-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
  }

  .service-item__number,
  .flow-step__number {
    width: 36px;
    height: 36px;
  }

  .service-item h3,
  .compare-box h3,
  .format-box h3,
  .price-card h3,
  .flow-list h3 {
    font-size: 19px;
  }

  .organized-list {
    grid-template-columns: 1fr;
  }

  .price {
    font-size: 30px;
  }

  .price-card__summary {
    min-height: 0;
  }

  .plan-comparison__scroll {
    padding-bottom: 8px;
  }

  .plan-comparison table {
    min-width: 680px;
  }

  .free-box {
    gap: 24px;
  }

  .free-box > .paper-list {
    grid-template-columns: 1fr;
  }

  .document-stack {
    min-height: 500px;
  }

  .doc-card {
    width: min(92%, 330px);
  }

  .doc-card--sheet {
    left: 8px;
  }

  .doc-card--form {
    right: 8px;
  }

  .request-note ul {
    grid-template-columns: 1fr;
  }

  .application-form__grid {
    grid-template-columns: 1fr;
  }

  .application-form__actions .button,
  .application-form-panel__fallback,
  .application-form-panel__fallback .button {
    width: 100%;
  }

  .privacy-dialog__actions,
  .final-cta__actions {
    width: 100%;
  }

  .privacy-dialog__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .privacy-dialog__actions .button,
  .final-cta__actions .button {
    width: 100%;
    min-width: 0;
  }

  .free-box .button {
    justify-self: stretch;
  }

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

  .final-cta__title {
    gap: 8px;
  }

  .final-cta__title-line--lead {
    font-size: 23px;
  }

  .final-cta__title-line--from {
    gap: 0.04em;
    font-size: clamp(17px, 5vw, 22px);
  }

  .final-cta__title-line--to {
    padding-inline: 10px;
    gap: 0.05em;
    font-size: clamp(23px, 7vw, 28px);
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 380px) {
  .hero h1 {
    font-size: 21px;
  }

  .header-cta {
    max-width: 138px;
  }

  .final-cta__title-line--from {
    font-size: 16px;
  }

  .final-cta__title-line--to {
    padding-inline: 0;
    font-size: 21px;
  }
}
