:root {
  --navy: #102a43;
  --blue: #1e4a7a;
  --blue-2: #2c6bb0;
  --light-blue: #e8f0fa;
  --soft-blue: #f3f8fc;
  --gold: #c9a24a;
  --gold-dark: #9e7627;
  --teal: #2a9d8f;
  --red: #dc2626;
  --ink: #172033;
  --muted: #5f6f82;
  --line: #d7e3ef;
  --white: #ffffff;
  --section: 88px;
  --container: 1120px;
  --shadow: 0 14px 34px rgba(16, 42, 67, 0.1);
}

* {
  box-sizing: border-box;
}

html:lang(ja) {
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
}

body {
  margin: 0;
  padding-bottom: 92px;
  background: var(--white);
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

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

a {
  color: inherit;
}

:lang(ja) h1,
:lang(ja) h2,
:lang(ja) h3 {
  word-break: auto-phrase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

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

.section {
  padding: var(--section) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--container));
  min-height: 66px;
  margin: 0 auto;
  gap: 24px;
}

.site-logo {
  width: 156px;
  height: auto;
}

.site-header p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 64px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 39%, rgba(255, 255, 255, 0.62) 68%, rgba(255, 255, 255, 0.18) 100%),
    url("./assets/generated/hero-bg-image2.png?v=20260625-image2-v1") center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(30, 74, 122, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(30, 74, 122, 0.028) 1px, transparent 1px);
  background-size: 88px 88px;
  content: "";
  mask-image: radial-gradient(circle at 72% 38%, #000 0 42%, transparent 72%);
  pointer-events: none;
}

.hero::before,
.hero__map,
.hero__floating-icons {
  display: none;
}

.hero__map {
  position: absolute;
  top: 72px;
  right: max(20px, calc((100vw - var(--container)) / 2 - 18px));
  z-index: 0;
  width: 560px;
  height: 390px;
  opacity: 0.18;
  background: url("./assets/okinawa-map-line.svg") center / contain no-repeat;
  pointer-events: none;
}

.hero__floating-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__floating-icon {
  position: absolute;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(44, 107, 176, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 30px rgba(16, 42, 67, 0.08);
  backdrop-filter: blur(8px);
}

.hero__floating-icon img {
  width: 30px;
  height: 30px;
  opacity: 0.78;
}

.hero__floating-icon--bank {
  right: max(520px, calc((100vw - var(--container)) / 2 + 465px));
  top: 178px;
}

.hero__floating-icon--document {
  right: max(170px, calc((100vw - var(--container)) / 2 + 142px));
  top: 118px;
}

.hero__floating-icon--chart {
  right: max(78px, calc((100vw - var(--container)) / 2 + 48px));
  top: 304px;
}

.hero__floating-icon--consultation {
  right: max(462px, calc((100vw - var(--container)) / 2 + 402px));
  top: 438px;
}

.hero__floating-icon--check {
  right: max(258px, calc((100vw - var(--container)) / 2 + 218px));
  top: 484px;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  align-items: center;
  gap: 54px;
}

.hero__copy {
  grid-column: 1;
  grid-row: 1;
}

.hero__actions {
  grid-column: 1;
  grid-row: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 6px 15px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-kicker {
  background: var(--light-blue);
  color: var(--blue);
}

.hero h1 {
  margin-top: 20px;
  color: var(--navy);
  font-size: clamp(38px, 4.1vw, 56px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0.01em;
}

.hero h1 span {
  color: var(--gold-dark);
  background: linear-gradient(transparent 63%, rgba(255, 224, 118, 0.82) 63%);
}

.hero__lead {
  max-width: 620px;
  margin-top: 18px;
  color: #26384d;
  font-size: 17px;
  font-weight: 600;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.hero-badges span {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 22px rgba(16, 42, 67, 0.08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.32;
  text-align: center;
}

.hero-badges strong {
  display: block;
  margin-top: 2px;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.1;
}

.cta-block {
  margin-top: 28px;
  text-align: center;
}

.cta-block p {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
}

.cta-block small,
.final-cta small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 430px);
  min-height: 58px;
  padding: 16px 36px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, #f87171 0%, var(--red) 52%, #b91c1c 100%);
  box-shadow: 0 10px 22px rgba(220, 38, 38, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button::after,
.floating-cta::after {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  content: "";
  transform: skewX(-20deg);
  animation: cta-shine 3.2s ease-in-out infinite;
}

.cta-button:hover,
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(220, 38, 38, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.cta-button:focus-visible,
.floating-cta:focus-visible {
  outline: 4px solid rgba(42, 107, 176, 0.46);
  outline-offset: 4px;
}

@keyframes cta-shine {
  0% {
    left: -100%;
  }

  34%,
  100% {
    left: 120%;
  }
}

.hero__visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.hero__portrait-wrap {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 392px;
  overflow: visible;
}

.hero__portrait-wrap::before {
  position: absolute;
  right: 2%;
  bottom: 5%;
  left: 3%;
  height: 64%;
  border-radius: 52% 48% 45% 55% / 58% 54% 46% 42%;
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.46) 44%, rgba(232, 240, 250, 0.18) 72%, transparent 100%);
  content: "";
  filter: blur(0.2px);
}

.hero__portrait-wrap::after {
  position: absolute;
  right: 8%;
  bottom: 1%;
  left: 8%;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(16, 42, 67, 0.18), transparent 68%);
  content: "";
  filter: blur(12px);
}

.hero__portrait-wrap > img {
  position: relative;
  z-index: 1;
  width: 112%;
  max-width: none;
  margin-left: -6%;
  filter: drop-shadow(0 22px 28px rgba(16, 42, 67, 0.18));
}

.support-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.support-strip span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.support-strip img,
.pain-grid img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.pricing h2 {
  margin-top: 14px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.38;
  letter-spacing: 0.01em;
}

.section-heading p:not(.section-kicker) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.pain,
.institutions,
.pricing,
.voices {
  background: var(--soft-blue);
}

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

.pain-grid article,
.institution-grid article,
.reason-grid article,
.case-grid article,
.voice-grid article,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pain-grid article {
  min-height: 178px;
  padding: 22px 18px;
}

.pain-grid h3,
.case-grid h3,
.faq-grid h3 {
  margin-top: 12px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.42;
}

.pain-grid p,
.case-grid p,
.faq-grid p,
.voice-grid p,
.institution-grid p,
.reason-grid p,
.consultant-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
}

.difference {
  background:
    linear-gradient(135deg, rgba(42, 107, 176, 0.12), transparent 42%),
    var(--navy);
  color: var(--white);
}

.difference__title {
  text-align: center;
}

.difference__title p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  font-weight: 800;
}

.difference__title h2 {
  margin-top: 8px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.38;
}

.comparison-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.comparison-cards article {
  min-height: 268px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.comparison-cards__strong {
  background: var(--white) !important;
  color: var(--ink);
}

.comparison-cards h3 {
  color: inherit;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
}

.comparison-cards__strong h3 {
  color: var(--gold-dark);
}

.comparison-cards ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-cards li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.comparison-cards li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.comparison-arrow {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

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

.consultant-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.consultant-card > img {
  align-self: stretch;
  width: 190px;
  height: 270px;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  background: var(--light-blue);
}

.consultant-name {
  color: var(--blue) !important;
  font-size: 40px !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
}

.consultant-card h3 {
  margin-top: 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--light-blue);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

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

.institution-grid article {
  position: relative;
  min-height: 338px;
  padding: 16px 16px 24px;
  overflow: hidden;
}

.institution-grid article::after {
  position: absolute;
  right: -24px;
  bottom: -26px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(44, 107, 176, 0.06);
  content: "";
}

.institution-card__visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 192px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(44, 107, 176, 0.2);
  border-radius: 16px;
  background: #f8fcff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 22px rgba(16, 42, 67, 0.08);
}

.institution-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.institution-grid h3 {
  position: relative;
  z-index: 1;
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
}

.institution-grid p {
  position: relative;
  z-index: 1;
}

.note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

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

.reason-grid article {
  min-height: 230px;
  padding: 28px;
}

.reason-grid span,
.flow-list span {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.reason-grid h3 {
  margin-top: 18px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.45;
}

.cta-band,
.final-cta {
  background:
    radial-gradient(circle at 88% 30%, rgba(201, 162, 74, 0.22), transparent 28%),
    linear-gradient(135deg, var(--navy), #063055);
  color: var(--white);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 54px 0;
}

.cta-band img {
  width: 150px;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--white);
}

.cta-band h2,
.final-cta h2 {
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.35;
}

.cta-band p,
.final-cta p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 700;
}

.cta-button--light {
  flex: 0 0 auto;
  background: linear-gradient(180deg, #f87171 0%, var(--red) 52%, #b91c1c 100%);
  box-shadow: 0 10px 22px rgba(220, 38, 38, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.cta-band .cta-button,
.final-cta .cta-button {
  background: linear-gradient(180deg, #f87171 0%, var(--red) 52%, #b91c1c 100%);
  box-shadow: 0 10px 22px rgba(220, 38, 38, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.cta-button--red,
.final-cta .cta-button--red {
  background: linear-gradient(180deg, #ff5a5f 0%, #dc2626 50%, #a91515 100%) !important;
  box-shadow: 0 12px 26px rgba(220, 38, 38, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.34) !important;
}

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

.flow-list li {
  position: relative;
  min-height: 230px;
  padding: 22px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.flow-list h3 {
  margin-top: 14px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.flow-list p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.62;
}

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

.price-badges {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.price-badges span {
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}

.price-badges strong {
  display: block;
  color: var(--gold-dark);
  font-size: 30px;
  line-height: 1.15;
  white-space: nowrap;
}

.price-badges__gold {
  border-color: rgba(201, 162, 74, 0.5) !important;
  background: linear-gradient(180deg, #fff8e5, #ffffff) !important;
}

.pricing-cta {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 540px);
  margin-top: -4px;
}

.pricing-cta p {
  color: var(--gold-dark);
}

.fee-table,
.compare-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.fee-table caption {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  text-align: left;
}

th,
td {
  padding: 16px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

thead th {
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.compare-table th,
.compare-table td {
  text-align: center;
  vertical-align: middle;
}

tbody th {
  width: 26%;
  color: var(--blue);
  font-weight: 900;
}

.case-grid,
.voice-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.case-grid article,
.voice-grid article,
.faq-grid article {
  padding: 24px;
}

.case-grid article {
  display: grid;
  align-content: start;
}

.case-card__visual {
  display: grid;
  place-items: center;
  width: 100%;
  height: 222px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(44, 107, 176, 0.18);
  border-radius: 16px;
  background: #f8fcff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 10px 20px rgba(16, 42, 67, 0.07);
}

.case-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
}

.compare-table-section .section-heading {
  text-align: center;
}

.compare-table th:nth-child(2),
.compare-table td:nth-child(2) {
  background: #fff8e5;
  color: var(--navy);
}

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

.voices .section-heading,
.voice-card {
  text-align: center;
}

.voice-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 244px;
}

.voice-card__visual {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin-bottom: 18px;
  border: 1px solid rgba(44, 107, 176, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 240, 250, 0.76));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 12px 24px rgba(16, 42, 67, 0.08);
}

.voice-card__visual img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.voice-grid h3 {
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

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

.faq-grid article {
  box-shadow: none;
}

.final-cta {
  padding: 76px 0 86px;
  text-align: center;
}

.final-cta__inner {
  display: grid;
  justify-items: center;
}

.final-cta .cta-button {
  margin-top: 28px;
}

.final-cta small {
  color: rgba(255, 255, 255, 0.72);
}

.floating-cta {
  position: fixed;
  right: max(18px, calc((100vw - var(--container)) / 2 + 18px));
  bottom: 18px;
  z-index: 50;
  display: grid;
  justify-items: center;
  min-width: 340px;
  padding: 17px 24px 18px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 12px;
  background: linear-gradient(180deg, #ff5a5f 0%, #dc2626 50%, #a91515 100%);
  box-shadow: 0 16px 36px rgba(220, 38, 38, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.34);
  color: var(--white);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.floating-cta span,
.floating-cta strong {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 1.2;
  white-space: nowrap;
}

.floating-cta span {
  font-size: 12px;
  font-weight: 800;
}

.floating-cta strong {
  font-size: 18px;
  font-weight: 900;
}

.site-footer {
  padding: 28px 0 92px;
  border-top: 1px solid var(--line);
  background: #f7fbff;
}

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

.site-footer dl {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 0;
}

.site-footer dl > div {
  display: flex;
  gap: 8px;
}

.site-footer dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.site-footer dd {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font-size: 13px;
  font-weight: 800;
}

.site-footer a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer a:hover {
  color: var(--navy);
}

@media (max-width: 1023px) {
  :root {
    --section: 72px;
  }

  .hero__grid,
  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy,
  .hero__visual,
  .hero__actions {
    grid-column: auto;
    grid-row: auto;
  }

  .hero__visual {
    max-width: 560px;
    margin: 0 auto;
  }

  .hero__floating-icon--bank {
    right: 62%;
    top: 58%;
  }

  .hero__floating-icon--document {
    right: 8%;
    top: 18%;
  }

  .hero__floating-icon--chart {
    right: 5%;
    top: 43%;
  }

  .hero__floating-icon--consultation,
  .hero__floating-icon--check {
    display: none;
  }

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

  .consultant-grid,
  .comparison-cards,
  .voice-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .comparison-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }

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

  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  :root {
    --section: 60px;
  }

  body {
    padding-bottom: 98px;
    font-size: 15px;
  }

  .container,
  .site-header__inner {
    width: min(calc(100% - 40px), var(--container));
  }

  .site-header__inner {
    min-height: 58px;
  }

  .site-logo {
    width: 138px;
  }

  .site-header p {
    display: none;
  }

  .hero {
    padding: 38px 0 54px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.96) 42%, rgba(248, 251, 254, 0.98) 100%),
      url("./assets/generated/hero-bg-image2.png?v=20260625-image2-v1") center top / 100% auto no-repeat,
      linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
  }

  .hero__map {
    top: 108px;
    right: -190px;
    width: 470px;
    height: 320px;
    opacity: 0.12;
  }

  .hero__grid {
    gap: 28px;
  }

  .hero__floating-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    opacity: 0.58;
  }

  .hero__floating-icon img {
    width: 24px;
    height: 24px;
  }

  .hero__floating-icon--bank {
    right: auto;
    left: 18px;
    top: 690px;
  }

  .hero__floating-icon--document {
    right: 20px;
    top: 326px;
  }

  .hero__floating-icon--chart {
    right: 24px;
    top: 770px;
  }

  .eyebrow,
  .section-kicker {
    min-height: 30px;
    font-size: 13px;
  }

  .hero h1 {
    margin-top: 16px;
    font-size: 31px;
    line-height: 1.34;
  }

  .hero__lead,
  .section-heading p:not(.section-kicker) {
    font-size: 15px;
  }

  .hero__portrait-wrap {
    min-height: 0;
  }

  .hero__portrait-wrap::before {
    right: 0;
    bottom: 4%;
    left: 0;
    height: 58%;
  }

  .hero__portrait-wrap > img {
    width: 100%;
    margin-left: 0;
  }

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

  .hero-badges span {
    min-height: 74px;
  }

  .hero-badges strong {
    font-size: 17px;
  }

  .cta-button {
    width: 100%;
    min-height: 56px;
    padding: 16px 18px;
    font-size: 16px;
    white-space: normal;
  }

  .support-strip,
  .pain-grid,
  .institution-grid,
  .reason-grid,
  .case-grid,
  .flow-list,
  .price-badges {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .section-heading h2,
  .pricing h2,
  .difference__title h2,
  .cta-band h2,
  .final-cta h2 {
    font-size: 26px;
    line-height: 1.42;
  }

  .pain-grid article {
    min-height: auto;
    padding: 18px;
  }

  .difference__title {
    text-align: left;
  }

  .comparison-cards {
    gap: 18px;
  }

  .comparison-cards article {
    min-height: auto;
    padding: 22px;
  }

  .consultant-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .consultant-card > img {
    width: 100%;
    height: 250px;
  }

  .consultant-name {
    font-size: 34px !important;
  }

  .institution-grid article,
  .reason-grid article,
  .case-grid article,
  .voice-grid article,
  .faq-grid article {
    padding: 20px;
  }

  .institution-card__visual,
  .case-card__visual {
    height: auto;
    min-height: 0;
    padding: 12px;
    overflow: visible;
  }

  .institution-card__visual img,
  .case-card__visual img {
    display: block;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .institution-card__visual img {
    width: min(100%, 245px);
  }

  .case-card__visual img {
    width: min(100%, 280px);
  }

  .cta-band__inner {
    padding: 46px 0;
  }

  .cta-band .cta-button {
    width: 100%;
  }

  .pricing-cta {
    width: 100%;
    margin-top: 4px;
  }

  .pricing-cta p {
    font-size: 14px;
  }

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

  .price-badges span {
    min-height: 88px;
  }

  .compare-table {
    min-width: 720px;
  }

  th,
  td {
    padding: 13px;
    font-size: 14px;
  }

  .final-cta {
    padding: 58px 0 70px;
    text-align: left;
  }

  .final-cta__inner {
    justify-items: stretch;
  }

  .floating-cta {
    right: auto;
    left: 50%;
    bottom: 12px;
    width: min(calc(100vw - 24px), 430px);
    min-width: 0;
    transform: translateX(-50%);
  }

  .floating-cta:hover {
    transform: translateX(-50%) translateY(-2px);
  }

  .floating-cta strong {
    font-size: 16px;
    text-align: center;
    white-space: normal;
  }

  .site-footer {
    padding: 26px 0 110px;
  }

  .site-footer__inner,
  .site-footer dl,
  .site-footer dl > div,
  .site-footer__links {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__inner {
    gap: 16px;
  }

  .site-footer dl,
  .site-footer__links {
    gap: 10px;
  }
}

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

  .cta-button,
  .floating-cta {
    transition: none;
  }

  .cta-button::after,
  .floating-cta::after {
    animation: none;
  }
}
