:root {
  --bg: #f5fafe;
  --bg-strong: #eaf5ff;
  --bg-deep: #0f3556;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --line: #d7e7f4;
  --text: #17324d;
  --text-soft: #4d647c;
  --primary: #63a9dd;
  --primary-deep: #2e78b7;
  --accent: #f28c28;
  --accent-deep: #d97516;
  --success: #16a34a;
  --shadow: 0 18px 45px rgba(20, 62, 99, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100% - 32px));
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  overflow-x: hidden;
}

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

.line {
  display: block;
}

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 84px 0;
}

.section--first {
  padding-top: 112px;
  padding-bottom: 72px;
}

.section--tint {
  background: linear-gradient(180deg, #f8fcff 0%, #eff7ff 100%);
}

.section--tint-strong {
  background: linear-gradient(180deg, #eaf5ff 0%, #dff0fd 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(215, 231, 244, 0.8);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-logo img {
  width: min(290px, 46vw);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff9f42 0%, var(--accent) 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 30px rgba(242, 140, 40, 0.24);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(242, 140, 40, 0.3);
  background: linear-gradient(180deg, #ffad57 0%, var(--accent-deep) 100%);
}

.cta-button--header {
  white-space: nowrap;
}

.cta-button--large {
  padding: 16px 28px;
  font-size: 1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(99, 169, 221, 0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(242, 140, 40, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f2f9ff 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.hero::before {
  width: 380px;
  height: 380px;
  background: rgba(99, 169, 221, 0.12);
  top: -100px;
  right: -100px;
}

.hero::after {
  width: 240px;
  height: 240px;
  background: rgba(242, 140, 40, 0.08);
  bottom: 20px;
  left: -80px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 28px clamp(28px, 4vw, 56px);
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(99, 169, 221, 0.14);
  color: var(--primary-deep);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.14);
  color: #d6ecff;
}

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

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.18;
}

.hero-copy {
  max-width: 620px;
  padding-top: 10px;
}

.hero-lower {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  align-items: start;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 11.8em;
}

.hero-title span {
  display: block;
}

.hero-subcopy {
  width: 100%;
  margin: 0 auto;
  max-width: 980px;
  font-size: 1.06rem;
  color: var(--text-soft);
  text-align: center;
}

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

.mini-card {
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(99, 169, 221, 0.2);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(21, 69, 108, 0.07);
}

.mini-card strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.5;
}

.mini-card span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.hero-cta-wrap {
  margin-top: 0;
  width: 100%;
  max-width: none;
  padding: 28px 32px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-label {
  margin: 0 0 12px;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--accent-deep);
  text-align: center;
}

.cta-label--light {
  color: #ffe4c7;
}

.hero-note {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.7;
  text-align: center;
}

.hero-visual {
  position: relative;
  min-width: 0;
  max-width: 500px;
  width: 100%;
  padding-top: 18px;
  justify-self: end;
}

.hero-image-card,
.split-visual,
.testimonial-visual,
.worry-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dceffd;
}

.hero-image-card img,
.split-visual img,
.testimonial-visual img,
.worry-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-card {
  aspect-ratio: 16 / 10;
}

.floating-card {
  position: absolute;
  max-width: 240px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(99, 169, 221, 0.22);
  box-shadow: 0 14px 34px rgba(19, 67, 106, 0.14);
}

.floating-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
}

.floating-card__label {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.floating-card--top {
  top: 18px;
  left: 18px;
}

.floating-card--bottom {
  right: 18px;
  bottom: 18px;
}

.trust-strip {
  padding-top: 0;
  margin-top: 0;
}

.stats-grid,
.card-grid {
  display: grid;
  gap: 22px;
}

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

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

.stat-card,
.info-card,
.feature-card,
.timeline-card,
.testimonial-card {
  min-width: 0;
  overflow-wrap: anywhere;
}

.stat-card {
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(99, 169, 221, 0.15);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.stat-number {
  margin: 0;
  color: var(--primary-deep);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
}

.stat-title {
  margin: 12px 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.stat-text {
  margin: 0;
  color: var(--text-soft);
}

.section-heading,
.section-heading--left {
  max-width: 760px;
  margin: 0 auto 36px;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.section-heading--narrow {
  max-width: 700px;
}

.section-heading--reason {
  max-width: 1040px;
}

.section-heading--reason h2 {
  white-space: nowrap;
}

.section-heading--reason p {
  max-width: 34ch;
}

.section-heading .eyebrow,
.section-heading--left .eyebrow {
  margin: 0;
}

.section-heading h2,
.section-heading--left h2,
.final-cta h2 {
  font-size: clamp(1.95rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1.28;
}

.section-heading p,
.section-heading--left p {
  max-width: 58ch;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.9;
}

.info-card,
.feature-card,
.timeline-card,
.testimonial-card {
  height: 100%;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(20, 62, 99, 0.07);
}

.info-card h3,
.feature-card h3,
.timeline-card h3,
.testimonial-card h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.55;
  text-wrap: balance;
  word-break: keep-all;
}

.info-card p,
.feature-card p,
.timeline-card p,
.testimonial-card p,
.note-box p,
.final-cta p {
  margin: 0;
  color: var(--text-soft);
  text-wrap: pretty;
}

.worry-card,
.reason-card,
.point-card,
.small-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #2f7dbf 0%, #5cabe3 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(46, 120, 183, 0.24);
}

.icon-badge--accent {
  background: linear-gradient(180deg, #ffb561 0%, #f28c28 100%);
  box-shadow: 0 10px 22px rgba(242, 140, 40, 0.28);
}

.icon-badge--blue {
  background: linear-gradient(180deg, #508fc4 0%, #3d7fb8 100%);
}

.note-box {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(242, 140, 40, 0.22);
  background: linear-gradient(180deg, rgba(255, 243, 230, 0.9) 0%, rgba(255, 249, 243, 0.95) 100%);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.split-section--reverse {
  grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1fr);
}

.split-visual {
  min-height: 500px;
}

.compact-grid .info-card {
  padding: 22px;
}

.worry-section .container,
.market-section .container {
  display: grid;
  gap: 28px;
}

.worry-visual {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

.worry-visual img {
  display: block;
  aspect-ratio: 16 / 9;
}

.market-heading {
  margin-bottom: 0;
}

.market-heading p {
  max-width: 66ch;
}

.market-cards .small-card p {
  font-size: 0.92rem;
  line-height: 1.72;
}

.market-visual {
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dceffd;
}

.market-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.market-cards {
  width: 100%;
  align-items: stretch;
}

.card-grid--3 > .info-card h3,
.card-grid--3 > .feature-card h3,
.card-grid--3 > .timeline-card h3,
.card-grid--3 > .testimonial-card h3 {
  max-width: 16ch;
  min-height: calc(1.55em * 3);
}

.card-grid--2 > .info-card h3,
.card-grid--2 > .feature-card h3,
.card-grid--2 > .timeline-card h3,
.card-grid--2 > .testimonial-card h3 {
  max-width: 20ch;
  min-height: calc(1.55em * 2);
}

.card-grid--3 > .info-card p,
.card-grid--3 > .feature-card p,
.card-grid--3 > .timeline-card p,
.card-grid--3 > .testimonial-card p {
  max-width: 29ch;
  line-height: 1.78;
}

.card-grid--2 > .info-card p,
.card-grid--2 > .feature-card p,
.card-grid--2 > .timeline-card p,
.card-grid--2 > .testimonial-card p {
  max-width: 44ch;
  line-height: 1.8;
}

.worry-card h3 {
  max-width: 22ch;
  min-height: calc(1.55em * 3);
}

.worry-card p {
  min-height: calc(1.8em * 3);
}

.reason-card h3,
.small-card h3 {
  min-height: calc(1.55em * 3);
}

.reason-grid .reason-card h3,
.reason-grid .reason-card p {
  max-width: none;
}

.reason-grid .reason-card h3 {
  text-wrap: pretty;
}

.reason-grid .reason-card p {
  line-height: 1.8;
  text-wrap: pretty;
}

.reason-card p {
  min-height: calc(1.8em * 4);
}

.small-card p {
  min-height: calc(1.72em * 2);
}

.feature-card h3,
.point-card h3 {
  min-height: calc(1.55em * 2);
}

.feature-grid .feature-card h3,
.feature-grid .feature-card p,
.point-grid .point-card h3,
.point-grid .point-card p,
.timeline-grid .timeline-card h3,
.timeline-grid .timeline-card p {
  max-width: none;
  text-wrap: pretty;
}

.feature-grid .feature-card h3 {
  min-height: calc(1.55em * 3);
}

.feature-grid .feature-card p {
  min-height: calc(1.8em * 3);
}

.point-grid .point-card h3 {
  min-height: calc(1.55em * 2);
}

.feature-card p {
  min-height: calc(1.8em * 2);
}

.point-grid .point-card p {
  min-height: calc(1.8em * 3);
}

.point-card p {
  min-height: calc(1.8em * 4);
}

.timeline-card h3 {
  max-width: none;
  min-height: 0;
}

.timeline-grid .timeline-card h3 {
  min-height: calc(1.55em * 2);
}

.timeline-grid .timeline-card p {
  min-height: calc(1.78em * 4);
}

.timeline-card p {
  min-height: calc(1.78em * 5);
}

.timeline-grid {
  gap: 18px;
}

.process-section {
  overflow: hidden;
}

.process-flow {
  display: grid;
  gap: 28px;
}

.process-top {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 30px;
  align-items: stretch;
}

.process-copy {
  align-self: center;
}

.process-heading {
  max-width: 560px;
  margin-bottom: 0;
}

.process-heading p {
  max-width: 31ch;
  text-wrap: pretty;
}

.process-visual {
  min-height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dceffd;
}

.process-visual img {
  width: 100%;
  min-height: 320px;
  height: 100%;
  display: block;
  object-fit: cover;
}

.process-steps {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.process-steps .timeline-card {
  gap: 12px;
  padding: 18px 16px 16px;
}

.process-steps .timeline-step {
  min-width: 88px;
  padding-inline: 10px;
}

.process-steps .timeline-card h3,
.process-steps .timeline-card p {
  max-width: none;
  text-wrap: pretty;
}

.process-steps .timeline-card h3 {
  min-height: calc(1.52em * 3);
  font-size: 1.06rem;
  line-height: 1.52;
}

.process-steps .timeline-card p {
  min-height: calc(1.76em * 4);
  font-size: 0.92rem;
  line-height: 1.76;
}

.value-section {
  overflow: hidden;
}

.value-flow {
  display: grid;
  gap: 26px;
}

.value-top {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.92fr);
  gap: 28px;
  align-items: start;
}

.value-copy {
  align-self: start;
}

.value-heading {
  max-width: 600px;
  margin-bottom: 0;
  justify-items: center;
  text-align: center;
}

.value-heading .eyebrow {
  width: fit-content;
  margin-inline: auto;
}

.value-heading h2 {
  max-width: 520px;
  line-height: 1.2;
}

.value-heading h2 .line {
  display: block;
}

.value-heading p {
  width: fit-content;
  max-width: none;
  margin-inline: auto;
  text-wrap: pretty;
}

.value-heading h2 .line,
.value-heading p .line {
  display: block;
}

.value-heading p .line + .line {
  margin-top: 0.1em;
}

.testimonial-heading h2 .line,
.testimonial-heading p .line {
  display: block;
}

.testimonial-heading p .line + .line {
  margin-top: 0.08em;
}

.value-visual {
  min-height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dceffd;
}

.value-visual img {
  width: 100%;
  min-height: 270px;
  height: 100%;
  display: block;
  object-fit: cover;
}

.value-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.value-points .point-card {
  gap: 12px;
  padding: 24px 18px 18px;
}

.value-points .point-card h3,
.value-points .point-card p {
  max-width: none;
  text-wrap: pretty;
}

.value-points .point-card h3 {
  min-height: calc(1.55em * 2);
}

.value-points .point-card p {
  min-height: calc(1.78em * 4);
  font-size: 0.95rem;
  line-height: 1.78;
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(99, 169, 221, 0.14);
  color: var(--primary-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.testimonial-wrap {
  display: grid;
  gap: 28px;
}

.testimonial-visual {
  min-height: 340px;
}

.testimonial-card {
  position: relative;
  padding-top: 28px;
}

.testimonial-grid .testimonial-card {
  gap: 14px;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 14px;
  left: 22px;
  color: rgba(46, 120, 183, 0.16);
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 800;
}

.quote {
  position: relative;
  z-index: 1;
  line-height: 1.9;
}

.testimonial-grid .quote {
  max-width: none;
  min-height: calc(1.9em * 4);
  text-wrap: pretty;
}

.author {
  margin-top: 14px !important;
  color: var(--primary-deep) !important;
  font-weight: 700;
  font-size: 0.94rem;
}

.quote .line + .line {
  margin-top: 2px;
}

.card-grid h3 .line + .line,
.card-grid p .line + .line {
  margin-top: 0.08em;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin-inline: auto;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(20, 62, 99, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.faq-toggle {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(99, 169, 221, 0.14);
  color: var(--primary-deep);
  font-size: 1.2rem;
  font-weight: 800;
  transition: transform var(--transition), background var(--transition);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition);
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px 0;
  color: var(--text-soft);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 22px;
}

.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
  background: rgba(242, 140, 40, 0.16);
  color: var(--accent-deep);
}

.final-cta {
  background: linear-gradient(135deg, #1e5d91 0%, #0f3556 100%);
  color: #ffffff;
}

.final-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) fit-content(300px);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.final-cta-copy {
  max-width: 720px;
}

.final-cta-copy h2 {
  line-height: 1.2;
}

.final-cta-copy h2 .line,
.final-cta-copy p .line {
  display: block;
}

.final-cta-copy h2 .line {
  white-space: nowrap;
}

.final-cta-copy p {
  margin-top: 10px;
}

.final-cta-copy p .line + .line {
  margin-top: 0.08em;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.final-cta-action {
  width: fit-content;
  max-width: none;
  margin-inline: auto;
  display: grid;
  justify-items: center;
  align-self: center;
  text-align: center;
}

.site-footer {
  padding: 42px 0 32px;
  background: var(--bg-deep);
  color: #ffffff;
}

.footer-inner {
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
}

.footer-brand img {
  width: min(300px, 72vw);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-section,
  .split-section--reverse {
    grid-template-columns: 1fr;
  }

  .market-section .container {
    gap: 24px;
  }

  .process-top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .process-heading,
  .process-heading p {
    max-width: none;
  }

  .process-visual img {
    min-height: 280px;
  }

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

  .value-top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .value-heading,
  .value-heading h2 {
    max-width: none;
  }

  .value-heading p {
    width: auto;
    max-width: none;
  }

  .value-visual img {
    min-height: 250px;
  }

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

  .hero-copy {
    max-width: none;
    padding-top: 0;
  }

  .hero-lower {
    gap: 14px;
  }

  .hero-title {
    max-width: none;
  }

  .hero-visual {
    max-width: 760px;
    width: min(100%, 760px);
    padding-top: 0;
    justify-self: center;
  }

  .hero-image-card,
  .split-visual,
  .testimonial-visual,
  .worry-visual {
    min-height: auto;
  }

  .floating-card--top {
    left: 16px;
  }

  .floating-card--bottom {
    right: 16px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 68px 0;
  }

  .testimonial-grid .quote {
    min-height: 0;
  }

  .section-heading--reason h2 {
    white-space: normal;
  }

  .card-grid--3 > .info-card h3,
  .card-grid--3 > .feature-card h3,
  .card-grid--3 > .timeline-card h3,
  .card-grid--3 > .testimonial-card h3,
  .card-grid--2 > .info-card h3,
  .card-grid--2 > .feature-card h3,
  .card-grid--2 > .timeline-card h3,
  .card-grid--2 > .testimonial-card h3 {
    max-width: none;
    min-height: 0;
  }

  .card-grid--3 > .info-card p,
  .card-grid--3 > .feature-card p,
  .card-grid--3 > .timeline-card p,
  .card-grid--3 > .testimonial-card p,
  .card-grid--2 > .info-card p,
  .card-grid--2 > .feature-card p,
  .card-grid--2 > .timeline-card p,
  .card-grid--2 > .testimonial-card p {
    max-width: none;
  }

  .worry-card h3,
  .reason-card h3,
  .small-card h3,
  .feature-card h3,
  .point-card h3,
  .timeline-card h3,
  .worry-card p,
  .reason-card p,
  .small-card p,
  .feature-card p,
  .point-card p,
  .timeline-card p {
    min-height: 0;
  }

  .section--first {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .stats-grid--3,
  .card-grid--3,
  .card-grid--2 {
    grid-template-columns: 1fr;
  }

  .final-cta-box {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 30px 24px;
  }

  .final-cta-copy h2 .line {
    white-space: normal;
  }

  .final-cta-action {
    width: 100%;
  }

  .hero-grid {
    gap: 24px;
  }

  .process-flow {
    gap: 24px;
  }

  .process-steps {
    gap: 12px;
  }

  .value-flow {
    gap: 22px;
  }

  .value-points {
    gap: 12px;
  }

  .hero-lower {
    gap: 12px;
  }

  .market-section .container {
    gap: 22px;
  }

  .hero-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .mini-card {
    padding: 15px 14px;
  }

  .mini-card strong {
    font-size: 0.94rem;
  }

  .mini-card span {
    font-size: 0.86rem;
  }

  .header-inner {
    min-height: 74px;
  }

  .cta-button--header {
    padding-inline: 16px;
    font-size: 0.92rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .section-heading--reason {
    max-width: none;
  }

  .info-card,
  .feature-card,
  .timeline-card,
  .testimonial-card {
    gap: 10px;
  }

  .section-heading,
  .section-heading--left {
    margin-bottom: 30px;
    gap: 12px;
  }

  .section-heading h2,
  .section-heading--left h2 {
    font-size: 1.95rem;
    line-height: 1.34;
  }

  .section-heading p,
  .section-heading--left p {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .header-inner {
    gap: 12px;
  }

  .process-top {
    gap: 18px;
  }

  .process-visual img {
    min-height: 220px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps .timeline-card {
    padding-top: 18px;
  }

  .value-top {
    gap: 18px;
  }

  .value-heading h2 {
    line-height: 1.26;
  }

  .value-visual img {
    min-height: 204px;
  }

  .value-points {
    grid-template-columns: 1fr;
  }

  .value-points .point-card {
    padding-top: 22px;
  }

  .header-logo img {
    width: min(210px, 50vw);
  }

  .cta-button {
    min-height: 48px;
    padding: 12px 18px;
  }

  .cta-button--header {
    font-size: 0.84rem;
  }

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

  .hero-grid {
    gap: 20px;
  }

  .market-section .container {
    gap: 18px;
  }

  .hero-copy h1 {
    font-size: 1.82rem;
  }

  .hero-title {
    gap: 2px;
  }

  .hero-lower {
    gap: 10px;
  }

  .hero-subcopy {
    font-size: 1rem;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mini-card {
    padding: 15px 16px;
  }

  .hero-cta-wrap,
  .stat-card,
  .info-card,
  .feature-card,
  .timeline-card,
  .testimonial-card,
  .note-box,
  .faq-question {
    padding-left: 18px;
    padding-right: 18px;
  }

  .final-cta-copy p .line,
  .final-cta-copy h2 .line {
    display: block;
  }

  .faq-answer p {
    padding-left: 18px;
    padding-right: 18px;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .hero-title span {
    display: block;
  }

  .hero-cta-wrap {
    padding: 20px 16px;
  }

  .hero-note {
    font-size: 0.88rem;
  }

  .hero-visual {
    display: grid;
    gap: 14px;
    padding-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}