/* Design 01 — clean standalone reconstruction */
:root {
  --page-width: 390px;
  --white: #fff;
  --canvas: #eef2f6;
  --navy: #062e60;
  --blue: #0a559d;
  --coral: #f4573d;
  --yellow: #f4b226;
  --ink: #142438;
  --muted: #667789;
  --line: #b6c4d2;
  --pale: #eef4fa;
  --section-x: 14px;
  --radius: 7px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--canvas);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-feature-settings: "palt" 1;
  font-kerning: normal;
  line-break: strict;
  text-rendering: geometricPrecision;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.lp {
  width: min(100%, var(--page-width));
  max-width: var(--page-width);
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(6, 46, 96, .16);
}

.site-header {
  display: none;
}

.top-story--generated {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.top-story-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.block,
.block-tight,
.reference-card,
.numbered-section,
.survey,
.consultation,
.closing,
footer {
  background: var(--white);
}

/* Hero */
.article-fv {
  background: var(--white);
}

.article-fv-scene--problem {
  position: relative;
  display: grid;
  grid-template-rows: auto 106px;
  overflow: hidden;
  background: var(--white);
}

.article-fv-media {
  grid-row: 1;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  filter: brightness(1.025) saturate(.97);
}

.article-fv-logo-overlay {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 12px;
  width: 110px;
  height: 66px;
  padding: 2px;
  object-fit: contain;
  background: var(--white);
  mix-blend-mode: multiply;
}

.hero-metrics {
  z-index: 2;
  grid-row: 2;
  height: 106px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  text-align: center;
}

.metric-card + .metric-card {
  border-left: 1px solid var(--navy);
}

.metric-card small {
  color: var(--navy);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .05em;
}

.metric-card p {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: -4px 0 -6px;
  color: var(--coral);
  line-height: 1;
}

.metric-card p strong {
  padding-right: 4px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 70px;
  font-weight: 400;
  letter-spacing: -.06em;
}

.metric-card p b {
  padding-bottom: 7px;
  font-size: 24px;
}

.metric-card > span:not(.metric-rays) {
  color: #111c2a;
  font-size: 7px;
  font-weight: 700;
  line-height: 1.35;
}

.metric-rays,
.offer-rays {
  position: absolute;
  width: 35px;
  height: 34px;
  color: var(--yellow);
  pointer-events: none;
}

.metric-rays {
  right: 15px;
  top: 42px;
}

.metric-card:first-child .metric-rays {
  right: 18px;
  top: 53px;
}

.metric-rays i,
.offer-rays i {
  position: absolute;
  display: block;
  font-size: 18px;
  line-height: 1;
  transform-origin: center;
}

.metric-rays i:nth-child(1),
.offer-rays i:nth-child(1) {
  top: 0;
  left: 5px;
  transform: rotate(-22deg);
}

.metric-rays i:nth-child(2),
.offer-rays i:nth-child(2) {
  top: 9px;
  left: 14px;
  transform: rotate(2deg);
}

.metric-rays i:nth-child(3),
.offer-rays i:nth-child(3) {
  top: 20px;
  left: 15px;
  transform: rotate(26deg);
}

/* Problem */
.problem {
  position: relative;
  min-height: 124px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.problem-layout {
  position: relative;
  min-height: 124px;
}

.problem-banner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 280px;
  height: 124px;
  object-fit: cover;
  object-position: right top;
  filter: brightness(1.02) saturate(.97);
}

.problem-copy {
  position: relative;
  z-index: 2;
  width: 72%;
  padding: 14px 0 10px var(--section-x);
}

.problem h2 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .05em;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem .check-list li {
  position: relative;
  margin: 7px 0;
  padding-left: 15px;
  color: #17314c;
  font-size: 7.2px;
  font-weight: 500;
  line-height: 1.45;
}

.problem .check-list li br {
  display: none;
}

.problem .check-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

/* Before / After */
.comparison {
  position: relative;
  min-height: 252px;
  padding: 14px 8px 12px;
  border-bottom: 1px solid var(--line);
}

.comparison h2 {
  position: absolute;
  z-index: 4;
  top: 3px;
  right: 72px;
  left: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .08em;
}

.comparison h2::before,
.comparison h2::after {
  width: 58px;
  height: 1px;
  content: "";
  background: var(--line);
}

.solution-compare {
  position: relative;
  min-height: 170px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: var(--white);
  border: 1px solid #9db2c7;
  border-radius: 8px;
}

.solution-panel {
  position: relative;
  min-width: 0;
  min-height: 170px;
  overflow: hidden;
}

.solution-panel + .solution-panel {
  border-left: 1px solid #c5d0db;
}

.solution-panel h3 {
  margin: 0;
  padding: 10px 9px 3px;
  line-height: 1.2;
}

.solution-panel h3 b {
  color: #627386;
  font-size: 12.5px;
  font-weight: 500;
}

.solution-panel--after h3 b {
  color: var(--coral);
}

.solution-panel h3 small {
  margin-left: 4px;
  color: #28394c;
  font-size: 6px;
  font-weight: 600;
}

.solution-panel ul {
  width: 67%;
  margin: 6px 0 0;
  padding: 0 0 0 9px;
  list-style: none;
}

.solution-panel li {
  display: grid;
  grid-template-columns: 11px minmax(0, 1fr);
  gap: 3px;
  align-items: start;
  margin: 8px 0;
  color: #2a3c4f;
  font-size: 7px;
  font-weight: 500;
  line-height: 1.38;
}

.solution-panel li i {
  color: #91a3b5;
  font-size: 10px;
}

.solution-panel--after li i {
  color: var(--coral);
}

.solution-panel > img {
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 110px;
  height: 124px;
  object-fit: contain;
  object-position: center bottom;
}

.solution-panel--after > img {
  right: -5px;
  width: 142px;
  object-position: center bottom;
}

.solution-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: -34px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-50%);
  font-size: 19px;
}

.comparison-closing {
  margin: 11px 0 0;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: .12em;
  text-align: center;
  text-decoration-line: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 8px;
}

.comparison--generated {
  min-height: 0;
  padding: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.ba-diagram-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
}

/* Common numbered sections */
.reference-card {
  border-bottom: 1px solid var(--line);
}

.numbered-section {
  padding-right: var(--section-x);
  padding-left: var(--section-x);
  border-bottom: 1px solid var(--line);
}

.section-title {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--navy);
}

.section-title > span {
  min-width: 36px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.section-title h2 {
  min-width: 0;
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .02em;
}

.section-title > small {
  margin-left: auto;
  font-size: 8px;
}

/* 01 */
.story-section {
  min-height: 378px;
  padding-top: 17px;
  padding-bottom: 20px;
}

.story-card {
  min-height: 256px;
  display: grid;
  grid-template-columns: 56% 44%;
}

.story-card > img {
  width: 100%;
  height: 256px;
  border-radius: 7px;
  object-fit: cover;
  object-position: 29% center;
  filter: brightness(1.015) saturate(.98);
}

.story-copy {
  position: relative;
  min-width: 0;
  padding: 17px 5px 8px 17px;
}

.story-copy > i {
  position: absolute;
  top: 4px;
  right: 0;
  color: #c7d9e9;
  font-size: 31px;
}

.story-copy strong,
.story-copy p {
  display: block;
  margin: 0;
  color: #111d2b;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.65;
}

.story-copy p {
  margin-top: 11px;
}

.story-copy small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 9px;
}

/* 02 */
.reviews-section {
  min-height: 367px;
  padding-top: 16px;
  padding-bottom: 20px;
}

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

.review-grid article {
  min-width: 0;
  min-height: 267px;
  display: flex;
  flex-direction: column;
  padding: 11px 9px 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: 8px;
}

.review-symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--pale);
  border-radius: 50%;
  font-size: 22px;
}

.stars {
  margin-top: 9px;
  color: var(--yellow);
  font-size: 14px;
  line-height: 1;
  letter-spacing: -.08em;
  white-space: nowrap;
}

.review-grid p {
  margin: 9px 0 10px;
  color: #111d2b;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.55;
}

.review-grid small {
  margin-top: auto;
  color: var(--muted);
  font-size: 8px;
}

/* 01 */
.service-section {
  min-height: 0;
}

.service-section--generated {
  padding: 0;
  background: var(--white);
}

.service-intro-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* 04 */
.flow-section {
  min-height: 296px;
  padding-top: 17px;
  padding-bottom: 15px;
}

.flow-figure {
  margin: 0;
}

.flow-headings,
.flow-descriptions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.flow-headings > div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.flow-headings b,
.steps > li > b {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 14px;
}

.flow-headings strong {
  color: var(--navy);
  font-size: 9px;
}

.flow-visual {
  position: relative;
  height: auto;
  margin: 5px 0 3px;
}

.flow-visual > img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: contain;
  object-position: center;
}

.flow-arrow {
  display: none;
}

.flow-descriptions p {
  margin: 0;
  color: #172639;
  font-size: 8.2px;
  line-height: 1.5;
  text-align: center;
}

/* 05 */
.steps-section {
  min-height: 248px;
  padding-top: 16px;
  padding-bottom: 18px;
}

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

.steps li {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.steps > li > b {
  position: absolute;
  top: -4px;
  left: 18px;
  z-index: 2;
}

.step-icon {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  color: #4d6b86;
  background: #fff6e5;
  border-radius: 50%;
  font-size: 48px;
}

.steps strong {
  color: #15283b;
  font-size: 10px;
}

.steps small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
}

.steps-message {
  width: fit-content;
  margin: 12px auto 0;
  padding-bottom: 5px;
  color: var(--navy);
  border-bottom: 2px solid var(--yellow);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
}

/* 06 */
.trust-section {
  min-height: 214px;
  padding-top: 16px;
  padding-bottom: 17px;
}

.trust-section--generated {
  min-height: 0;
  padding: 0;
  background: var(--white);
}

.trust-urgency-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

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

.trust-grid article {
  min-width: 0;
  min-height: 143px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 5px 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  text-align: center;
}

.trust-grid i {
  color: #4d6c88;
  font-size: 39px;
}

.trust-grid article:nth-child(1) i {
  color: var(--blue);
}

.trust-grid article:nth-child(2) i {
  color: #ef7373;
}

.trust-grid strong {
  min-height: 34px;
  margin-top: 7px;
  color: #13263a;
  font-size: 9px;
  line-height: 1.4;
}

.trust-grid small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 7px;
  line-height: 1.45;
}

/* 07 */
.limitations-section {
  min-height: 337px;
  padding-top: 16px;
  padding-bottom: 18px;
}

.limitations-layout {
  min-height: 213px;
  display: grid;
  grid-template-columns: minmax(0, 57%) minmax(0, 43%);
  gap: 0;
  overflow: hidden;
}

.limitations-layout > div {
  align-self: start;
  padding-top: 12px;
}

.limitations-layout p {
  margin: 0 0 11px;
  font-size: 8.8px;
  font-weight: 600;
  line-height: 1.55;
}

.limitations-layout ul {
  margin: 0;
  padding-left: 15px;
}

.limitations-layout li {
  margin: 5px 0;
  font-size: 7.4px;
  line-height: 1.45;
}

.limitations-layout img {
  width: 155px;
  height: 155px;
  align-self: end;
  object-fit: cover;
  object-position: 55% 58%;
  filter: brightness(1.09) saturate(.96);
}

.limitations-note {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 0;
  padding: 9px 11px;
  color: var(--navy);
  background: var(--pale);
  border-radius: 6px;
  font-size: 8px;
  font-weight: 600;
}

.limitations-note i {
  font-size: 18px;
}

/* CTA */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  background: var(--coral);
  border: 0;
  font-weight: 700;
  letter-spacing: .04em;
}

/* 08 */
.offer-section {
  min-height: 340px;
  padding-top: 11px;
  padding-bottom: 7px;
}

.offer-card {
  min-height: 258px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 142px;
  grid-template-rows: 78px 108px 54px;
  grid-template-areas:
    "utilities utilities"
    "caption zero"
    "cta cta";
  gap: 8px 8px;
}

.offer-utilities {
  grid-area: utilities;
  gap: 7px;
}

.offer-utilities span {
  min-width: 0;
  min-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
}

.offer-utilities i,
.offer-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  object-fit: contain;
  font-size: 38px;
}

.offer-utilities span:first-child i {
  color: var(--yellow);
}

.offer-caption {
  position: relative;
  grid-area: caption;
  align-self: center;
  justify-self: center;
  width: 128px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.offer-caption > i {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 128px;
  line-height: 1;
  transform: scaleY(.62);
}

.offer-caption > span {
  position: relative;
  z-index: 1;
  padding-bottom: 3px;
}

.offer-zero {
  position: relative;
  grid-area: zero;
  display: grid;
  place-items: center;
}

.offer-zero p {
  display: flex;
  align-items: flex-end;
  margin: 0;
  color: var(--coral);
  line-height: 1;
}

.offer-zero strong {
  padding-right: 5px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 98px;
  font-weight: 400;
  letter-spacing: -.08em;
}

.offer-zero b {
  padding-bottom: 9px;
  font-size: 30px;
}

.offer-rays {
  right: -5px;
  top: 18px;
}

.offer-cta {
  grid-area: cta;
  width: calc(100% - 6px);
  min-height: 54px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 20px;
  align-items: center;
  justify-self: center;
  gap: 8px;
  margin: 1px 3px 0;
  padding: 4px 10px 4px 7px;
  border: 2px solid var(--white);
  outline: 2px solid var(--coral);
  border-radius: 999px;
}

.offer-cta > b {
  padding: 5px 11px;
  color: var(--coral);
  background: var(--white);
  border-radius: 999px;
  font-size: 10px;
  white-space: nowrap;
}

.offer-cta > span {
  min-width: 0;
  font-size: 15.5px;
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
}

.offer-cta > i {
  font-size: 18px;
  text-align: right;
}

.urgency-block {
  min-height: 160px;
  display: grid;
  grid-template-columns: 61% 39%;
  align-items: center;
  margin: 0 var(--section-x);
  overflow: hidden;
  color: var(--white);
  background: #0b4a91;
  border-radius: 7px;
}

.urgency-content {
  padding: 15px 0 12px 16px;
}

.urgency-lead {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.urgency-lead strong {
  color: var(--white);
  font-size: 20px;
}

.urgency-copy,
.urgency-action {
  margin: 0;
  font-size: 7.4px;
  font-weight: 600;
  line-height: 1.55;
}

.urgency-action {
  margin-top: 5px;
}

.urgency-note {
  display: none;
}

.urgency-art {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center bottom;
}

/* 09 */
.faq-section {
  min-height: 202px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.faq-section .section-title {
  min-height: 34px;
  margin-bottom: 4px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 7px;
  color: #142a42;
  cursor: pointer;
  list-style: none;
  font-size: 8.2px;
  font-weight: 600;
  line-height: 1.4;
}

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

.faq-list summary::before {
  content: "Q.";
  color: var(--blue);
  font-size: 8.5px;
  font-weight: 800;
}

.faq-list summary i {
  margin-left: auto;
  color: var(--blue);
  transition: transform .2s ease;
}

.faq-list details[open] summary i {
  transform: rotate(180deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 10px 8px 25px;
  color: #465568;
  font-size: 8px;
  line-height: 1.5;
}

/* Reference 01 consultation form */
.survey,
.consultation {
  padding: 15px var(--section-x) 18px;
  border-bottom: 1px solid var(--line);
}

.survey-fields,
#consultation-form {
  padding: 12px 12px 0;
  background: var(--white);
  border: 1px solid #9fb3c7;
  border-radius: 8px;
}

.form-heading {
  margin: 0 0 11px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .06em;
}

.form-heading small {
  font-size: 7px;
  font-weight: 600;
}

.survey-fields {
  display: grid;
  gap: 9px;
}

.survey-field {
  display: grid;
  color: #14283d;
  font-size: 9px;
  font-weight: 600;
}

.survey-field span {
  margin-bottom: 4px;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  display: block;
  margin: 0;
  color: #1e2631;
  background: var(--white);
  border: 1px solid #bdcddd;
  border-radius: 4px;
}

input,
select {
  min-height: 26px;
  padding: 4px 8px;
  font-size: 8.5px;
}

textarea {
  min-height: 72px;
  padding: 7px 8px;
  resize: vertical;
  font-size: 8.5px;
  line-height: 1.5;
}

input::placeholder,
textarea::placeholder {
  color: #9aa7b5;
}

.form-stack {
  display: grid;
  gap: 6px;
}

.form-more {
  margin-top: 9px;
  border-top: 1px solid #d4dee8;
  border-bottom: 1px solid #d4dee8;
}

.form-more summary {
  min-height: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #49627c;
  cursor: pointer;
  list-style: none;
  font-size: 8px;
  font-weight: 600;
}

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

.form-more[open] summary i {
  transform: rotate(180deg);
}

.form-stack--more {
  padding: 4px 0 10px;
}

.form-stack label {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #14283d;
  font-size: 8.7px;
  font-weight: 600;
  line-height: 1.4;
}

.form-stack .form-row--textarea {
  align-items: start;
}

.form-row--textarea > textarea {
  min-height: 54px;
}

.form-stack input[type="date"],
.form-stack input[type="datetime-local"] {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-conditional {
  padding: 8px;
  background: var(--pale);
  border: 1px solid #cfdae6;
  border-radius: 6px;
}

.form-conditional[hidden] {
  display: none;
}

.form-checks {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 10px;
  border: 1px solid #c6d4e2;
  border-radius: 6px;
}

.property-checks {
  margin-top: 2px;
}

.form-checks legend {
  padding: 0 4px;
  font-size: 9px;
  font-weight: 700;
}

.form-checks label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8.5px;
}

.form-checks input,
.privacy input {
  width: 15px;
  height: 15px;
  min-height: 0;
  flex: 0 0 auto;
  margin: 0;
}

.privacy {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 10px 0 7px;
  font-size: 8.5px;
}

.privacy a {
  color: var(--blue);
  text-decoration: underline;
}

.submit-cta {
  width: 100%;
  min-height: 44px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 999px;
  font-size: 14px;
}

.form-note,
.form-result {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 7.5px;
  line-height: 1.45;
  text-align: center;
}

#consultation-form > .form-note {
  margin-right: -12px;
  margin-left: -12px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--navy);
}

.form-result:empty {
  display: none;
}

.form-result.is-success {
  padding: 8px;
  color: #0b6b39;
  background: #e9f8f0;
  border-radius: 5px;
}

.closing {
  position: relative;
  min-height: 108px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.closing,
footer {
  display: none;
}

.closing img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  display: none;
}

.closing-copy {
  position: relative;
  z-index: 2;
  padding: 16px var(--section-x);
}

.closing h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.closing-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.closing-points li {
  margin: 4px 0;
  font-size: 8px;
}

footer {
  padding: 14px var(--section-x) 17px;
  color: var(--navy);
  text-align: center;
}

footer p {
  margin: 0 0 4px;
  font-size: 9px;
}

footer strong {
  font-size: 11px;
}

@media (max-width: 374px) {
  .section-title h2 {
    font-size: 15.5px;
  }

  .story-copy {
    padding-left: 12px;
  }

  .story-copy strong,
  .story-copy p {
    font-size: 10px;
  }

  .review-grid {
    gap: 6px;
  }

  .review-grid article {
    padding-right: 7px;
    padding-left: 7px;
  }

  .review-grid p {
    font-size: 9px;
  }

  .offer-cta-copy span {
    font-size: 16px;
  }

  .form-stack label {
    grid-template-columns: 74px minmax(0, 1fr);
  }
}
