:root {
  --blue: #165cc9;
  --blue-deep: #143b8a;
  --blue-soft: #edf5ff;
  --blue-line: #cfdff7;
  --orange: #ff7a1a;
  --orange-soft: #fff2e8;
  --yellow: #f1d34e;
  --green: #24a25b;
  --text: #222;
  --muted: #5d6470;
  --beige: #fbf4ec;
  --beige-2: #fff7ef;
  --page-bg: #ececec;
  --card: #fff;
  --shadow-sm: 0 2px 10px rgba(20, 59, 138, 0.04);
  --shadow-md: 0 10px 28px rgba(20, 59, 138, 0.08);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page-bg);
  color: var(--text);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.6;
}

.hero__title,
.section-title,
.trust-item h2,
.process-card h3,
.reason-card h3,
.merit-feature h3,
.merit-row h3,
.flow-card__body h3,
.cta-card h2,
.footer__feature h2 {
  text-wrap: balance;
  line-break: strict;
}

.keep-ja {
  display: inline-block;
  white-space: nowrap;
}

.hero__lead,
.section-copy,
.trust-item p,
.worries__list li span,
.process-card p,
.pill-note,
.reason-card p,
.support-banner p,
.merit-feature p,
.merit-row p,
.merits__banner p,
.flow-card__body p,
.faq-item__q span:not(.faq-item__bubble):not(.faq-item__toggle),
.faq-item__answer p,
.cta-card__eyebrow,
.footer__feature p {
  text-wrap: pretty;
  line-break: strict;
}

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

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

button {
  font: inherit;
}

.lp {
  overflow: clip;
  background: #fff;
}

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

.section {
  position: relative;
}

.section-dots {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.42em;
  text-align: center;
}

.section-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.05rem, 2.8vw, 3.35rem);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0.01em;
}

.section-title span {
  color: var(--orange);
}

.section-title--center {
  text-align: center;
}

.section-copy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  line-height: 1.85;
}

.section-copy--center {
  text-align: center;
}

.icon {
  display: inline-block;
  flex: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  min-height: 62px;
  padding: 14px 28px;
  background: linear-gradient(180deg, #ff942c 0%, #ff7411 100%);
  color: #fff;
  box-shadow: 0 4px 0 rgba(193, 77, 4, 0.28);
}

.btn--large {
  min-height: 70px;
  padding-inline: 34px;
  font-size: 1.28rem;
}

.btn__arrow {
  font-size: 0.92em;
}

.hero {
  background:
    radial-gradient(circle at 100% 8%, rgba(53, 119, 224, 0.22) 0 12px, transparent 13px),
    radial-gradient(circle at 100% 8%, rgba(53, 119, 224, 0.12) 0 54px, transparent 55px),
    radial-gradient(circle at 0% 88%, rgba(53, 119, 224, 0.16) 0 28px, transparent 29px),
    linear-gradient(180deg, #fffdfa 0%, #fff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 237, 217, 0.55), transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  gap: 26px;
  padding-top: 26px;
}

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

.stats__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  border: 2px solid rgba(22, 92, 201, 0.35);
  border-radius: 16px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.82);
}

.stats__item .icon {
  width: 26px;
  height: 26px;
}

.stats__item small {
  display: block;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.stats__item strong {
  display: block;
  margin-top: 4px;
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.stats__item strong span {
  font-size: 0.72em;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.hero__title-line {
  display: inline-block;
  color: var(--blue);
  box-shadow: inset 0 -0.28em 0 rgba(241, 211, 78, 0.92);
}

.hero__lead {
  margin: 22px 0 0;
  color: #4f545c;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.phone-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  border: 2px solid rgba(22, 92, 201, 0.4);
  border-radius: 14px;
  background: #fff;
  padding: 12px 20px;
}

.phone-card__icon {
  width: 32px;
  height: 32px;
}

.phone-card__body {
  display: grid;
  gap: 4px;
}

.phone-card__body strong {
  color: var(--blue);
  font-size: clamp(1.35rem, 1.9vw, 2.05rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.phone-card__body span,
.phone-card__label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.phone-card__label {
  display: block;
  margin-bottom: 8px;
  text-align: center;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #333;
  font-size: 1rem;
  font-weight: 700;
}

.hero__checks li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero__checks .icon {
  width: 20px;
  height: 20px;
}

.hero__visual {
  position: relative;
  align-self: end;
}

.hero__scribble {
  position: absolute;
  z-index: 2;
  left: clamp(44px, 6vw, 96px);
  top: clamp(28px, 3vw, 54px);
  color: var(--blue);
  font-size: clamp(1.15rem, 1.8vw, 1.75rem);
  font-weight: 700;
  line-height: 1.45;
  transform: rotate(-2deg);
}

.hero__scribble::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -10px;
  bottom: -6px;
  height: 10px;
  border-bottom: 3px solid var(--blue);
  border-radius: 50%;
}

.hero__photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 220px 0 0 220px / 140px 0 0 140px;
  min-height: 420px;
  background: linear-gradient(135deg, #fff5eb, #fff);
}

.hero__photo picture,
.hero__photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__photo picture {
  position: absolute;
  inset: 0;
}

.hero__photo img {
  object-fit: cover;
  object-position: center top;
}

.trust-strip {
  border-top: 1px solid #edf2fb;
  background: #eef4fb;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
}

.trust-item {
  display: flex;
  gap: 14px;
  min-height: 120px;
  padding: 22px 18px;
  border-left: 1px solid rgba(22, 92, 201, 0.15);
}

.trust-item:first-child {
  border-left: 0;
}

.trust-item .icon {
  width: 54px;
  height: 54px;
  flex: none;
}

.generated-icon,
.process-card__icon img,
.reason-card__visual img,
.merit-row__icon img,
.flow-card__icon img {
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(6, 23, 51, 0.1);
}

.generated-icon {
  border-radius: 14px;
}

.trust-item h2 {
  margin: 0;
  color: var(--blue);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.45;
}

.trust-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.worries {
  padding: 54px 0 42px;
  background: linear-gradient(180deg, #fff 0%, #fff 92%, #f2f7ff 92%);
}

.worries__layout {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 24px 48px;
  align-items: start;
}

.worries .section-title span {
  color: var(--blue);
}

.worries .section-title {
  font-size: clamp(2rem, 3.4vw, 3.15rem);
}

.worries__intro {
  align-self: center;
}

.worries__intro .section-title::after {
  content: "";
  display: block;
  width: 110px;
  height: 5px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), transparent);
}

.worries__photo {
  overflow: hidden;
  border-radius: 46px 46px 46px 120px;
  background: #f6f6f6;
  box-shadow: var(--shadow-sm);
}

.worries__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.worries__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  grid-column: 1 / -1;
}

.worries__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 80px;
  border-bottom: 2px dotted #b8cff4;
  color: #303030;
  font-size: 1.05rem;
  font-weight: 700;
}

.worries__list .icon {
  width: 34px;
  height: 34px;
}

.worries__cta-wrap {
  width: min(100%, 920px);
  margin: 30px auto 0;
}

.pointer {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 18px solid var(--orange);
  transform: rotate(180deg);
}

.choice-box {
  margin-top: 10px;
  border: 2px solid rgba(255, 122, 26, 0.35);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff9f1, #fff4ea);
  padding: 24px 20px;
  color: var(--text);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 800;
  text-align: center;
}

.choice-box strong {
  color: var(--orange);
  font-size: 1.34em;
}

.section--blue {
  padding: 54px 0 56px;
  background: #edf4fe;
}

.process .section-title,
.process .section-title span {
  display: block;
  width: 100%;
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 12px;
  margin-top: 28px;
}

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

.process-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 102px;
  height: 32px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.process-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 260px);
  aspect-ratio: 1 / 1;
  margin: 14px auto 0;
  padding: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
}

.process-card__icon svg,
.process-card__icon img {
  width: 100%;
  max-width: 220px;
  height: 100%;
  border-radius: 999px;
}

.process-card h3 {
  margin: 12px 0 8px;
  color: var(--blue);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.45;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.process__arrow {
  align-self: center;
  width: 0;
  height: 0;
  margin-top: -20px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 22px solid var(--blue);
}

.pill-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 1120px);
  margin: 26px auto 0;
  border: 2px solid rgba(22, 92, 201, 0.14);
  border-radius: 999px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.pill-note__icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.reasons {
  padding: 50px 0 52px;
  background: #fff;
}

.reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
  align-items: start;
}

.reason-card {
  position: relative;
  padding: 24px 20px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fafcff, #f4f7fc);
}

.reason-card__num {
  position: absolute;
  top: 18px;
  left: 18px;
  color: #c6d8f8;
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.reason-card__photo {
  overflow: hidden;
  border-radius: 16px;
  height: 170px;
  margin-bottom: 18px;
  background: #eef4ff;
}

.reason-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.reason-card__visual {
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  margin: 20px auto 14px;
  border-radius: 50%;
  background: #e8f1ff;
}

.reason-card__visual svg,
.reason-card__visual img {
  width: 138px;
  height: 138px;
  border-radius: 999px;
}

.reason-card h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 1.58rem;
  font-weight: 900;
  line-height: 1.35;
}

.reason-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.82;
}

.reason-card--photo {
  display: block;
}

.reason-card--photo .reason-card__photo {
  height: 190px;
  margin: 36px 0 18px;
}

.reason-card--photo .reason-card__num {
  position: absolute;
  top: 18px;
  left: 18px;
  margin: 0;
  color: #c6d8f8;
  font-size: clamp(2.1rem, 3vw, 3rem);
}

.support-banner {
  display: grid;
  grid-template-columns: 1.25fr 2fr;
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  border: 2px solid rgba(22, 92, 201, 0.14);
  border-radius: 20px;
  background: #fffdfa;
  padding: 18px 24px;
}

.support-banner__lead {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 22px;
  border-right: 1px solid rgba(22, 92, 201, 0.18);
  color: var(--blue);
  font-size: 1.55rem;
  font-weight: 900;
}

.support-banner__lead .icon {
  width: 42px;
  height: 42px;
}

.support-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.9;
}

.merits {
  padding: 52px 0 56px;
  background: #fff;
}

.merits__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) 1.25fr;
  gap: 24px;
  margin-top: 28px;
  align-items: start;
}

.merit-feature {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(22, 92, 201, 0.12);
  background: linear-gradient(180deg, var(--beige-2), var(--beige));
}

.merit-feature__media {
  position: relative;
}

.merit-feature__media--desktop {
  display: none;
}

.merit-feature__media--tablet {
  height: 320px;
}

.merit-feature__media--tablet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.merit-feature__content {
  padding: 22px 22px 26px;
}

.merit-feature__tag {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
}

.merit-feature__tag strong {
  margin-left: 6px;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
}

.merit-feature h3 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2rem, 2.6vw, 3rem);
  font-weight: 900;
  line-height: 1.34;
}

.merit-feature h3::after {
  content: "";
  display: block;
  width: 180px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--yellow);
}

.merit-feature p:last-child {
  margin: 22px 0 0;
  color: #474f5a;
  font-size: 1.08rem;
  line-height: 1.95;
}

.merit-feature__media--desktop {
  padding: 18px 18px 0;
}

.merit-feature__room {
  overflow: hidden;
  border-radius: 16px;
  height: 320px;
  background: #f5f0ea;
}

.merit-feature__room img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.merit-feature__room img {
  object-position: center center;
}

.merits__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.merit-row {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 125px;
  border-top: 1px dashed rgba(22, 92, 201, 0.25);
  padding: 16px 0;
}

.merit-row:first-child {
  border-top: 0;
}

.merit-row__icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #f4f8ff;
}

.merit-row__icon svg,
.merit-row__icon img {
  width: 78px;
  height: 78px;
  border-radius: 999px;
}

.icon-lockbig {
  width: 58px !important;
  height: 58px !important;
}

.merit-row__num {
  display: block;
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.merit-row h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.36;
}

.merit-row p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.82;
}

.merits__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
  border-radius: 18px;
  background: #fff7ef;
  padding: 18px 22px;
}

.merits__banner .icon {
  width: 42px;
  height: 42px;
}

.merits__banner p {
  margin: 0;
  color: #444;
  font-size: 1.08rem;
  font-weight: 700;
}

.merits__banner strong {
  color: var(--orange);
}

.section--blue-soft {
  padding: 54px 0 56px;
  background: #edf4fd;
}

.flow__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin-top: 26px;
}

.flow__list::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 16px;
  height: 2px;
  background: rgba(22, 92, 201, 0.35);
}

.flow-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 36px;
}

.flow-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 48px;
  height: 48px;
  margin-left: -24px;
  border-radius: 50%;
  background: var(--blue);
}

.flow-card__step {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 1;
}

.flow-card__time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 28px;
  margin-top: 24px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
}

.flow-card__icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin-top: 16px;
  color: var(--blue);
}

.flow-card__icon .icon {
  width: 82px;
  height: 82px;
  border-radius: 999px;
}

.flow-card__body h3 {
  margin: 8px 0 8px;
  color: var(--blue);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.4;
}

.flow-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.85;
}

.flow__footnote {
  margin: 20px 0 0;
  color: #777;
  font-size: 0.92rem;
  text-align: center;
}

.faq {
  padding: 54px 0 46px;
  background: #fff;
}

.faq__container {
  width: min(100% - 32px, 1260px);
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.faq__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(22, 92, 201, 0.14);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.faq-item__q {
  display: grid;
  grid-template-columns: 32px 1fr 20px;
  gap: 12px;
  width: 100%;
  align-items: center;
  border: 0;
  background: #fff;
  padding: 18px 18px 18px 16px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item__bubble {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.faq-item__bubble--a {
  background: var(--orange);
}

.faq-item__toggle {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transform: translate(-50%, -50%);
}

.faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__toggle::after {
  display: none;
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.faq-item.is-open .faq-item__a {
  max-height: 240px;
}

.faq-item__answer {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 0 18px 18px 16px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.85;
}

.faq-item__answer p {
  margin: 0;
}

.faq__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 0;
  border: 1px solid rgba(22, 92, 201, 0.12);
  border-radius: 12px;
  background: #fbfcff;
  padding: 12px 18px;
  color: #777;
  font-size: 0.98rem;
  font-weight: 700;
}

.faq__contact .icon {
  width: 30px;
  height: 30px;
}

.cta {
  padding: 0 0 42px;
  background: #fff;
}

.cta-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fffdfa, #fff5ea);
  box-shadow: 0 12px 28px rgba(20, 59, 138, 0.08);
  padding: 24px 28px 20px;
}

.cta-card__photo {
  overflow: hidden;
  border-radius: 18px;
  background: #f4f1ed;
}

.cta-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.cta-card__eyebrow {
  margin: 0;
  color: #444;
  font-size: 1rem;
  font-weight: 700;
}

.cta-card h2 {
  margin: 6px 0 12px;
  color: var(--orange);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.25;
}

.cta-card__points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #333;
  font-size: 1rem;
  font-weight: 700;
}

.cta-card__points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-card__points .icon {
  width: 20px;
  height: 20px;
}

.cta-card__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  margin-top: 18px;
}

.phone-card--cta {
  display: block;
  padding: 16px 18px;
}

.phone-card__main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.desktop-form-sec {
  background:
    repeating-linear-gradient(135deg, rgba(6, 23, 51, 0.025) 0 1px, transparent 1px 9px),
    #fffaf0;
  padding: 56px 0 64px;
}

.desktop-form-head {
  margin: 0 auto 28px;
  max-width: 760px;
  text-align: center;
}

.desktop-form-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #ff8c3c;
  padding: 9px 30px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.desktop-form-title {
  margin: 0;
  color: #061733;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.26;
  letter-spacing: 0;
}

.desktop-form-title span {
  color: #ff8c3c;
}

.desktop-form-head p {
  margin: 14px 0 0;
  color: #4d5968;
  font-size: 1.04rem;
  font-weight: 700;
}

.desktop-form-box {
  width: min(100%, 860px);
  margin: 0 auto;
  border: 2px solid #1e6dd8;
  border-radius: 16px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 18px 42px rgba(6, 23, 51, 0.08);
}

.desktop-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.desktop-fld--wide {
  grid-column: 1 / -1;
}

.desktop-fld-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  color: #111;
  font-size: 1rem;
  font-weight: 900;
}

.desktop-req {
  border-radius: 4px;
  background: #e63946;
  padding: 2px 8px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
}

.desktop-radios {
  display: flex;
  gap: 12px;
}

.desktop-radio-opt {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  border: 1.5px solid #bbb;
  border-radius: 999px;
  background: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.desktop-radio-opt input {
  width: 17px;
  height: 17px;
  accent-color: #1e6dd8;
}

.desktop-radio-opt:has(input:checked) {
  border-color: #1e6dd8;
  background: #eef5ff;
}

.desktop-inp,
.desktop-sel {
  width: 100%;
  min-height: 50px;
  border: 1.5px solid #bbb;
  border-radius: 9px;
  background: #fff;
  padding: 13px 14px;
  color: #222;
  font-family: inherit;
  font-size: 1rem;
}

.desktop-inp::placeholder {
  color: #aaa;
}

.desktop-sel {
  appearance: none;
  background-image: url("../mobile/select-arrow.svg");
  background-position: right 14px center;
  background-repeat: no-repeat;
  padding-right: 38px;
  color: #777;
}

.desktop-privacy {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 16px;
  border-radius: 9px;
  background: #e8f0fe;
  padding: 14px 16px;
  color: #243044;
  font-size: 0.95rem;
  font-weight: 700;
}

.desktop-privacy input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  accent-color: #1e6dd8;
}

.desktop-privacy a {
  color: #1e6dd8;
  font-weight: 900;
  text-decoration: underline;
}

.desktop-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px);
  min-height: 58px;
  margin: 0 auto;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffa24a 0%, #ff7a1c 100%);
  box-shadow: 0 4px 0 rgba(210, 90, 10, 0.35), 0 8px 18px rgba(255, 122, 28, 0.26);
  color: #fff;
  font-family: inherit;
  font-size: 1.12rem;
  font-weight: 900;
  cursor: pointer;
}

.desktop-form-status {
  margin: 14px 0 0;
  text-align: center;
}

.footer {
  background: #0c4fae;
  color: #fff;
}

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

.footer__feature {
  display: flex;
  gap: 14px;
  min-height: 122px;
  padding: 24px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.footer__feature:first-child {
  border-left: 0;
}

.footer__feature .icon {
  width: 52px;
  height: 52px;
}

.footer__feature h2 {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.4;
}

.footer__feature p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  line-height: 1.75;
}

.footer__copy {
  margin: 0;
  padding: 8px 16px 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  text-align: center;
}

.footer__company {
  margin: 0;
  padding: 22px 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  font-weight: 800;
  text-align: center;
}

.footer__company a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.br-tablet {
  display: none;
}

@media (min-width: 1100px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(400px, 0.88fr);
    align-items: center;
    padding-bottom: 26px;
  }

  .hero__title-line {
    white-space: nowrap;
  }

  .hero__content {
    padding: 14px 0 8px;
  }

  .hero__photo {
    min-height: 430px;
  }

  .hero__photo img {
    object-position: center center;
  }

  .hero__scribble {
    left: clamp(54px, 6vw, 108px);
    top: 34px;
  }

  .reasons__grid {
    grid-template-columns: 1.05fr 1fr 1fr;
  }

  .merit-feature__media--desktop {
    display: block;
  }

  .merit-feature__media--tablet {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .container {
    width: min(100% - 40px, 980px);
  }

  .hero__grid {
    grid-template-columns: 1fr 0.88fr;
    align-items: center;
    padding-bottom: 22px;
  }

  .hero__title {
    font-size: clamp(2.8rem, 4vw, 4rem);
  }

  .hero__lead br:nth-of-type(2) {
    display: none;
  }

  .hero__actions {
    gap: 14px;
  }

  .hero__checks {
    gap: 18px;
    font-size: 0.96rem;
  }

  .hero__visual {
    min-height: 100%;
  }

  .hero__photo {
    min-height: 430px;
    border-radius: 150px 0 0 150px / 110px 0 0 110px;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-item {
    min-height: 115px;
    padding: 20px 12px;
    gap: 10px;
  }

  .trust-item .icon {
    width: 44px;
    height: 44px;
  }

  .trust-item h2 {
    font-size: 1rem;
  }

  .trust-item p {
    font-size: 0.85rem;
  }

  .worries__layout {
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
  }

  .worries__intro {
    align-self: start;
  }

  .worries__list {
    grid-column: 1 / -1;
    gap: 0 24px;
  }

  .worries__list li {
    font-size: 1rem;
  }

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

  .process__arrow {
    display: none;
  }

  .process-card__icon {
    width: min(100%, 200px);
    padding: 16px;
  }

  .process-card h3 {
    font-size: 1.35rem;
  }

  .process-card p {
    font-size: 0.94rem;
  }

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

  .reason-card,
  .reason-card--photo {
    display: block;
  }

  .reason-card__photo {
    height: 135px;
  }

  .reason-card__num {
    position: static;
    display: block;
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 1.8rem;
  }

  .reason-card h3 {
    font-size: 1.2rem;
  }

  .reason-card p {
    font-size: 0.86rem;
  }

  .support-banner {
    grid-template-columns: 1fr 1.4fr;
    gap: 18px;
  }

  .support-banner__lead {
    font-size: 1.25rem;
  }

  .merits__layout {
    grid-template-columns: minmax(320px, 0.95fr) 1.15fr;
    gap: 18px;
  }

  .merit-feature__media--tablet {
    display: block;
  }

  .merit-feature__media--desktop {
    display: none;
  }

  .merit-feature__media--tablet {
    height: 260px;
  }

  .merit-feature__content {
    padding: 18px;
  }

  .merit-feature h3 {
    font-size: 2.15rem;
  }

  .merit-feature p:last-child {
    font-size: 0.94rem;
  }

  .merit-row {
    grid-template-columns: 82px 1fr;
    gap: 16px;
    min-height: 112px;
  }

  .merit-row__icon {
    width: 76px;
    height: 76px;
  }

  .merit-row__icon svg,
  .merit-row__icon img {
    width: 58px;
    height: 58px;
  }

  .merit-row__num {
    font-size: 1.7rem;
  }

  .merit-row h3 {
    font-size: 1.5rem;
  }

  .merit-row p {
    font-size: 0.9rem;
  }

  .flow__list {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 68px;
  }

  .flow__list::before {
    top: 0;
    bottom: 0;
    left: 24px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .flow-card {
    display: grid;
    grid-template-columns: 110px 94px 1fr 18px;
    gap: 18px;
    align-items: center;
    padding: 0 18px 0 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(22, 92, 201, 0.1);
    min-height: 124px;
    text-align: left;
  }

  .flow-card::before {
    top: 50%;
    left: -68px;
    margin-left: 0;
    margin-top: -24px;
  }

  .flow-card__step {
    top: 50%;
    left: -44px;
    transform: translate(-50%, -50%);
  }

  .flow-card__time {
    margin: 0 auto;
  }

  .flow-card__icon {
    margin-top: 0;
    width: 78px;
    height: 78px;
  }

  .flow-card__icon .icon {
    width: 70px;
    height: 70px;
  }

  .flow-card__body h3 {
    margin-top: 0;
    font-size: 1.36rem;
  }

  .flow-card__body p {
    font-size: 0.92rem;
  }

  .cta-card {
    grid-template-columns: 280px 1fr;
    gap: 20px;
    padding: 20px 22px 18px;
  }

  .cta-card__actions {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cta-card__actions .btn {
    width: 100%;
  }

  .phone-card--cta .phone-card__main {
    justify-content: center;
  }

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

  .footer__feature {
    padding: 20px 16px;
  }

  .footer__feature h2 {
    font-size: 1.12rem;
  }

  .footer__feature p {
    font-size: 0.84rem;
  }

  .br-tablet {
    display: initial;
  }
}

@media (max-width: 767px) {
  .container,
  .faq__container {
    width: min(100% - 24px, 560px);
  }

  .section-title,
  .hero__title {
    letter-spacing: 0;
  }

  .hero__grid {
    padding: 16px 0 0;
  }

  .stats {
    gap: 8px;
    margin-bottom: 18px;
  }

  .stats__item {
    min-height: 56px;
    padding: 8px 10px;
    border-radius: 12px;
  }

  .stats__item .icon {
    width: 20px;
    height: 20px;
  }

  .stats__item small {
    font-size: 0.58rem;
  }

  .stats__item strong {
    font-size: 1rem;
  }

  .hero__title {
    font-size: clamp(2.35rem, 10vw, 3.6rem);
    line-height: 1.2;
  }

  .hero__lead {
    margin-top: 14px;
    font-size: 0.95rem;
  }

  .hero__lead br {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 20px;
  }

  .btn--primary,
  .phone-card {
    width: 100%;
  }

  .btn--primary {
    min-height: 58px;
    font-size: 1.05rem;
  }

  .phone-card {
    justify-content: center;
    padding: 14px 18px;
  }

  .phone-card__body {
    gap: 2px;
  }

  .phone-card__body strong {
    font-size: 1.5rem;
  }

  .phone-card__body span,
  .phone-card__label {
    font-size: 0.76rem;
  }

  .hero__checks {
    gap: 10px 14px;
    margin-top: 14px;
    font-size: 0.93rem;
  }

  .hero__visual {
    margin-top: 10px;
  }

  .hero__scribble {
    left: 24px;
    top: 20px;
    font-size: 1.05rem;
  }

  .hero__photo {
    min-height: 300px;
    border-radius: 26px;
    margin-inline: auto;
  }

  .hero__photo img {
    object-position: center center;
  }

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

  .trust-item,
  .footer__feature {
    min-height: 0;
    padding: 16px 12px;
    gap: 10px;
  }

  .trust-item .icon,
  .footer__feature .icon {
    width: 40px;
    height: 40px;
  }

  .trust-item h2,
  .footer__feature h2 {
    font-size: 0.95rem;
  }

  .trust-item p,
  .footer__feature p {
    margin-top: 4px;
    font-size: 0.76rem;
    line-height: 1.55;
  }

  .worries {
    padding-top: 38px;
  }

  .worries__layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .worries__photo {
    order: 3;
    border-radius: 26px;
  }

  .worries__list {
    grid-template-columns: 1fr;
    order: 2;
  }

  .worries__list li {
    min-height: 68px;
    font-size: 0.98rem;
  }

  .choice-box {
    padding: 20px 16px;
    font-size: 1.2rem;
    line-height: 1.55;
  }

  .section--blue,
  .reasons,
  .merits,
  .section--blue-soft,
  .faq {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .process__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process__arrow {
    justify-self: center;
    margin: 0 auto;
    border-left-width: 16px;
    border-top-width: 12px;
    border-bottom-width: 12px;
    transform: rotate(90deg);
  }

  .process-card {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    padding: 18px 16px 20px;
  }

  .process-card__icon {
    width: min(100%, 174px);
    margin-top: 12px;
    padding: 14px;
    background: transparent;
  }

  .process-card h3 {
    font-size: 1.3rem;
  }

  .process-card p {
    font-size: 0.92rem;
  }

  .pill-note {
    border-radius: 16px;
    font-size: 0.88rem;
    padding: 12px 14px;
  }

  .reasons__grid,
  .faq__grid,
  .merits__layout {
    grid-template-columns: 1fr;
  }

  .reason-card,
  .reason-card--photo {
    display: block;
    padding: 18px 16px 16px;
  }

  .reason-card__num {
    position: static;
    display: block;
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 1.6rem;
  }

  .reason-card__photo {
    height: 180px;
    margin-bottom: 12px;
  }

  .reason-card__visual {
    width: 140px;
    height: 140px;
    margin-top: 10px;
  }

    .reason-card__visual svg,
    .reason-card__visual img {
    width: 104px;
    height: 104px;
  }

  .reason-card h3 {
    font-size: 1.28rem;
  }

  .reason-card p {
    font-size: 0.92rem;
  }

  .support-banner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .support-banner__lead {
    padding-right: 0;
    padding-bottom: 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(22, 92, 201, 0.18);
    font-size: 1.1rem;
  }

  .merit-feature {
    border-radius: 18px;
  }

  .merit-feature__media--tablet {
    height: 220px;
  }

  .merit-feature__content {
    padding: 18px 16px 20px;
  }

  .merit-feature__tag {
    font-size: 0.88rem;
  }

  .merit-feature__tag strong {
    font-size: 1.8rem;
  }

  .merit-feature h3 {
    font-size: 1.8rem;
  }

  .merit-feature h3::after {
    width: 120px;
    margin-top: 14px;
  }

  .merit-feature p:last-child,
  .merit-row p {
    font-size: 0.92rem;
  }

  .merit-row {
    grid-template-columns: 68px 1fr;
    gap: 12px;
    min-height: 0;
    padding: 16px 0;
  }

  .merit-row__icon {
    width: 64px;
    height: 64px;
  }

  .merit-row__icon svg,
  .merit-row__icon img {
    width: 46px;
    height: 46px;
  }

  .icon-lockbig {
    width: 40px !important;
    height: 40px !important;
  }

  .merit-row__num {
    font-size: 1.42rem;
  }

  .merit-row h3 {
    font-size: 1.14rem;
    line-height: 1.45;
  }

  .merits__banner {
    align-items: flex-start;
    text-align: left;
    padding: 16px 14px;
  }

  .flow__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .flow__list::before {
    display: none;
  }

  .flow-card {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 14px;
    align-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(22, 92, 201, 0.1);
    padding: 16px 14px 14px;
    text-align: left;
  }

  .flow-card::before {
    display: none;
  }

  .flow-card__step {
    position: absolute;
    top: 10px;
    left: 10px;
    transform: none;
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 1.05rem;
  }

  .flow-card__time {
    grid-column: 1 / 2;
    align-self: start;
    justify-self: center;
    margin-top: 34px;
    min-width: 64px;
    height: 26px;
    font-size: 0.82rem;
  }

  .flow-card__icon {
    grid-column: 1 / 2;
    grid-row: 1 / span 2;
    width: 66px;
    height: 66px;
    margin-top: 62px;
  }

  .flow-card__icon .icon {
    width: 58px;
    height: 58px;
  }

  .flow-card__body {
    grid-column: 2 / 3;
    margin-top: 10px;
  }

  .flow-card__body h3 {
    margin: 0 0 6px;
    font-size: 1.08rem;
  }

  .flow-card__body p {
    font-size: 0.88rem;
  }

  .faq__grid {
    gap: 12px;
  }

  .faq-item__q {
    padding: 16px 14px 16px 12px;
    font-size: 0.95rem;
  }

  .faq-item__answer {
    padding: 0 14px 16px 12px;
    font-size: 0.9rem;
  }

  .faq__contact {
    align-items: flex-start;
    padding: 12px;
    font-size: 0.86rem;
    line-height: 1.6;
    text-align: left;
  }

  .cta {
    padding-bottom: 34px;
    background: #fff;
  }

  .cta-card {
    grid-template-columns: 1fr;
    gap: 16px;
    border-radius: 22px;
    padding: 18px 14px 16px;
  }

  .cta-card__photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .cta-card h2 {
    font-size: 2rem;
  }

  .cta-card__points {
    gap: 10px 14px;
    font-size: 0.92rem;
  }

  .cta-card__actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn--large {
    min-height: 60px;
    font-size: 1.02rem;
    padding-inline: 18px;
  }

  .footer__copy {
    padding-top: 16px;
    font-size: 0.82rem;
  }
}



/* refinement pass */
.hero__check--desktop { display: none; }
.worries__photo img { object-position: center top; }
.cta-card__photo img { object-position: center center; }

.trust-item:not(.trust-item--first) .icon {
  width: 58px;
  height: 58px;
  padding: 10px;
  border: 2px solid rgba(22, 92, 201, 0.2);
  border-radius: 50%;
  background: #f7faff;
}

.trust-item--first .icon {
  width: 64px;
  height: 64px;
}

.reasons__grid {
  gap: 0;
  margin-top: 24px;
}

.reason-card,
.reason-card--photo {
  background: transparent;
  border-radius: 0;
  padding: 18px 18px 16px;
}

.reason-card + .reason-card,
.reason-card--photo + .reason-card {
  border-left: 1px solid rgba(22, 92, 201, 0.16);
}

.reason-card__visual {
  background: transparent;
  margin-top: 12px;
  margin-bottom: 10px;
}

.reason-card__num {
  color: #c0d1ef;
  top: 8px;
  left: 10px;
}

.reason-card--photo .reason-card__content {
  padding-top: 0;
}

.support-banner {
  margin-top: 18px;
}

.footer__feature .icon {
  width: 60px;
  height: 60px;
  padding: 12px;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

@media (min-width: 1100px) {
  .hero {
    background:
      radial-gradient(circle at 100% 9%, rgba(53, 119, 224, 0.16) 0 18px, transparent 18px),
      radial-gradient(circle at 0% 88%, rgba(53, 119, 224, 0.16) 0 34px, transparent 34px),
      linear-gradient(180deg, #fffdfa 0%, #fff 100%);
  }

  .container {
    width: min(100% - 48px, 1280px);
  }

  .hero__grid {
    gap: 42px;
  }

  .hero__checks {
    gap: 22px 28px;
  }

  .hero__check--desktop {
    display: inline-flex;
  }

  .hero__photo {
    min-height: 430px;
    border-radius: 300px 0 0 300px / 190px 0 0 190px;
  }

  .trust-item {
    min-height: 112px;
    padding: 20px 18px;
  }

  .worries__layout {
    grid-template-columns: 360px 1fr;
    gap: 26px 54px;
  }

  .worries__photo {
    grid-column: 1;
    grid-row: 1 / span 2;
    border-radius: 0 180px 0 160px;
    align-self: stretch;
  }

  .worries__intro {
    grid-column: 2;
    align-self: start;
  }

  .worries__list {
    grid-column: 2;
    margin-top: 6px;
  }

  .choice-box {
    max-width: 1000px;
    margin-inline: auto;
    font-size: 1.65rem;
  }

  .reason-card,
  .reason-card--photo {
    padding: 20px 22px 18px;
  }

  .reason-card--photo {
    display: block;
  }

  .reason-card__photo {
    height: 190px;
  }

  .cta-card {
    gap: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .faq__col {
    gap: 10px;
  }

  .reason-card,
  .reason-card--photo {
    padding: 18px 14px 16px;
  }

  .reason-card + .reason-card,
  .reason-card--photo + .reason-card {
    border-left: 1px solid rgba(22, 92, 201, 0.16);
  }

  .support-banner {
    margin-top: 14px;
  }

  .flow-card {
    padding-right: 52px;
  }

  .flow-card::after {
    content: '›';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blue);
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
  }

  .faq {
    padding-top: 48px;
  }

  .hero__check--desktop {
    display: none;
  }
}

.js-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.75, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__photo img {
  animation: hero-photo-breathe 14s ease-in-out infinite alternate;
}

.hero__scribble {
  animation: scribble-in 0.8s ease 0.35s both;
}

.btn--primary,
.hero__actions .btn,
.deadline-bar__action {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.btn--primary:hover,
.hero__actions .btn:hover,
.deadline-bar__action:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.btn--primary,
.deadline-bar__action {
  animation: cta-breathe 3.8s ease-in-out infinite;
}

.phone-card,
.trust-item,
.process-card,
.reason-card,
.merit-row,
.flow-card,
.faq-item {
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.trust-item:hover,
.process-card:hover,
.reason-card:hover,
.merit-row:hover,
.flow-card:hover,
.faq-item:hover {
  transform: translateY(-3px);
}

.process-card__icon img,
.reason-card__visual img,
.merit-row__icon img,
.flow-card__icon img,
.footer__feature .icon {
  transition: transform 0.32s ease;
}

.process-card:hover .process-card__icon img,
.reason-card:hover .reason-card__visual img,
.merit-row:hover .merit-row__icon img,
.flow-card:hover .flow-card__icon img,
.footer__feature:hover .icon {
  transform: translateY(-2px) scale(1.04);
}

@keyframes hero-photo-breathe {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035);
  }
}

@keyframes scribble-in {
  from {
    opacity: 0;
    transform: translate(-10px, 8px) rotate(-4deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(-2deg);
  }
}

@keyframes cta-breathe {
  0%, 100% {
    box-shadow: 0 3px 0 rgba(193, 77, 4, 0.26), 0 12px 24px rgba(255, 122, 26, 0.12);
  }
  50% {
    box-shadow: 0 3px 0 rgba(193, 77, 4, 0.26), 0 16px 34px rgba(255, 122, 26, 0.22);
  }
}

.hero--editorial {
  --hero-ink: #081735;
  --hero-orange: #b74420;
  --hero-gold: #b58a38;
  --hero-paper: #fffaf1;
  --hero-line: rgba(8, 23, 53, 0.22);
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 690px;
  height: 100svh;
  max-height: 900px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0 58%, rgba(255, 250, 241, 0.72) 58% 100%),
    repeating-linear-gradient(135deg, rgba(8, 23, 53, 0.026) 0 1px, transparent 1px 9px),
    radial-gradient(circle at 83% 54%, rgba(181, 138, 56, 0.11), transparent 28%),
    var(--hero-paper);
  color: var(--hero-ink);
}

.hero--editorial::before,
.hero--editorial::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero--editorial::before {
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 64px, rgba(181, 138, 56, 0.72) 64px 65px, transparent 65px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent 42%);
}

.hero--editorial::after {
  right: 3.4vw;
  bottom: 5.2vh;
  width: min(21vw, 300px);
  height: min(21vw, 300px);
  border: 1px solid rgba(181, 138, 56, 0.22);
  border-radius: 50%;
  opacity: 0.55;
}

.hero--editorial .hero__side-rail {
  position: absolute;
  z-index: 5;
  inset: 0 auto 0 0;
  width: clamp(58px, 4.7vw, 78px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px 0;
  background: linear-gradient(180deg, #0d2a49 0%, #07172f 100%);
  color: #fff;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(0.92rem, 1.2vw, 1.16rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.75;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  box-shadow: 14px 0 30px rgba(122, 46, 3, 0.08);
}

.hero--editorial .hero__side-rail span {
  white-space: nowrap;
}

.hero--editorial .hero__corner-proof {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  width: clamp(310px, 26vw, 390px);
  height: clamp(128px, 13vw, 190px);
  display: grid;
  align-content: center;
  justify-content: end;
  padding: 18px clamp(20px, 2.3vw, 34px) 20px clamp(128px, 11vw, 168px);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 66% 84%);
  background: linear-gradient(135deg, #061327 0%, #0d2946 100%);
  color: #fff;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  text-align: center;
}

.hero--editorial .hero__corner-proof::before,
.hero--editorial .hero__corner-proof::after {
  content: "";
  position: absolute;
  bottom: 28px;
  width: 42px;
  height: 62px;
  border: 2px solid rgba(204, 160, 75, 0.75);
  border-top: 0;
}

.hero--editorial .hero__corner-proof::before {
  left: 42%;
  border-right: 0;
  border-radius: 0 0 0 80px;
  transform: translateX(-78px) rotate(18deg);
}

.hero--editorial .hero__corner-proof::after {
  right: 9%;
  border-left: 0;
  border-radius: 0 0 80px 0;
  transform: rotate(-18deg);
}

.hero--editorial .hero__corner-proof span,
.hero--editorial .hero__corner-proof em {
  position: relative;
  z-index: 1;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.1;
}

.hero--editorial .hero__corner-proof span {
  font-size: clamp(0.72rem, 1vw, 1rem);
}

.hero--editorial .hero__corner-proof strong {
  position: relative;
  z-index: 1;
  color: #d7ad66;
  font-size: clamp(1.55rem, 2.35vw, 2.85rem);
  font-weight: 800;
  line-height: 1.05;
}

.hero--editorial .hero__corner-proof small {
  font-size: 0.42em;
}

.hero--editorial .hero__corner-proof em {
  font-size: clamp(0.9rem, 1.3vw, 1.35rem);
}

.hero--editorial .hero__paper-mark {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  color: rgba(181, 138, 56, 0.34);
}

.hero--editorial .hero__paper-mark--map {
  right: clamp(46px, 5vw, 86px);
  top: 31%;
  width: clamp(130px, 14vw, 220px);
  height: clamp(86px, 10vw, 155px);
  border: 2px solid currentColor;
  transform: rotate(24deg);
}

.hero--editorial .hero__paper-mark--map::before,
.hero--editorial .hero__paper-mark--map::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.hero--editorial .hero__paper-mark--map::before {
  left: 20%;
  top: 17%;
  width: 28px;
  height: 28px;
}

.hero--editorial .hero__paper-mark--map::after {
  right: 16%;
  bottom: 18%;
  width: 22px;
  height: 22px;
}

.hero--editorial .hero__paper-mark--contract {
  right: clamp(22px, 4vw, 70px);
  bottom: 16%;
  width: clamp(120px, 12vw, 192px);
  height: clamp(168px, 15vw, 248px);
  display: grid;
  place-items: start center;
  padding-top: 32px;
  border: 2px solid currentColor;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1rem, 1.3vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  transform: rotate(18deg);
}

.hero--editorial .hero__paper-mark--contract::before,
.hero--editorial .hero__paper-mark--contract::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  height: 2px;
  background: currentColor;
}

.hero--editorial .hero__paper-mark--contract::before {
  top: 48%;
  box-shadow: 0 20px 0 currentColor, 0 40px 0 currentColor;
}

.hero--editorial .hero__paper-mark--contract::after {
  bottom: 16%;
  left: 56%;
  width: 72px;
  transform: rotate(-28deg);
}

.hero--editorial .hero__grid {
  position: relative;
  z-index: 2;
  width: min(100% - clamp(112px, 12vw, 190px), 1500px);
  height: 100%;
  margin: 0 0 0 clamp(96px, 8vw, 132px);
  display: grid;
  grid-template-columns: minmax(680px, 0.96fr) minmax(430px, 1.04fr);
  gap: clamp(16px, 2vw, 32px);
  align-items: center;
  padding: clamp(30px, 4.1vh, 52px) 0 clamp(30px, 4vh, 52px);
}

.hero--editorial .hero__content {
  min-width: 0;
  padding: 0;
}

.hero--editorial .hero__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 clamp(28px, 4.2vh, 44px);
  padding: 10px 22px 11px;
  border-top: 1px solid rgba(8, 23, 53, 0.55);
  border-bottom: 1px solid rgba(8, 23, 53, 0.55);
  color: var(--hero-ink);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.1rem, 1.55vw, 1.62rem);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.hero--editorial .hero__eyebrow::before,
.hero--editorial .hero__eyebrow::after {
  content: "";
  position: absolute;
  top: -8px;
  bottom: -8px;
  width: 1px;
  background: rgba(8, 23, 53, 0.24);
}

.hero--editorial .hero__eyebrow::before {
  left: -10px;
}

.hero--editorial .hero__eyebrow::after {
  right: -10px;
}

.hero--editorial .hero__eyebrow span,
.hero--editorial .hero__title .hero__accent,
.hero--editorial .hero__image-caption strong span {
  color: var(--hero-orange);
}

.hero--editorial .hero__title {
  margin: 0;
  max-width: 840px;
  color: var(--hero-ink);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(3.65rem, 5.35vw, 6.1rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero--editorial .hero__title .hero__accent {
  display: inline-block;
  transform: translateY(0.02em);
}

.hero--editorial .hero__title-line {
  display: inline-block;
  white-space: nowrap;
  color: var(--hero-ink);
  box-shadow: none;
}

.hero--editorial .hero__lead {
  position: relative;
  margin: clamp(22px, 3.2vh, 32px) 0 0;
  padding-left: 18px;
  color: #1c2030;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 1.22vw, 1.28rem);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.hero--editorial .hero__lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.26em;
  bottom: 0.26em;
  width: 3px;
  background: var(--hero-gold);
}

.hero--editorial .hero__support-copy {
  position: relative;
  width: min(100%, 690px);
  margin: clamp(28px, 4vh, 44px) 0 12px;
  color: #1c2030;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(0.98rem, 1.15vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.hero--editorial .hero__support-copy::before,
.hero--editorial .hero__support-copy::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(36px, 4vw, 64px);
  height: 1px;
  background: var(--hero-gold);
}

.hero--editorial .hero__support-copy::before {
  left: 0;
  transform: rotate(62deg);
}

.hero--editorial .hero__support-copy::after {
  right: 0;
  transform: rotate(-62deg);
}

.hero--editorial .hero__point-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  width: min(100%, 650px);
  border: 1px solid rgba(8, 23, 53, 0.5);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 14px 28px rgba(8, 23, 53, 0.05);
}

.hero--editorial .hero__point-intro {
  display: grid;
  place-content: center;
  min-height: 104px;
  background: #07172f;
  color: #fff;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.hero--editorial .hero__point-intro strong {
  color: #e0b25e;
  font-size: 1.2em;
}

.hero--editorial .hero__points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero--editorial .hero__points li {
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 104px;
  padding: 10px 10px;
  border-left: 1px solid rgba(8, 23, 53, 0.18);
  text-align: center;
}

.hero--editorial .hero__points img {
  width: 34px;
  height: 34px;
  margin: 0 auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(8, 23, 53, 0.12);
}

.hero--editorial .hero__points strong {
  color: #31302e;
  font-size: 0.82rem;
  font-weight: 900;
}

.hero--editorial .hero__points span {
  color: #34312e;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
}

.hero--editorial .hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(14px, 1.5vw, 20px);
  margin-top: clamp(22px, 3.6vh, 36px);
}

.hero--editorial .hero__actions .btn {
  min-width: min(100%, 430px);
  min-height: 78px;
  justify-content: center;
  gap: 22px;
  border: 3px solid #c83708;
  border-radius: 7px;
  background: linear-gradient(180deg, #e95718 0%, #cc3d12 100%);
  color: #fff;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.18rem, 1.72vw, 1.82rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.28),
    0 4px 0 #8e2a0f,
    0 18px 34px rgba(154, 58, 24, 0.18);
}

.hero--editorial .hero__free-badge {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  color: var(--hero-orange);
  font-size: 1.06rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.hero--editorial .btn__arrow {
  font-family: Inter, sans-serif;
  font-size: 1.25em;
  font-weight: 600;
  transform: translateY(-0.02em);
}

.hero--editorial .phone-card {
  min-width: 190px;
  min-height: 74px;
  border: 1px solid rgba(8, 23, 53, 0.5);
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.86);
  padding: 10px 14px;
  box-shadow: none;
}

.hero--editorial .phone-card__icon {
  width: 30px;
  height: 30px;
  color: var(--hero-ink);
}

.hero--editorial .phone-card__body strong {
  color: var(--hero-ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.78rem, 0.9vw, 0.92rem);
  font-weight: 900;
  line-height: 1.35;
}

.hero--editorial .phone-card__body span {
  color: #58534c;
  font-size: 0.66rem;
  font-weight: 700;
}

.hero--editorial .hero__note {
  margin: clamp(18px, 2.4vh, 24px) 0 0;
  color: rgba(8, 23, 53, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero--editorial .hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 0;
}

.hero--editorial .hero__house-frame,
.hero--editorial .hero__couple-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.hero--editorial .hero__house-frame {
  top: clamp(22px, 4vh, 44px);
  right: clamp(70px, 6vw, 112px);
  width: min(34vw, 520px);
  height: min(66vh, 640px);
  border-radius: 999px 999px 0 0;
  box-shadow: 0 18px 42px rgba(8, 23, 53, 0.08);
}

.hero--editorial .hero__house-frame img,
.hero--editorial .hero__couple-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero--editorial .hero__house-frame img {
  object-position: 55% 50%;
}

.hero--editorial .hero__couple-frame {
  right: clamp(18px, 2vw, 34px);
  bottom: clamp(74px, 8vh, 112px);
  width: clamp(230px, 22vw, 350px);
  aspect-ratio: 1;
  border: 9px solid #fff;
  border-radius: 50%;
  box-shadow: 0 20px 42px rgba(8, 23, 53, 0.14);
}

.hero--editorial .hero__couple-frame img {
  object-position: 52% 43%;
}

.hero--editorial .hero__image-caption {
  position: absolute;
  right: clamp(14px, 2.5vw, 46px);
  bottom: clamp(12px, 2.2vh, 26px);
  min-width: min(29vw, 470px);
  padding: 15px 36px 18px;
  border: 1px solid rgba(181, 138, 56, 0.45);
  background: rgba(255, 253, 248, 0.94);
  color: var(--hero-ink);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  text-align: center;
  box-shadow: 0 18px 32px rgba(8, 23, 53, 0.08);
}

.hero--editorial .hero__image-caption > span {
  display: block;
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero--editorial .hero__image-caption strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.6rem, 2.42vw, 2.72rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.18;
}

.hero--editorial .hero__image-caption strong span {
  display: inline;
  font-size: inherit;
}

.hero--editorial .hero__photo img,
.hero--editorial .hero__scribble,
.hero--editorial .btn--primary {
  animation: none;
}

@media (min-width: 1100px) and (max-height: 760px) {
  .hero--editorial {
    min-height: 620px;
  }

  .hero--editorial .hero__grid {
    padding-block: 24px 26px;
  }

  .hero--editorial .hero__eyebrow {
    margin-bottom: 20px;
    padding-block: 7px 8px;
    font-size: 1.12rem;
  }

  .hero--editorial .hero__title {
    font-size: clamp(3.25rem, 4.75vw, 4.65rem);
    line-height: 1.14;
  }

  .hero--editorial .hero__lead {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero--editorial .hero__support-copy {
    margin-top: 22px;
  }

  .hero--editorial .hero__point-row {
    grid-template-columns: 132px minmax(0, 1fr);
    width: min(100%, 580px);
  }

  .hero--editorial .hero__point-intro,
  .hero--editorial .hero__points li {
    min-height: 96px;
  }

  .hero--editorial .hero__points img {
    width: 18px;
    height: 18px;
  }

  .hero--editorial .hero__points strong {
    font-size: 0.7rem;
  }

  .hero--editorial .hero__points span {
    font-size: 0.6rem;
  }

  .hero--editorial .hero__actions {
    margin-top: 20px;
  }

  .hero--editorial .hero__actions .btn {
    min-height: 68px;
    font-size: 1.32rem;
  }

  .hero--editorial .hero__free-badge {
    width: 54px;
    height: 54px;
  }

  .hero--editorial .phone-card {
    min-height: 66px;
    min-width: 178px;
    padding-inline: 12px;
  }

  .hero--editorial .phone-card__icon {
    width: 26px;
    height: 26px;
  }

  .hero--editorial .phone-card__body span {
    font-size: 0.6rem;
  }

  .hero--editorial .hero__note {
    margin-top: 12px;
  }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .hero--editorial {
    min-height: 760px;
    height: auto;
  }

  .hero--editorial .hero__corner-proof {
    right: 0;
    width: clamp(280px, 34vw, 330px);
    padding-left: clamp(116px, 14vw, 140px);
    padding-right: 18px;
  }

  .hero--editorial .hero__grid {
    width: min(100% - 112px, 940px);
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 0 42px;
  }

  .hero--editorial .hero__content {
    max-width: 760px;
  }

  .hero--editorial .hero__title {
    font-size: clamp(3.8rem, 8vw, 5.6rem);
  }

  .hero--editorial .hero__visual {
    min-height: 390px;
  }

  .hero--editorial .hero__house-frame {
    right: 190px;
    width: min(48vw, 420px);
    height: 360px;
  }

  .hero--editorial .hero__couple-frame {
    right: 20px;
    bottom: 42px;
    width: 260px;
  }

  .hero--editorial .hero__image-caption {
    right: 0;
    bottom: 0;
    min-width: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .js-reveal {
    opacity: 1;
    transform: none;
  }
}
