:root {
  --color-navy: #041647;
  --color-blue: #0758e6;
  --color-blue-deep: #001a66;
  --color-line: #06c755;
  --color-line-dark: #05b64f;
  --color-yellow: #fff100;
  --color-text: #06143c;
  --header-height: 80px;
  --container-width: 1334px;
  --fs-hero-title: 52px;
  --fs-section-title: 40px;
  --fs-section-lead: 17px;
  --fs-body: 16px;
  --fs-card-title: 25px;
  --fs-card-title-lg: 28px;
  --fs-list-title: 22px;
  --fs-label: 25px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  background: #fff;
}

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

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

.pc-only {
  display: inline !important;
}

.sp-only {
  display: none !important;
}

.keep-mobile {
  display: inline !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  background: #fff;
  box-shadow: 0 1px 0 rgba(6, 20, 60, 0.08);
}

.site-header__inner {
  width: min(100%, 1448px);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 278px 1fr auto;
  align-items: center;
  column-gap: 36px;
}

.site-header__logo {
  display: block;
  width: 250px;
}

.site-header__logo img {
  width: 100%;
  height: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3.3vw, 56px);
  color: #07143c;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.site-header__nav a,
.line-button {
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  opacity: 0.72;
}

.site-header__nav-line {
  display: none;
}

.site-header__menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
}

.site-header__menu span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: var(--color-text);
  border-radius: 999px;
}

.line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #08b73d 0%, var(--color-line) 64%, var(--color-line-dark) 100%);
  box-shadow: 0 14px 32px rgba(4, 168, 50, 0.28);
  font-weight: 900;
  letter-spacing: 0;
}

.line-button:hover,
.line-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(4, 168, 50, 0.34);
}

.line-button__icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  isolation: isolate;
  width: 38px;
  height: 27px;
  border-radius: 50%;
  color: var(--color-line);
  background: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.line-button span:not(.line-button__icon):not(.line-button__arrow) {
  white-space: nowrap;
}

.line-button__icon::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 9px;
  bottom: -4px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 2px 2px 10px 2px;
  transform: rotate(38deg) skew(-10deg);
  transform-origin: center;
}

.line-button--header {
  min-width: 238px;
  min-height: 50px;
  padding: 0 22px;
  font-size: 16px;
}

.line-button--header .line-button__icon {
  width: 32px;
  height: 23px;
  font-size: 8px;
}

.hero {
  min-height: 860px;
  color: #fff;
  background-color: #001757;
  background-image: url("../images/decoration-hero-background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  width: min(100%, 1448px);
  min-height: 860px;
  margin: 0 auto;
  padding: 40px 26px 64px 58px;
  display: grid;
  grid-template-columns: minmax(720px, 1fr) 580px;
  column-gap: 28px;
}

.hero__copy {
  min-width: 0;
  padding-top: 104px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  min-height: 53px;
  margin: 0 0 66px;
  padding: 0 20px;
  border: 2px solid var(--color-yellow);
  border-radius: 999px;
  color: var(--color-yellow);
  background: rgba(2, 33, 113, 0.22);
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.hero__title {
  margin: 0;
  font-size: var(--fs-hero-title);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.hero__title-line {
  display: inline-block;
}

.hero__lead {
  margin: 25px 0 0;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.8;
}

.hero__lead--second {
  margin-top: 4px;
}

.line-button--hero {
  width: 461px;
  min-height: 108px;
  margin-top: 46px;
  padding: 0 38px;
  justify-content: flex-start;
  gap: 25px;
  font-size: 30px;
}

.line-button--hero .line-button__icon {
  width: 68px;
  height: 48px;
  font-size: 15px;
}

.line-button__arrow {
  margin-left: auto;
  font-size: 70px;
  font-family: Arial, sans-serif;
  font-weight: 300;
  line-height: 0.6;
}

.hero__visual {
  position: relative;
  width: 710px;
  min-width: 0;
  min-height: auto;
  align-self: center;
  justify-self: end;
  transform: translateX(0);
}

.hero__dashboard-composite {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-dashboard-cluster {
  position: relative;
  width: 664px;
  height: 846px;
}

.hero-card-image {
  position: absolute;
  display: block;
  height: auto;
}

.hero-card-image--wallet {
  top: 0;
  left: 0;
  width: 300px;
}

.hero-card-image--transactions {
  top: 0;
  right: 0;
  width: 356px;
}

.hero-card-image--funds {
  top: 232px;
  left: 0;
  width: 300px;
}

.hero-card-image--chat {
  top: 250px;
  right: 0;
  width: 356px;
}

.hero-card-image--report {
  top: 520px;
  left: 0;
  width: 300px;
}

.hero-card-image--pdf {
  top: 606px;
  right: 0;
  width: 356px;
}

.hero__dashboard {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.trouble {
  min-height: auto;
  background:
    radial-gradient(circle at 50% 38%, rgba(228, 241, 255, 0.88) 0, rgba(245, 250, 255, 0.62) 42%, rgba(255, 255, 255, 0) 68%),
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  overflow: hidden;
}

.trouble__inner {
  width: min(100%, 1448px);
  margin: 0 auto;
  padding: 31px 58px 70px;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--color-text);
  font-weight: 900;
  line-height: 1;
}

.section-label--yellow,
.thoughts__label,
.contact__label {
  min-width: 110px;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 5px;
  color: var(--color-text);
  background: var(--color-yellow);
  font-size: var(--fs-label);
  font-weight: 900;
  line-height: 1;
}

.trouble__title {
  margin: 24px 0 0;
  color: var(--color-text);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0;
}

.trouble__title-line {
  display: inline;
}

.trouble__lead {
  margin: 24px 0 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 900;
  line-height: 2;
}

.trouble__card {
  width: min(100%, 1192px);
  margin: 19px auto 0;
  padding: 27px 45px 28px 48px;
  border: 1px solid #d9e4f2;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 34px rgba(13, 56, 107, 0.13);
}

.trouble-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.trouble-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 69px;
  padding: 0 0 0 72px;
  border-bottom: 1px solid #d8e2ee;
  color: var(--color-text);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.trouble-list li:last-child {
  border-bottom: 0;
}

.trouble-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0a6bf2 0%, #0729b9 92%);
  transform: translateY(-50%);
  box-shadow: inset 0 -3px 8px rgba(1, 8, 54, 0.2);
}

.trouble-list li::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 50%;
  width: 14px;
  height: 22px;
  border-right: 6px solid #fff;
  border-bottom: 6px solid #fff;
  transform: translateY(-66%) rotate(45deg);
}

.line-button--trouble {
  width: 520px;
  min-height: 70px;
  margin-top: 28px;
  padding: 0 30px 0 42px;
  justify-content: flex-start;
  gap: 20px;
  font-size: 24px;
}

.line-button--trouble .line-button__icon {
  width: 52px;
  height: 37px;
  font-size: 12px;
}

.line-button--trouble .line-button__arrow {
  font-size: 52px;
}

.reason {
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.94) 0, rgba(235, 245, 255, 0.7) 45%, rgba(242, 248, 255, 0.96) 100%),
    linear-gradient(180deg, #f4f9ff 0%, #eef7ff 100%);
  overflow: hidden;
}

.reason__inner {
  width: min(100%, 1122px);
  margin: 0 auto;
  padding: 28px 72px 36px;
  text-align: center;
}

.reason__title {
  margin: 23px 0 0;
  color: var(--color-text);
  font-size: 35px;
  font-weight: 900;
  line-height: 1.34;
  letter-spacing: 0;
}

.reason__lead {
  margin: 18px 0 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 900;
  line-height: 2;
}

.reason-summary {
  width: 100%;
  margin: 24px auto 0;
  padding: 24px 40px 27px;
  border: 1px solid #dbe6f5;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(13, 56, 107, 0.12);
}

.reason-summary__title {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  margin: 0 0 19px;
  color: var(--color-text);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
}

.reason-summary__title::before,
.reason-summary__title::after {
  content: "";
  display: block;
  height: 1px;
  background: #b8c7db;
}

.reason-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.reason-check-list li {
  position: relative;
  min-height: 47px;
  padding: 14px 0 12px 80px;
  border-bottom: 1px dashed #c6d6ea;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
}

.reason-check-list li:last-child {
  border-bottom: 0;
}

.reason-check-list li::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0a6bf2 0%, #0730c0 92%);
  transform: translateY(-50%);
}

.reason-check-list li::after {
  content: "";
  position: absolute;
  left: 41px;
  top: 50%;
  width: 8px;
  height: 13px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateY(-64%) rotate(45deg);
}

.reason__subhead {
  margin: 56px 0 24px;
  color: var(--color-text);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
}

.reason-benefits {
  display: grid;
  gap: 16px;
}

.reason-benefit {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 186px;
  overflow: hidden;
  border: 1px solid #dbe6f5;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 24px rgba(13, 56, 107, 0.09);
  text-align: left;
}

.reason-benefit__image {
  overflow: hidden;
}

.reason-benefit__image img {
  width: 100%;
  height: 100%;
  min-height: 186px;
  object-fit: cover;
}

.reason-benefit__body {
  padding: 25px 28px 22px;
}

.reason-benefit__body h4 {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 20px;
  color: var(--color-text);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.reason-benefit__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 43px;
  height: 34px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(145deg, #146af0 0%, #0634c4 100%);
  box-shadow: inset 0 -2px 5px rgba(0, 11, 82, 0.18);
  font-size: 18px;
  font-weight: 900;
}

.reason-benefit__body p {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.95;
}

.reason-note {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 18px;
  align-items: start;
  margin: 24px 0 0;
  padding: 18px 38px 19px;
  border: 1px solid #d8e7f8;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(231, 243, 255, 0.92), rgba(241, 248, 255, 0.92));
  color: var(--color-text);
  text-align: left;
}

.reason-note__icon {
  display: inline-grid;
  place-items: center;
  width: 43px;
  height: 34px;
  margin-top: 2px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(145deg, #146af0 0%, #0634c4 100%);
  box-shadow: inset 0 -2px 5px rgba(0, 11, 82, 0.18);
  font-size: 18px;
  font-weight: 900;
  font-family: Arial, sans-serif;
}

.reason-note p {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.85;
}

.line-button--reason {
  width: 400px;
  min-height: 70px;
  margin-top: 30px;
  padding: 0 30px 0 45px;
  justify-content: flex-start;
  gap: 22px;
  font-size: 26px;
}

.line-button--reason .line-button__icon {
  width: 52px;
  height: 37px;
  font-size: 12px;
}

.line-button--reason .line-button__arrow {
  font-size: 52px;
}

.feature {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.96) 0, rgba(232, 244, 255, 0.72) 48%, rgba(243, 249, 255, 0.98) 100%),
    linear-gradient(180deg, #f4f9ff 0%, #eef7ff 100%);
  overflow: hidden;
}

.feature__inner {
  width: min(100%, 1122px);
  margin: 0 auto;
  padding: 28px 32px 38px;
  text-align: center;
}

.feature__title {
  margin: 23px 0 0;
  color: var(--color-text);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.feature__lead {
  margin: 23px 0 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 900;
  line-height: 2;
}

.feature-cards {
  display: grid;
  gap: 14px;
  margin-top: 35px;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: 35px;
  align-items: center;
  min-height: 323px;
  padding: 26px 28px;
  border: 1px solid #d9e4f2;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 24px rgba(13, 56, 107, 0.09);
  text-align: left;
}

.feature-card--reverse {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.feature-card--text-wide {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
}

.feature-card__body {
  min-width: 0;
  padding: 14px 12px 14px 18px;
}

.feature-card--reverse .feature-card__body {
  padding-left: 4px;
  padding-right: 22px;
}

.feature-card__body h3 {
  display: flex;
  align-items: flex-start;
  gap: 19px;
  margin: 0 0 28px;
  color: #0637bd;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.feature-card__body h3.feature-card__title--transaction,
.feature-card__body h3.feature-card__title--wide,
.feature-card__body h3.feature-card__title--report {
  gap: 14px;
  font-size: 25px;
}

.feature-card__title--transaction .feature-card__number,
.feature-card__title--wide .feature-card__number,
.feature-card__title--report .feature-card__number {
  width: 60px;
  height: 60px;
  font-size: 32px;
}

.feature-heading-break--mobile {
  display: none;
}

.feature-heading-line {
  display: inline;
}

.feature-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 65px;
  height: 65px;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(145deg, #146af0 0%, #0634c4 100%);
  box-shadow: inset 0 -2px 5px rgba(0, 11, 82, 0.18);
  font-size: 35px;
  font-weight: 900;
  font-family: Arial, sans-serif;
}

.feature-card__title--transaction .feature-card__number,
.feature-card__title--wide .feature-card__number,
.feature-card__title--report .feature-card__number {
  width: 60px;
  height: 60px;
  font-size: 32px;
}

.feature-card__body p {
  margin: 0 0 14px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.9;
}

.feature-card__body p:last-child {
  margin-bottom: 0;
}

.feature-card__image {
  min-width: 0;
  overflow: hidden;
  height: 286px;
  border-radius: 16px;
  clip-path: inset(0 round 16px);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
  background: #eef6ff;
  transform: translateZ(0);
}

.feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  clip-path: inset(0 round 16px);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
}

.feature-card__image--report img {
  transform: scale(1.03);
  transform-origin: center center;
}

.feature-card__image--mobile {
  display: none;
}

.feature-cta {
  display: grid;
  grid-template-columns: 115px 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  padding: 24px 24px 24px 30px;
  border: 1px solid #d9e4f2;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 24px rgba(13, 56, 107, 0.08);
  text-align: left;
}

.feature-cta__icon {
  position: relative;
  width: 82px;
  height: 94px;
  border: 8px solid #0a42c9;
  border-radius: 7px;
}

.feature-cta__icon::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: 36px;
  height: 26px;
  border: 8px solid #0a42c9;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: #fff;
  transform: translateX(-50%);
}

.feature-cta__icon span {
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 18px;
  height: 44px;
  background:
    linear-gradient(#0a42c9 0 0) 0 32px / 11px 12px no-repeat,
    linear-gradient(#0a42c9 0 0) 18px 20px / 11px 24px no-repeat,
    linear-gradient(#0a42c9 0 0) 36px 7px / 11px 37px no-repeat;
}

.feature-cta__icon span::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 17px;
  width: 54px;
  height: 22px;
  border-top: 6px solid #0a42c9;
  border-right: 6px solid #0a42c9;
  transform: skewY(-27deg);
  transform-origin: left top;
}

.feature-cta__copy h3 {
  margin: 0 0 14px;
  color: #0637bd;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
}

.feature-cta__copy p {
  margin: 0 0 7px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.75;
}

.feature-cta__copy p:last-child {
  margin-bottom: 0;
}

.line-button--feature {
  width: 370px;
  min-height: 70px;
  padding: 0 24px 0 30px;
  justify-content: flex-start;
  gap: 14px;
  font-size: 19px;
}

.line-button--feature .line-button__icon {
  width: 50px;
  height: 36px;
  font-size: 12px;
}

.line-button--feature .line-button__arrow {
  font-size: 48px;
}

.first-action {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.98) 0, rgba(234, 245, 255, 0.72) 52%, rgba(244, 249, 255, 0.98) 100%),
    linear-gradient(180deg, #f4f9ff 0%, #eff7ff 100%);
  overflow: hidden;
}

.first-action__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 54px 24px 66px;
  text-align: center;
}

.first-action__title {
  margin: 22px 0 0;
  color: var(--color-text);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.first-action__lead {
  margin: 24px 0 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 900;
  line-height: 2;
}

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

.first-action-card {
  position: relative;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 232px;
  padding: 32px 34px 32px 54px;
  border: 1px solid #dce7f4;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 30px rgba(15, 58, 108, 0.1);
  text-align: left;
}

.first-action-card--wide {
  grid-column: 1 / -1;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 198px;
  padding-right: 64px;
}

.first-action-card__number {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #0d52df 0%, #0634bd 100%);
  box-shadow: inset 0 -2px 5px rgba(0, 11, 82, 0.18);
  font-size: 30px;
  font-weight: 900;
  font-family: Arial, sans-serif;
  line-height: 1;
}

.first-action-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 165px;
  height: 165px;
  margin-left: 26px;
  border-radius: 999px;
  background: #eef6ff;
}

.first-action-card__icon img {
  display: block;
  width: 118px;
  height: 118px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.first-action-card__body h3 {
  margin: 0 0 18px;
  color: var(--color-text);
  font-size: 27px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.first-action-card__body p {
  margin: 0;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.75;
}

.flow {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.98) 0, rgba(234, 245, 255, 0.72) 54%, rgba(244, 249, 255, 0.98) 100%),
    linear-gradient(180deg, #f4f9ff 0%, #eff7ff 100%);
  overflow: hidden;
}

.flow__inner {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 58px 32px 70px;
  text-align: center;
}

.flow__title {
  margin: 22px 0 0;
  color: var(--color-text);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.flow__lead {
  margin: 22px 0 0;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.9;
}

.flow__steps {
  margin-top: 38px;
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 176px;
  padding: 24px 40px;
  border: 1px solid #dce7f4;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 13px 28px rgba(15, 58, 108, 0.1);
  text-align: left;
}

.flow-step + .flow-step {
  margin-top: 20px;
}

.flow-step:not(:last-child)::after {
  content: "↓";
  position: absolute;
  left: 50%;
  bottom: -33px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #dce7f4;
  color: #064ad1;
  background: #fff;
  box-shadow: 0 6px 14px rgba(15, 58, 108, 0.12);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  transform: translateX(-50%);
}

.flow-step__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.flow-step__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 28px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #0d52df 0%, #0634bd 100%);
  font-size: 16px;
  font-weight: 900;
  font-family: Arial, sans-serif;
  line-height: 1;
}

.flow-step__media img {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.flow-step__body h3 {
  margin: 0 0 16px;
  color: var(--color-text);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.flow-step__body p {
  margin: 0;
  color: var(--color-text);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.85;
}

.line-button--flow {
  width: min(100%, 520px);
  min-height: 72px;
  margin-top: 36px;
  padding: 0 28px 0 34px;
  justify-content: flex-start;
  gap: 18px;
  font-size: 22px;
}

.line-button--flow .line-button__icon {
  width: 52px;
  height: 38px;
  font-size: 12px;
}

.line-button--flow .line-button__arrow {
  font-size: 52px;
}

.pricing {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.98) 0, rgba(234, 245, 255, 0.72) 54%, rgba(244, 249, 255, 0.98) 100%),
    linear-gradient(180deg, #f4f9ff 0%, #eff7ff 100%);
  overflow: hidden;
}

.pricing__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 58px 32px 70px;
  text-align: center;
}

.pricing__title {
  margin: 22px 0 0;
  color: var(--color-text);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

.pricing__lead {
  display: grid;
  gap: 24px;
  margin-top: 28px;
  color: var(--color-text);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.9;
}

.pricing__lead p {
  margin: 0;
}

.pricing__note {
  display: grid;
  gap: 24px;
  margin-top: 36px;
  color: var(--color-text);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.9;
}

.pricing__note p {
  margin: 0;
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.pricing-card {
  min-height: 310px;
  padding: 36px 18px 28px;
  border: 1px solid #dce7f4;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 13px 28px rgba(15, 58, 108, 0.1);
  text-align: center;
}

.pricing-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  margin-bottom: 24px;
}

.pricing-card__icon img {
  display: block;
  width: 104px;
  height: 104px;
  object-fit: contain;
}

.flow-step__media img.line-brand-icon,
.pricing-card__icon img.line-brand-icon {
  width: 72px;
  height: 72px;
}

.pricing-card h3 {
  margin: 0 0 20px;
  color: #0637bd;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.35;
}

.pricing-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.85;
}

.pricing-card__nowrap {
  display: inline-block;
  font-size: 0.94em;
  white-space: nowrap;
}

.line-button--pricing {
  width: min(100%, 640px);
  min-height: 72px;
  margin-top: 36px;
  padding: 0 28px 0 40px;
  justify-content: flex-start;
  gap: 22px;
  font-size: 28px;
}

.line-button--pricing .line-button__icon {
  width: 52px;
  height: 38px;
  font-size: 12px;
}

.line-button--pricing .line-button__arrow {
  font-size: 52px;
}

.cases {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.98) 0, rgba(234, 245, 255, 0.72) 54%, rgba(244, 249, 255, 0.98) 100%),
    linear-gradient(180deg, #f4f9ff 0%, #eff7ff 100%);
  overflow: hidden;
}

.cases__inner {
  width: min(100%, 1122px);
  margin: 0 auto;
  padding: 58px 32px 70px;
  text-align: center;
}

.cases__title {
  margin: 22px 0 0;
  color: var(--color-text);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0;
}

.cases__lead {
  margin: 26px 0 0;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.9;
}

.cases__list {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.case-card {
  display: grid;
  grid-template-columns: 94px 170px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 130px;
  padding: 24px 42px 24px 34px;
  border: 1px solid #dce7f4;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 26px rgba(15, 58, 108, 0.1);
  text-align: left;
}

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

.case-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  justify-self: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #0d52df 0%, #0634bd 100%);
  box-shadow: inset 0 -2px 5px rgba(0, 11, 82, 0.18);
  font-size: 27px;
  font-weight: 900;
  font-family: Arial, sans-serif;
}

.case-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-card__icon img {
  display: block;
  width: 104px;
  height: 104px;
  object-fit: contain;
}

.case-card__body h3 {
  margin: 0 0 13px;
  color: #0637bd;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.35;
}

.case-card__title--nowrap {
  white-space: nowrap;
}

.case-card__body p {
  margin: 0;
  color: var(--color-text);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.85;
}

.cases-note {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 42px;
  padding: 24px 34px;
  border: 1px solid #b9cff4;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  text-align: left;
}

.cases-note__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #0d52df 0%, #0634bd 100%);
  font-size: 34px;
  font-weight: 900;
  font-family: Georgia, serif;
  line-height: 1;
}

.cases-note p {
  margin: 0;
  color: #0637bd;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.9;
}

.faq {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.98) 0, rgba(234, 245, 255, 0.72) 54%, rgba(244, 249, 255, 0.98) 100%),
    linear-gradient(180deg, #f4f9ff 0%, #eff7ff 100%);
  overflow: hidden;
}

.faq__inner {
  width: min(100%, 1122px);
  margin: 0 auto;
  padding: 58px 32px 70px;
  text-align: center;
}

.faq__title {
  margin: 22px 0 0;
  color: var(--color-text);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0;
}

.faq__list {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.faq-item {
  border: 1px solid #dce7f4;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 26px rgba(15, 58, 108, 0.1);
  text-align: left;
  overflow: hidden;
}

.faq-item summary {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) 52px;
  gap: 22px;
  align-items: center;
  min-height: 96px;
  padding: 22px 34px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #0d52df 0%, #0634bd 100%);
  box-shadow: inset 0 -2px 5px rgba(0, 11, 82, 0.18);
  font-size: 28px;
  font-weight: 900;
  font-family: Arial, sans-serif;
}

.faq-item__question {
  color: var(--color-text);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.35;
}

.faq-item__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #edf2fa;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 4px;
  border-radius: 999px;
  background: #0637bd;
}

.faq-item__toggle::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-item__toggle::after {
  transform: rotate(0deg);
}

.faq-item__answer {
  padding: 0 112px 28px 122px;
}

.faq-item__answer p {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.9;
}

.column {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.98) 0, rgba(234, 245, 255, 0.72) 54%, rgba(244, 249, 255, 0.98) 100%),
    linear-gradient(180deg, #f4f9ff 0%, #eff7ff 100%);
  overflow: hidden;
}

.column__inner {
  width: min(100%, 1490px);
  margin: 0 auto;
  padding: 58px 32px 70px;
  border: 1px solid #dce7f4;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.28);
  text-align: center;
}

.column__title {
  margin: 22px 0 0;
  color: var(--color-text);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0;
}

.column__lead {
  margin: 30px 0 0;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.9;
}

.column__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 58px;
}

.column-card {
  min-height: 486px;
  padding: 16px;
  border: 1px solid #dce7f4;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 26px rgba(15, 58, 108, 0.1);
  text-align: left;
}

.column-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.column-card > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: var(--column-card-image-ratio, 4 / 3);
  border-radius: 9px;
  object-fit: cover;
}

.column-card__link > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: var(--column-card-image-ratio, 4 / 3);
  border-radius: 9px;
  object-fit: cover;
}

.column-card__body {
  position: relative;
  padding: 24px 8px 8px;
}

.column-card__link > .column-card__body:first-child {
  padding-top: 8px;
}

.column-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 18px;
  border: 1px solid #0a5bff;
  border-radius: 999px;
  color: #0a4ad1;
  background: #fff;
  font-size: 15px;
  font-weight: 900;
}

.column-card h3 {
  margin: 26px 42px 0 0;
  color: var(--color-text);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.55;
}

.column-card__arrow {
  position: absolute;
  right: 4px;
  bottom: 4px;
  color: #064ad1;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.column__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: 392px;
  min-height: 84px;
  margin-top: 58px;
  padding: 0 52px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #0d52df 0%, #0634bd 100%);
  box-shadow: 0 14px 32px rgba(6, 55, 189, 0.28);
  font-size: 26px;
  font-weight: 900;
  text-decoration: none;
}

.column__button span[aria-hidden] {
  font-size: 42px;
  line-height: 1;
}

.thoughts {
  background:
    radial-gradient(circle at 52% 12%, rgba(255, 255, 255, 0.98) 0, rgba(232, 244, 255, 0.78) 52%, rgba(244, 249, 255, 0.98) 100%),
    linear-gradient(180deg, #f3f9ff 0%, #eef7ff 100%);
}

.thoughts__inner {
  width: min(100%, 1490px);
  margin: 0 auto;
  padding: 74px 40px 82px;
}

.thoughts__card {
  position: relative;
  min-height: 950px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(20, 74, 126, 0.12);
}

.thoughts__card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #fff 0%, #fff 41%, rgba(255, 255, 255, 0.92) 47%, rgba(255, 255, 255, 0.16) 61%, rgba(255, 255, 255, 0) 100%);
  content: "";
  pointer-events: none;
}

.thoughts__copy {
  position: relative;
  z-index: 2;
  width: 53%;
  padding: 82px 0 64px 74px;
}

.thoughts__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.thoughts__title {
  margin: 42px 0 0;
  color: var(--color-text);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
}

.thoughts__body {
  margin-top: 28px;
}

.thoughts__body p {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.95;
}

.thoughts__body p + p {
  margin-top: 34px;
}

.thoughts__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-width: 386px;
  min-height: 78px;
  margin-top: 44px;
  padding: 0 42px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #0b55df 0%, #0630b5 100%);
  box-shadow: 0 16px 34px rgba(6, 55, 189, 0.3);
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
}

.thoughts__button span[aria-hidden] {
  font-size: 40px;
  line-height: 1;
}

.thoughts__photo {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 59%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.thoughts__photo--mobile {
  display: none;
}

.contact__photo--mobile {
  display: none;
}

.contact {
  padding: 40px 30px 34px;
  background: #f3f9ff;
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 600px;
  gap: 62px;
  width: min(100%, 1388px);
  min-height: 786px;
  margin: 0 auto;
  padding: 62px 56px 58px;
  align-items: center;
  overflow: hidden;
  border-radius: 36px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 20, 82, 0.96) 0%, rgba(3, 35, 125, 0.9) 56%, rgba(3, 51, 157, 0.84) 100%),
    url("../images/contact-blue-background.png") center / cover no-repeat;
  box-shadow: 0 18px 44px rgba(8, 46, 112, 0.2);
}

.contact__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.contact__title {
  margin: 44px 0 0;
  color: #fff;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.65;
  letter-spacing: 0;
}

.contact__title-line {
  display: inline;
}

.contact__body {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.contact__body p,
.contact__note {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.9;
}

.line-button--contact {
  width: min(100%, 352px);
  min-height: 80px;
  margin-top: 34px;
  padding: 0 26px;
  justify-content: flex-start;
  gap: 14px;
  font-size: 24px;
}

.line-button--contact .line-button__arrow {
  margin-left: auto;
  font-size: 42px;
}

.contact__note {
  margin-top: 36px;
  font-size: 17px;
}

.contact__photo {
  overflow: hidden;
  border-radius: 16px;
}

.contact__photo img {
  width: 100%;
  aspect-ratio: 600 / 654;
  object-fit: cover;
}

.site-footer {
  border-top: 1px solid #dbe5f2;
  color: #031445;
  background: #fff;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(330px, 380px) minmax(0, 1fr);
  align-items: start;
  gap: 54px;
  width: min(100%, 1448px);
  margin: 0 auto;
  padding: 58px 44px 30px;
}

.site-footer__brand {
  display: block;
  min-width: 330px;
}

.site-footer__logo {
  display: block;
  width: fit-content;
}

.site-footer__brand img {
  display: block;
  width: 330px;
  max-width: none;
  height: auto;
}

.site-footer__company,
.site-footer__address {
  margin: 12px 0 0;
  color: #031445;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
}

.site-footer__address {
  margin-top: 4px;
  color: rgba(3, 20, 69, 0.72);
  font-weight: 600;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, max-content));
  justify-content: end;
  gap: 18px 42px;
  align-self: center;
  color: #031445;
  font-size: 16px;
  font-weight: 800;
}

.site-footer__nav a + a {
  position: relative;
}

.site-footer__nav a + a::before {
  display: none;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: #008e9b;
}

.site-footer__copyright {
  grid-column: 1 / -1;
  margin: 34px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(3, 20, 69, 0.16);
  color: rgba(3, 20, 69, 0.68);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.mock-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(229, 235, 245, 0.95);
  border-radius: 12px;
  color: var(--color-text);
  background: #fff;
  box-shadow: 0 14px 24px rgba(0, 10, 41, 0.16);
}

.mock-card h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.mock-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: #105fe8;
}

.mock-icon--person::before,
.mock-icon--person::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid currentColor;
}

.mock-icon--person::before {
  top: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.mock-icon--person::after {
  bottom: 0;
  width: 17px;
  height: 9px;
  border-radius: 11px 11px 3px 3px;
}

.mock-icon--bank::before {
  content: "";
  position: absolute;
  inset: 3px 1px 2px;
  border-bottom: 3px solid currentColor;
  background:
    linear-gradient(currentColor 0 0) 3px 8px / 3px 9px no-repeat,
    linear-gradient(currentColor 0 0) 9px 8px / 3px 9px no-repeat,
    linear-gradient(currentColor 0 0) 15px 8px / 3px 9px no-repeat,
    linear-gradient(135deg, transparent 50%, currentColor 0) left top / 50% 8px no-repeat,
    linear-gradient(225deg, transparent 50%, currentColor 0) right top / 50% 8px no-repeat;
}

.mock-icon--chart {
  border: 3px solid currentColor;
  border-radius: 50%;
}

.mock-icon--chart::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-left-color: currentColor;
  transform: rotate(35deg);
}

.mock-card--wallet {
  top: 0;
  left: 0;
  width: 294px;
  height: 230px;
  padding: 25px 18px 18px;
}

.wallet-address {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  margin: 25px 0 17px;
  padding: 0 16px;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(5, 15, 45, 0.03);
}

.wallet-address strong {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.wallet-address span {
  color: #105fe8;
  font-size: 42px;
  line-height: 1;
}

.mock-card--wallet p {
  margin: 0 0 10px 7px;
  font-size: 13px;
  font-weight: 900;
}

.wallet-network {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-left: 7px;
}

.wallet-network strong {
  font-size: 16px;
  font-weight: 900;
}

.wallet-network span {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 7px;
  border: 1px solid #17ac43;
  border-radius: 6px;
  color: #08a435;
  font-size: 14px;
  font-weight: 900;
}

.mock-card--transactions {
  top: 0;
  right: 0;
  width: 358px;
  height: 252px;
  padding: 25px 22px 17px;
}

.transaction-table {
  width: 100%;
  margin-top: 28px;
  border-collapse: collapse;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
}

.transaction-table th {
  padding-bottom: 17px;
  text-align: left;
  font-size: 13px;
}

.transaction-table td {
  padding-bottom: 16px;
  white-space: nowrap;
}

.transaction-table th:nth-child(2),
.transaction-table td:nth-child(2) {
  text-align: right;
}

.transaction-table th:nth-child(3),
.transaction-table td:nth-child(3) {
  text-align: right;
  color: #105fe8;
}

.more-link {
  margin: -2px 0 0;
  color: #105fe8;
  text-align: right;
  font-size: 14px;
  font-weight: 900;
}

.mock-card--funds {
  top: 252px;
  left: 0;
  width: 294px;
  height: 262px;
  padding: 24px 18px;
}

.funds-content {
  display: grid;
  grid-template-columns: 126px 1fr;
  align-items: center;
  gap: 17px;
  margin-top: 38px;
}

.donut-chart {
  position: relative;
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: conic-gradient(#0b59dd 0 45%, #2f8df7 45% 75%, #a7dcff 75% 100%);
}

.donut-chart::before {
  content: "";
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: #fff;
}

.donut-chart span {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.donut-chart strong {
  font-size: 14px;
}

.funds-legend {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 900;
}

.funds-legend li {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 7px;
  align-items: center;
  white-space: nowrap;
}

.funds-legend span {
  width: 11px;
  height: 11px;
  background: #0b59dd;
}

.funds-legend li:nth-child(2) span {
  background: #2f8df7;
}

.funds-legend li:nth-child(3) span {
  background: #a7dcff;
}

.mock-card--chat {
  top: 272px;
  right: 0;
  width: 358px;
  height: 318px;
  padding: 25px 20px;
}

.line-square {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #08a435;
  background: linear-gradient(180deg, #15c74e, #05a832);
  box-shadow: inset 0 0 0 999px rgba(255, 255, 255, 0.04);
  font-size: 8px;
  font-weight: 900;
}

.mock-card--chat h2 {
  gap: 12px;
  margin-bottom: 20px;
}

.chat-row {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 10px;
  align-items: end;
  margin-bottom: 13px;
}

.chat-row p {
  margin: 0;
  padding: 15px 14px;
  border-radius: 8px;
  background: #f0f1f3;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.55;
}

.chat-row time {
  font-size: 12px;
  font-weight: 900;
}

.chat-row--right {
  grid-template-columns: 44px 1fr;
}

.chat-row--right p {
  grid-column: 2;
  background: #ddf69a;
}

.chat-row--right time {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.chat-row--last {
  width: 66%;
  margin-bottom: 0;
}

.mock-card--preview {
  left: 0;
  top: 536px;
  width: 294px;
  height: 290px;
  padding: 27px 12px 24px 22px;
}

.mock-card--preview h2 {
  margin-bottom: 28px;
  font-size: 16px;
}

.mock-card--preview ul {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  width: 158px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mock-card--preview li {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.mock-card--preview li::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-line);
}

.mock-card--preview li::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.report-paper {
  position: absolute;
  right: 13px;
  bottom: 35px;
  width: 88px;
  height: 162px;
  border-radius: 6px;
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
  border: 1px solid #e5eaf2;
  box-shadow: 0 7px 16px rgba(4, 21, 64, 0.14);
}

.report-paper::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 13px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: conic-gradient(#06a836 0 25%, #1165e8 0 55%, #dce5f7 0);
}

.report-paper span {
  position: absolute;
  left: 14px;
  right: 14px;
  height: 4px;
  border-radius: 999px;
  background: #dce5f7;
}

.report-paper span:nth-child(1) {
  top: 55px;
}

.report-paper span:nth-child(2) {
  top: 72px;
}

.report-paper span:nth-child(3) {
  top: 96px;
}

.report-paper span:nth-child(4) {
  top: 118px;
}

.mock-card--pdf {
  top: 612px;
  right: 0;
  width: 358px;
  height: 214px;
  padding: 25px 28px 18px 22px;
}

.pdf-mini {
  display: inline-grid;
  place-items: end center;
  width: 28px;
  height: 34px;
  border-radius: 4px;
  color: #fff;
  background:
    linear-gradient(135deg, transparent 0 18px, #e7e9ee 18px) top right / 100% 100% no-repeat,
    linear-gradient(#f31212 0 0) bottom / 100% 13px no-repeat,
    #f6f7f9;
  padding-bottom: 1px;
  font-size: 8px;
  font-weight: 900;
}

.pdf-content {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
}

.pdf-large {
  display: inline-grid;
  place-items: end center;
  width: 58px;
  height: 66px;
  border-radius: 7px;
  color: #fff;
  background:
    linear-gradient(135deg, transparent 0 34px, #e7e9ee 34px) top right / 100% 100% no-repeat,
    linear-gradient(#f31212 0 0) bottom / 100% 23px no-repeat,
    #f6f7f9;
  padding-bottom: 4px;
  font-size: 17px;
  font-weight: 900;
}

.pdf-content p {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.65;
}

.pdf-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  height: 40px;
  margin: 18px 0 0 68px;
  border: 1px solid #105fe8;
  border-radius: 5px;
  color: #105fe8;
  font-size: 15px;
  font-weight: 900;
}

.pdf-download span {
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 1320px) {
  :root {
    --header-height: 80px;
  }

  .site-header__inner {
    grid-template-columns: 230px 1fr auto;
    column-gap: 20px;
    padding-inline: 22px;
  }

  .site-header__logo {
    width: 220px;
  }

  .site-header__nav {
    gap: 24px;
    font-size: 14px;
  }

  .line-button--header {
    min-width: 208px;
    min-height: 46px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    padding: 64px 28px 74px;
  }

  .hero__copy {
    padding-top: 0;
  }

  .hero__visual {
    width: min(100%, 640px);
    min-height: auto;
    margin: 40px auto 0;
    transform: none;
  }

  .trouble__inner {
    padding-inline: 28px;
  }
}

@media (max-width: 860px) {
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: inline !important;
  }

  .keep-mobile {
    display: inline !important;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-header__logo {
    width: min(240px, 68vw);
  }

  .site-header__nav,
  .line-button--header {
    display: none;
  }

  .site-header__menu {
    display: block;
  }

  .site-header.is-open .site-header__nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    background: #fff;
    border-top: 1px solid #eef2f8;
    box-shadow: 0 18px 30px rgba(6, 20, 60, 0.12);
  }

  .site-header.is-open .site-header__nav a {
    padding: 18px 24px;
    border-bottom: 1px solid #eef2f8;
  }

  .site-header.is-open .site-header__nav-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 14px 18px 18px;
    padding: 16px 20px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(180deg, #08b73d 0%, var(--color-line) 64%, var(--color-line-dark) 100%);
    box-shadow: 0 12px 28px rgba(4, 168, 50, 0.24);
    font-weight: 900;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: auto;
  }

  .hero__badge {
    min-height: 44px;
    margin-bottom: 34px;
    padding-inline: 16px;
    font-size: 15px;
    line-height: 1.3;
  }

  .hero__title {
    font-size: clamp(23px, 6.35vw, 34px);
    line-height: 1.35;
  }

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

  .hero__lead {
    font-size: 16px;
    line-height: 1.75;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .line-button--hero {
    width: min(100%, 461px);
    min-height: 78px;
    margin-top: 34px;
    padding-inline: 25px;
    gap: 16px;
    font-size: 22px;
  }

  .line-button--hero .line-button__icon {
    width: 56px;
    height: 39px;
    font-size: 12px;
  }

  .line-button__arrow {
    font-size: 54px;
  }

  .hero__visual {
    width: min(100%, 620px);
    min-height: auto;
  }

  .trouble {
    min-height: auto;
  }

  .trouble__inner {
    padding: 54px 18px 58px;
  }

  .section-label--yellow {
    min-width: 92px;
    height: 28px;
    font-size: 21px;
  }

  .trouble__title {
    margin-top: 20px;
    font-size: clamp(25px, 6.7vw, 34px);
    line-height: 1.3;
  }

  .trouble__title-line {
    display: inline-block;
    white-space: nowrap;
  }

  .trouble__lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.8;
  }

  .trouble__lead br {
    display: none;
  }

  .trouble__card {
    margin-top: 28px;
    padding: 8px 18px;
    border-radius: 18px;
  }

  .trouble-list li {
    min-height: auto;
    padding: 18px 0 18px 48px;
    font-size: 18px;
    line-height: 1.45;
  }

  .trouble-list li::before {
    left: 0;
    width: 32px;
    height: 32px;
  }

  .trouble-list li::after {
    left: 10px;
    width: 12px;
    height: 19px;
    border-right-width: 5px;
    border-bottom-width: 5px;
  }

  .line-button--trouble {
    width: min(100%, 570px);
    min-height: 70px;
    margin-top: 25px;
    padding: 0 22px;
    gap: 14px;
    font-size: 20px;
  }

  .line-button--trouble .line-button__icon {
    width: 52px;
    height: 37px;
    font-size: 12px;
  }

  .reason__inner {
    padding: 54px 18px 58px;
  }

  .reason__title {
    margin-top: 20px;
    font-size: clamp(29px, 7.2vw, 38px);
    line-height: 1.35;
  }

  .reason__lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.8;
  }

  .reason__lead br {
    display: none;
  }

  .reason-summary {
    padding: 22px 20px;
  }

  .reason-summary__title {
    display: block;
    margin-bottom: 16px;
    font-size: clamp(18px, 5.2vw, 23px);
    text-align: center;
    white-space: nowrap;
  }

  .reason-summary__title::before,
  .reason-summary__title::after {
    display: none;
  }

  .reason-check-list li {
    padding: 13px 0 13px 46px;
    font-size: 16px;
    line-height: 1.65;
  }

  .reason-check-list li::before {
    left: 5px;
  }

  .reason-check-list li::after {
    left: 13px;
  }

  .reason__subhead {
    margin-top: 32px;
    font-size: clamp(18px, 5.2vw, 24px);
    white-space: nowrap;
  }

  .reason-benefit {
    grid-template-columns: 1fr;
  }

  .reason-benefit__image {
    aspect-ratio: 16 / 9;
  }

  .reason-benefit__image img {
    min-height: 0;
  }

  .reason-benefit__body {
    padding: 22px 20px 24px;
  }

  .reason-benefit__body h4 {
    align-items: flex-start;
    gap: 13px;
    font-size: 20px;
  }

  .reason-benefit__body p {
    font-size: 15px;
    line-height: 1.85;
  }

  .reason-note {
    grid-template-columns: 43px 1fr;
    gap: 14px;
    padding: 17px 16px;
  }

  .reason-note p {
    font-size: 14px;
    line-height: 1.75;
  }

  .reason-note br {
    display: none;
  }

  .line-button--reason {
    width: min(100%, 400px);
    min-height: 68px;
    padding: 0 22px;
    gap: 14px;
    font-size: 22px;
  }

  .line-button--reason .line-button__icon {
    width: 50px;
    height: 36px;
    font-size: 12px;
  }

  .feature__inner {
    padding: 54px 18px 58px;
  }

  .feature__title {
    margin-top: 20px;
    font-size: clamp(30px, 7.2vw, 40px);
    line-height: 1.35;
  }

  .feature__lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.8;
  }

  .feature__lead br {
    display: none;
  }

  .feature-cards {
    margin-top: 30px;
  }

  .feature-card,
  .feature-card--reverse {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px;
  }

  .feature-card__image--desktop {
    display: none;
  }

  .feature-card__image--mobile {
    display: block;
    width: 100%;
    margin: 16px 0 19px;
  }

  .feature-card__image {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .feature-card__body,
  .feature-card--reverse .feature-card__body {
    padding: 24px 8px 10px;
  }

  .feature-card__body h3 {
    gap: 14px;
    margin-bottom: 22px;
    font-size: 22px;
  }

  .feature-card__body h3.feature-card__title--transaction,
  .feature-card__body h3.feature-card__title--wide {
    gap: 8px;
    font-size: clamp(17px, 4.72vw, 22px);
    line-height: 1.45;
  }

  .feature-card__body h3.feature-card__title--report {
    gap: 8px;
    font-size: clamp(17px, 4.72vw, 20px);
    line-height: 1.45;
  }

  .feature-heading-break--desktop {
    display: none;
  }

  .feature-heading-break--mobile {
    display: inline;
  }

  .feature-heading-line {
    display: inline-block;
    white-space: nowrap;
  }

  .feature-card__number {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    font-size: 24px;
  }

  .feature-card__body p {
    font-size: 14px;
    line-height: 1.85;
  }

  .feature-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 18px;
    text-align: left;
  }

  .feature-cta__icon {
    margin: 0 auto;
  }

  .feature-cta__copy h3 {
    font-size: 21px;
    line-height: 1.42;
    text-align: left;
  }

  .feature-cta__copy p {
    font-size: 14px;
    text-align: left;
  }

  .feature-cta__copy br {
    display: inline;
  }

  .line-button--feature {
    width: min(94%, 320px);
    min-height: 64px;
    margin: 0 auto;
    padding: 0 16px;
    gap: 10px;
    font-size: 16px;
  }

  .line-button--feature .line-button__icon {
    width: 46px;
    height: 34px;
    font-size: 11px;
  }

  .line-button--feature .line-button__arrow {
    font-size: 40px;
  }

  .first-action__inner {
    padding: 54px 18px 58px;
  }

  .first-action__title {
    margin-top: 20px;
    font-size: clamp(30px, 7.2vw, 40px);
    line-height: 1.35;
  }

  .first-action__lead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.9;
  }

  .first-action__lead br {
    display: none;
  }

  .first-action__cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .first-action-card,
  .first-action-card--wide {
    grid-column: auto;
    grid-template-columns: 138px minmax(0, 1fr);
    gap: 18px;
    min-height: 190px;
    padding: 28px 22px 28px 44px;
  }

  .first-action-card__number {
    top: 20px;
    left: 20px;
    width: 42px;
    height: 42px;
    font-size: 25px;
  }

  .first-action-card__icon {
    width: 124px;
    height: 124px;
    margin-left: 12px;
  }

  .first-action-card__icon img {
    width: 88px;
    height: 88px;
  }

  .first-action-card__body h3 {
    margin-bottom: 12px;
    font-size: 24px;
  }

  .first-action-card__body p {
    font-size: 16px;
    line-height: 1.75;
  }

  .flow__inner {
    padding: 54px 18px 58px;
  }

  .flow__title {
    margin-top: 20px;
    font-size: clamp(25px, 7vw, 34px);
    line-height: 1.35;
    white-space: nowrap;
  }

  .flow__lead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.9;
  }

  .flow__lead br {
    display: none;
  }

  .flow__steps {
    margin-top: 30px;
  }

  .flow-step {
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 22px;
    min-height: 160px;
    padding: 22px 24px;
  }

  .flow-step__badge {
    min-width: 78px;
    min-height: 26px;
    padding-inline: 14px;
    font-size: 14px;
  }

  .flow-step__media img {
    width: 120px;
    height: 120px;
  }

  .flow-step__media img.line-brand-icon {
    width: 64px;
    height: 64px;
  }

  .flow-step__body h3 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .flow-step__body p {
    font-size: 15px;
    line-height: 1.75;
  }

  .line-button--flow {
    width: min(100%, 420px);
    min-height: 68px;
    padding: 0 22px;
    gap: 14px;
    font-size: 18px;
  }

  .line-button--flow .line-button__icon {
    width: 48px;
    height: 35px;
    font-size: 11px;
  }

  .pricing__inner {
    padding: 54px 18px 58px;
  }

  .pricing__title {
    margin-top: 20px;
    font-size: clamp(34px, 8vw, 48px);
  }

  .pricing__lead {
    gap: 18px;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.9;
  }

  .pricing__lead br {
    display: none;
  }

  .pricing__note {
    gap: 18px;
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.9;
  }

  .pricing__note br {
    display: none;
  }

  .pricing__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
  }

  .pricing-card {
    min-height: 260px;
    padding: 28px 20px 24px;
  }

  .pricing-card__icon {
    height: 92px;
    margin-bottom: 18px;
  }

  .pricing-card__icon img {
    width: 88px;
    height: 88px;
  }

  .pricing-card h3 {
    margin-bottom: 14px;
    font-size: 23px;
  }

  .pricing-card p {
    font-size: 15px;
    line-height: 1.8;
  }

  .line-button--pricing {
    width: min(100%, 420px);
    min-height: 68px;
    padding: 0 22px;
    gap: 14px;
    font-size: 18px;
  }

  .line-button--pricing .line-button__icon {
    width: 48px;
    height: 35px;
    font-size: 11px;
  }

  .cases__inner {
    padding: 54px 18px 58px;
  }

  .cases__title {
    margin-top: 20px;
    font-size: clamp(30px, 7.2vw, 40px);
    line-height: 1.35;
  }

  .cases__lead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.9;
  }

  .cases__lead br {
    display: none;
  }

  .cases__list {
    gap: 14px;
    margin-top: 30px;
  }

  .case-card {
    grid-template-columns: 70px 112px minmax(0, 1fr);
    gap: 18px;
    min-height: 120px;
    padding: 22px 24px;
  }

  .case-card::before {
    height: 82px;
  }

  .case-card__number {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .case-card__icon img {
    width: 86px;
    height: 86px;
  }

  .case-card__body h3 {
    margin-bottom: 10px;
    font-size: 21px;
  }

  .case-card__title--nowrap {
    font-size: clamp(16px, 4.5vw, 21px);
  }

  .case-card__body p {
    font-size: 15px;
    line-height: 1.75;
  }

  .cases-note {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    margin-top: 30px;
    padding: 20px 22px;
  }

  .cases-note__icon {
    width: 48px;
    height: 48px;
    font-size: 30px;
  }

  .cases-note p {
    font-size: 15px;
    line-height: 1.8;
  }

  .faq__inner {
    padding: 54px 18px 58px;
  }

  .faq__title {
    margin-top: 20px;
    font-size: clamp(30px, 7.2vw, 40px);
    line-height: 1.35;
  }

  .faq__list {
    gap: 14px;
    margin-top: 30px;
  }

  .faq-item summary {
    grid-template-columns: 54px minmax(0, 1fr) 44px;
    gap: 16px;
    min-height: 86px;
    padding: 20px 22px;
  }

  .faq-item__mark {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .faq-item__question {
    font-size: 22px;
  }

  .faq-item__toggle {
    width: 42px;
    height: 42px;
  }

  .faq-item__toggle::before,
  .faq-item__toggle::after {
    width: 18px;
    height: 3px;
  }

  .faq-item__answer {
    padding: 0 78px 24px 92px;
  }

  .faq-item__answer p {
    font-size: 15px;
    line-height: 1.8;
  }

  .column__inner {
    padding: 54px 18px 58px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .column__title {
    margin-top: 20px;
    font-size: clamp(30px, 7.2vw, 40px);
    line-height: 1.35;
  }

  .column__lead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.9;
  }

  .column__lead br {
    display: none;
  }

  .column__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
  }

  .column-card {
    min-height: 0;
  }

  .column-card h3 {
    font-size: 20px;
  }

  .column__button {
    min-width: min(100%, 360px);
    min-height: 68px;
    margin-top: 36px;
    padding: 0 30px;
    gap: 18px;
    font-size: 20px;
  }

  .column__button span[aria-hidden] {
    font-size: 34px;
  }

  .thoughts__inner {
    padding: 54px 18px 64px;
  }

  .thoughts__card {
    display: flex;
    min-height: 0;
    flex-direction: column;
    border-radius: 22px;
  }

  .thoughts__card::after {
    display: none;
  }

  .thoughts__copy {
    width: 100%;
    padding: 44px 30px 38px;
  }

  .thoughts__title {
    margin-top: 28px;
    font-size: clamp(32px, 7vw, 48px);
    line-height: 1.45;
  }

  .thoughts__body p {
    font-size: 16px;
    line-height: 1.95;
  }

  .thoughts__body br {
    display: none;
  }

  .thoughts__photo--desktop {
    display: none;
  }

  .thoughts__photo--mobile {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    margin-top: 28px;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    object-fit: cover;
    object-position: center top;
  }

  .contact {
    padding: 28px 18px 42px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    padding: 42px 28px;
    border-radius: 24px;
  }

  .contact__photo--desktop {
    display: none;
  }

  .contact__photo--mobile {
    display: block;
    margin-top: 24px;
    border-radius: 14px;
  }

  .contact__title {
    margin-top: 30px;
    font-size: clamp(24px, 5.95vw, 34px);
    line-height: 1.45;
  }

  .contact__title-line {
    display: inline-block;
    white-space: nowrap;
  }

  .contact__body p,
  .contact__note {
    font-size: 16px;
  }

  .contact__body br,
  .contact__note br {
    display: none;
  }

  .contact__photo img {
    aspect-ratio: 4 / 3;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    padding: 46px 28px 28px;
  }

  .site-footer__brand {
    min-width: 0;
  }

  .site-footer__brand img {
    max-width: 100%;
  }

  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(180px, max-content));
    justify-content: flex-start;
    gap: 22px 38px;
  }

  .mock-card {
    position: static;
    width: 100%;
  }

  .mock-card--wallet,
  .mock-card--transactions,
  .mock-card--funds,
  .mock-card--chat,
  .mock-card--preview,
  .mock-card--pdf {
    height: auto;
    min-height: 260px;
  }

  .mock-card--wallet,
  .mock-card--funds,
  .mock-card--preview {
    min-height: 250px;
  }

  .mock-card--pdf {
    min-height: 228px;
  }
}

@media (max-width: 720px) {
  .hero__visual {
    width: 100%;
    max-width: min(360px, calc(100vw - 36px));
    min-height: auto;
    justify-self: center;
  }

  .hero-dashboard-cluster {
    display: grid;
    width: 100%;
    height: auto;
    gap: 12px;
  }

  .hero-card-image {
    position: static;
    width: 100%;
  }

  .hero-card-image--report {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 74px;
  }

  .site-header__inner {
    padding-inline: 16px;
  }

  .site-header__logo {
    width: min(220px, 66vw);
  }

  .hero__inner {
    padding: 34px 18px 42px;
  }

  .hero__copy {
    width: min(100%, calc(100vw - 36px));
  }

  .hero__badge {
    align-items: center;
  }

  .hero__title {
    font-size: clamp(21px, 6.75vw, 26px);
  }

  .trouble__inner {
    padding-inline: 16px;
  }

  .trouble__title {
    font-size: clamp(24px, 6.45vw, 28px);
  }

  .trouble__lead {
    text-align: left;
  }

  .trouble__card {
    padding: 4px 14px;
  }

  .trouble-list li {
    padding-left: 43px;
    font-size: 17px;
  }

  .line-button--trouble {
    min-height: 66px;
    padding-inline: 18px;
    gap: 12px;
    font-size: 18px;
  }

  .line-button--trouble .line-button__icon {
    width: 48px;
    height: 35px;
    font-size: 11px;
  }

  .reason__inner {
    padding-inline: 16px;
  }

  .reason__title {
    font-size: 29px;
  }

  .reason__lead {
    text-align: left;
  }

  .reason-summary {
    border-radius: 14px;
  }

  .reason-benefit__body h4 {
    font-size: 19px;
  }

  .reason-benefit__number {
    width: 40px;
    height: 32px;
    font-size: 16px;
  }

  .line-button--reason {
    min-height: 66px;
    padding-inline: 18px;
    gap: 12px;
    font-size: 20px;
  }

  .line-button--reason .line-button__icon {
    width: 48px;
    height: 35px;
    font-size: 11px;
  }

  .feature__inner {
    padding-inline: 16px;
  }

  .feature__title {
    font-size: 29px;
  }

  .feature__lead {
    text-align: left;
  }

  .feature-card__body h3 {
    font-size: 20px;
  }

  .feature-card__body h3.feature-card__title--wide {
    font-size: clamp(16.5px, 4.55vw, 18.5px);
  }

  .feature-card__body h3.feature-card__title--report {
    font-size: clamp(16.5px, 4.55vw, 18px);
  }

  .feature-card__number {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .line-button--feature {
    width: min(94%, 320px);
    min-height: 62px;
    padding-inline: 15px;
    gap: 12px;
    font-size: 15px;
  }

  .first-action__inner {
    padding-inline: 16px;
  }

  .first-action__title {
    font-size: 29px;
  }

  .first-action__lead {
    text-align: left;
  }

  .first-action-card,
  .first-action-card--wide {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 26px 20px 24px;
    text-align: center;
  }

  .first-action-card__number {
    top: 18px;
    left: 18px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .first-action-card__icon {
    width: 128px;
    height: 128px;
    margin: 10px auto 0;
  }

  .first-action-card__icon img {
    width: 92px;
    height: 92px;
  }

  .first-action-card__body h3 {
    font-size: 24px;
  }

  .first-action-card__body p {
    text-align: left;
  }

  .flow__inner {
    padding-inline: 16px;
  }

  .flow__title {
    font-size: clamp(24px, 6.85vw, 27px);
  }

  .flow__lead {
    text-align: left;
  }

  .flow-step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
    text-align: center;
  }

  .flow-step__media {
    gap: 12px;
  }

  .flow-step__media img {
    width: 120px;
    height: 120px;
  }

  .flow-step__body h3 {
    font-size: 23px;
  }

  .flow-step__body p {
    text-align: left;
  }

  .line-button--flow {
    min-height: 66px;
    padding-inline: 18px;
    gap: 12px;
    font-size: 16px;
  }

  .pricing__inner {
    padding-inline: 16px;
  }

  .pricing__title {
    font-size: 29px;
  }

  .pricing__lead {
    text-align: left;
  }

  .pricing__note {
    text-align: left;
  }

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

  .pricing-card {
    min-height: 0;
    padding: 28px 22px 26px;
  }

  .pricing-card__icon img {
    width: 92px;
    height: 92px;
  }

  .pricing-card__icon img.line-brand-icon {
    width: 64px;
    height: 64px;
  }

  .line-button--pricing {
    min-height: 66px;
    padding-inline: 18px;
    gap: 12px;
    font-size: 16px;
  }

  .cases__inner {
    padding-inline: 16px;
  }

  .cases__title {
    font-size: 29px;
  }

  .cases__lead {
    text-align: left;
  }

  .case-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 16px;
    text-align: left;
    overflow: visible;
  }

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

  .case-card__number {
    width: 48px;
    height: 48px;
    justify-self: center;
    font-size: 22px;
  }

  .case-card__icon {
    justify-content: center;
  }

  .case-card__icon img {
    width: 86px;
    height: 86px;
  }

  .case-card__body h3 {
    max-width: 100%;
    text-align: center;
    font-size: 19px;
    overflow-wrap: anywhere;
  }

  .case-card__title--nowrap {
    display: block;
    max-width: 100%;
    font-size: clamp(13.5px, 3.55vw, 15px);
    white-space: nowrap;
  }

  .case-card__body p {
    font-size: 14px;
    line-height: 1.8;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .cases-note {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cases-note__icon {
    justify-self: start;
  }

  .faq__inner {
    padding-inline: 16px;
  }

  .faq__title {
    font-size: 29px;
  }

  .faq-item summary {
    grid-template-columns: 44px minmax(0, 1fr) 36px;
    gap: 12px;
    padding: 18px 16px;
  }

  .faq-item__mark {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .faq-item__question {
    font-size: 18px;
  }

  .faq-item__toggle {
    width: 36px;
    height: 36px;
  }

  .faq-item__answer {
    padding: 0 16px 22px 72px;
  }

  .faq-item__answer p {
    font-size: 14px;
  }

  .column__inner {
    padding-inline: 16px;
  }

  .column__title {
    font-size: 29px;
  }

  .column__lead {
    text-align: left;
  }

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

  .column-card {
    padding: 14px;
  }

  .column-card__body {
    padding-top: 20px;
  }

  .column-card h3 {
    margin-top: 20px;
    font-size: 19px;
  }

  .column__button {
    width: min(100%, 340px);
    min-width: 0;
    min-height: 64px;
    font-size: 18px;
  }

  .thoughts__inner {
    padding-inline: 16px;
  }

  .thoughts__card {
    border-radius: 16px;
  }

  .thoughts__copy {
    padding: 34px 20px 30px;
  }

  .thoughts__label {
    min-height: 30px;
    font-size: 25px;
  }

  .thoughts__title {
    margin-top: 24px;
    font-size: 29px;
  }

  .thoughts__body {
    margin-top: 22px;
  }

  .thoughts__body p {
    font-size: 14px;
    line-height: 1.95;
  }

  .thoughts__body p + p {
    margin-top: 22px;
  }

  .thoughts__button {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    margin-top: 30px;
    gap: 18px;
    padding: 0 24px;
    font-size: 18px;
  }

  .thoughts__button span[aria-hidden] {
    font-size: 34px;
  }

  .contact {
    padding-inline: 16px;
  }

  .contact__inner {
    padding: 34px 20px;
    border-radius: 18px;
  }

  .contact__label {
    min-height: 30px;
    font-size: 25px;
  }

  .contact__title {
    margin-top: 24px;
    font-size: clamp(22px, 5.85vw, 24px);
  }

  .contact__body {
    gap: 16px;
  }

  .contact__body p,
  .contact__note {
    font-size: 14px;
    line-height: 1.9;
  }

  .line-button--contact {
    width: 100%;
    min-height: 66px;
    padding-inline: 18px;
    gap: 12px;
    font-size: 18px;
  }

  .site-footer__inner {
    padding: 36px 20px 24px;
  }

  .site-footer__brand {
    max-width: 100%;
  }

  .site-footer__brand img {
    width: min(100%, 286px);
  }

  .site-footer__nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    font-size: 15px;
  }

  .site-footer__nav a + a::before {
    display: none;
  }

  .site-footer__copyright {
    margin-top: 26px;
    padding-top: 22px;
    font-size: 14px;
  }

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

  .mock-card--preview {
    display: none;
  }
}

.dtf-consult-trigger {
  cursor: pointer;
}

/* Spacing polish: keep section rhythm consistent without changing layout structure. */
.trouble__inner,
.reason__inner,
.feature__inner,
.first-action__inner,
.flow__inner,
.pricing__inner,
.cases__inner,
.faq__inner,
.column__inner {
  padding-top: 64px;
  padding-bottom: 72px;
}

.thoughts__inner {
  padding-top: 76px;
  padding-bottom: 86px;
}

.contact {
  padding-top: 48px;
  padding-bottom: 64px;
}

.trouble__title,
.reason__title,
.feature__title,
.first-action__title,
.flow__title,
.pricing__title,
.cases__title,
.faq__title,
.column__title {
  margin-top: 24px;
}

.trouble__lead,
.reason__lead,
.feature__lead,
.first-action__lead,
.flow__lead,
.cases__lead,
.column__lead {
  margin-top: 24px;
}

.trouble__card,
.reason-summary,
.feature-cards,
.first-action__cards,
.flow__steps,
.pricing__cards,
.cases__list,
.faq__list {
  margin-top: 42px;
}

.pricing__lead {
  margin-top: 28px;
}

.pricing__note {
  margin-top: 42px;
}

.line-button--trouble,
.line-button--reason,
.line-button--flow,
.line-button--pricing {
  margin-top: 48px;
}

.line-button--trouble {
  margin-top: 42px;
}

.feature-cta {
  margin-top: 36px;
}

.column__button {
  margin-top: 64px;
}

.contact {
  padding-bottom: 54px;
}

@media (max-width: 860px) {
  .trouble__inner,
  .reason__inner,
  .feature__inner,
  .first-action__inner,
  .flow__inner,
  .pricing__inner,
  .cases__inner,
  .faq__inner,
  .column__inner {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .trouble__title,
  .reason__title,
  .feature__title,
  .first-action__title,
  .flow__title,
  .pricing__title,
  .cases__title,
  .faq__title,
  .column__title {
    margin-top: 22px;
  }

  .trouble__lead,
  .reason__lead,
  .feature__lead,
  .first-action__lead,
  .flow__lead,
  .cases__lead,
  .column__lead {
    margin-top: 22px;
  }

  .trouble__card,
  .reason-summary,
  .feature-cards,
  .first-action__cards,
  .flow__steps,
  .pricing__cards,
  .cases__list,
  .faq__list {
    margin-top: 32px;
  }

  .reason__subhead {
    margin-top: 38px;
  }

  .pricing__lead {
    margin-top: 24px;
  }

  .pricing__note {
    margin-top: 34px;
  }

  .column__cards {
    margin-top: 34px;
  }

  .contact {
    padding-top: 34px;
    padding-bottom: 50px;
  }
}

@media (max-width: 560px) {
  .trouble__inner,
  .reason__inner,
  .feature__inner,
  .first-action__inner,
  .flow__inner,
  .pricing__inner,
  .cases__inner,
  .faq__inner,
  .column__inner {
    padding-top: 54px;
    padding-bottom: 60px;
  }

  .trouble__title,
  .reason__title,
  .feature__title,
  .first-action__title,
  .flow__title,
  .pricing__title,
  .cases__title,
  .faq__title,
  .column__title {
    margin-top: 20px;
  }

  .trouble__lead,
  .reason__lead,
  .feature__lead,
  .first-action__lead,
  .flow__lead,
  .cases__lead,
  .column__lead {
    margin-top: 20px;
  }

  .trouble__card,
  .reason-summary,
  .feature-cards,
  .first-action__cards,
  .flow__steps,
  .pricing__cards,
  .cases__list,
  .faq__list {
    margin-top: 30px;
  }

  .contact {
    padding-top: 30px;
    padding-bottom: 46px;
  }
}

/* Typography polish: align headline/body scale across sections while keeping local line-break fixes. */
.trouble__title,
.reason__title,
.feature__title,
.first-action__title,
.flow__title,
.pricing__title,
.cases__title,
.faq__title,
.column__title {
  font-size: var(--fs-section-title);
  line-height: 1.3;
}

.thoughts__title,
.contact__title {
  font-size: var(--fs-section-title);
  line-height: 1.42;
}

.trouble__lead,
.reason__lead,
.feature__lead,
.first-action__lead,
.flow__lead,
.pricing__lead,
.pricing__note,
.cases__lead,
.column__lead {
  font-size: var(--fs-section-lead);
  line-height: 1.9;
}

.reason-check-list li,
.reason-benefit__body p,
.feature-card__body p,
.first-action-card__body p,
.flow-step__body p,
.pricing-card p,
.case-card__body p,
.faq-item__answer p,
.column-card h3,
.thoughts__body p,
.contact__body p,
.contact__note {
  font-size: var(--fs-body);
  line-height: 1.85;
}

.trouble-list li {
  font-size: var(--fs-list-title);
  line-height: 1.4;
}

.feature-card__body p {
  line-height: 1.9;
}

.reason__subhead,
.flow-step__body h3,
.pricing-card h3,
.faq-item__question {
  font-size: var(--fs-card-title-lg);
  line-height: 1.35;
}

.feature-card__body h3,
.first-action-card__body h3,
.case-card__body h3 {
  font-size: var(--fs-card-title);
  line-height: 1.35;
}

.reason-summary__title {
  font-size: var(--fs-card-title);
  line-height: 1.35;
}

.reason-benefit__body h4 {
  font-size: 24px;
  line-height: 1.35;
}

.column-card h3 {
  font-size: 22px;
  line-height: 1.45;
}

.reason-benefit__heading-line {
  display: inline;
}

@media (max-width: 860px) {
  .trouble__title,
  .reason__title,
  .feature__title,
  .first-action__title,
  .flow__title,
  .pricing__title,
  .cases__title,
  .faq__title,
  .column__title {
    font-size: clamp(26px, 7vw, 32px);
    line-height: 1.35;
  }

  .flow__title,
  .reason-summary__title,
  .reason__subhead {
    white-space: nowrap;
  }

  .thoughts__title,
  .contact__title {
    font-size: clamp(24px, 6.2vw, 30px);
    line-height: 1.45;
  }

  .trouble__lead,
  .reason__lead,
  .feature__lead,
  .first-action__lead,
  .flow__lead,
  .pricing__lead,
  .pricing__note,
  .cases__lead,
  .column__lead {
    font-size: 16px;
    line-height: 1.85;
  }

  .trouble-list li,
  .reason-check-list li,
  .reason-benefit__body p,
  .feature-card__body p,
  .first-action-card__body p,
  .flow-step__body p,
  .pricing-card p,
  .case-card__body p,
  .faq-item__answer p,
  .column-card h3,
  .thoughts__body p,
  .contact__body p,
  .contact__note {
    font-size: 15px;
    line-height: 1.8;
  }

  .feature-card__body h3,
  .first-action-card__body h3,
  .flow-step__body h3,
  .pricing-card h3,
  .case-card__body h3,
  .faq-item__question {
    font-size: 22px;
    line-height: 1.35;
  }

  .reason-summary__title,
  .reason__subhead,
  .reason-benefit__body h4 {
    font-size: clamp(19px, 5.2vw, 24px);
    line-height: 1.35;
  }

  .reason-benefit__heading-line {
    display: inline-block;
    white-space: nowrap;
  }

  .feature-card__body h3.feature-card__title--wide,
  .feature-card__body h3.feature-card__title--report {
    font-size: clamp(17px, 4.72vw, 22px);
  }
}

@media (max-width: 560px) {
  .trouble__title,
  .reason__title,
  .feature__title,
  .first-action__title,
  .pricing__title,
  .cases__title,
  .faq__title,
  .column__title {
    font-size: clamp(25px, 6.6vw, 29px);
  }

  .flow__title {
    font-size: clamp(24px, 6.85vw, 27px);
  }

  .thoughts__title,
  .contact__title {
    font-size: clamp(22px, 5.85vw, 25px);
  }

  .trouble__lead,
  .reason__lead,
  .feature__lead,
  .first-action__lead,
  .flow__lead,
  .pricing__lead,
  .pricing__note,
  .cases__lead,
  .column__lead {
    font-size: 15px;
  }

  .trouble-list li,
  .reason-check-list li,
  .reason-benefit__body p,
  .feature-card__body p,
  .first-action-card__body p,
  .flow-step__body p,
  .pricing-card p,
  .case-card__body p,
  .faq-item__answer p,
  .column-card h3,
  .thoughts__body p,
  .contact__body p,
  .contact__note {
    font-size: 14px;
  }

  .feature-card__body h3,
  .first-action-card__body h3,
  .flow-step__body h3,
  .pricing-card h3,
  .case-card__body h3 {
    font-size: 20px;
  }

  .faq-item__question {
    font-size: 18px;
  }

  .feature-card__body h3.feature-card__title--transaction,
  .feature-card__body h3.feature-card__title--wide {
    font-size: clamp(16.5px, 4.55vw, 18.5px);
  }

  .feature-card__body h3.feature-card__title--report {
    font-size: clamp(16.5px, 4.55vw, 18px);
  }

  .reason-benefit__body h4 {
    font-size: clamp(17px, 4.55vw, 18px);
  }

  .case-card__title--nowrap {
    font-size: clamp(13.5px, 3.55vw, 15px);
    line-height: 1.45;
    white-space: normal;
  }
}

/* Company page */
.company-page {
  background: #f3f9ff;
  color: var(--color-text);
}

.company-hero {
  padding: 82px 32px 76px;
  text-align: center;
  background:
    radial-gradient(circle at 10% 18%, rgba(18, 86, 190, 0.35) 0, rgba(4, 20, 71, 0) 36%),
    linear-gradient(180deg, #041b65 0%, #031445 100%);
  color: #fff;
}

.company-hero__inner,
.company-section__inner,
.company-cta__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.company-hero__title {
  margin: 24px 0 0;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.company-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 900;
}

.company-breadcrumb a {
  color: #fff;
}

.company-profile {
  padding: 70px 32px 78px;
}

.company-cta__inner {
  border: 1px solid #d9e4f2;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 30px rgba(13, 56, 107, 0.1);
}

.company-section__title {
  margin: 0;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.32;
}

.company-cta__inner p {
  margin: 24px 0 0;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.9;
}

.company-profile {
  text-align: center;
}

/* 404 page */
.not-found-page {
  background: #f3f9ff;
  color: var(--color-text);
}

.not-found-content {
  padding: 72px 32px 86px;
  text-align: center;
}

.not-found-content__inner {
  width: min(100%, 960px);
  margin: 0 auto;
}

.not-found-content__inner p {
  margin: 24px 0 0;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.9;
}

.not-found-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 38px;
}

.not-found-link {
  min-width: 270px;
  min-height: 66px;
  margin-top: 0;
  gap: 20px;
  padding: 0 28px;
  font-size: 18px;
}

.not-found-link--secondary {
  color: var(--color-blue);
  background: #fff;
  box-shadow: 0 12px 28px rgba(13, 56, 107, 0.12);
}

.company-profile__table {
  margin-top: 42px;
  border-top: 1px solid #cfdced;
  text-align: left;
}

.company-profile__table div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  border-bottom: 1px solid #cfdced;
}

.company-profile__table dt,
.company-profile__table dd {
  margin: 0;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.8;
}

.company-profile__table dt {
  color: var(--color-text);
  background: transparent;
}

.company-profile__corporate-number {
  display: block;
}

.company-profile__corporate-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  margin-top: 4px;
}

.company-profile__corporate-links a {
  color: #0637bd;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page__table dd {
  line-height: 1.9;
}

.legal-page__table a {
  color: #0637bd;
  word-break: break-all;
}

.column-archive {
  padding: 70px 32px 78px;
  text-align: center;
}

.column-archive__lead {
  margin: 24px 0 0;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.9;
}

.column-archive__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.column-archive-card {
  min-height: 0;
}

.column-archive-card .column-card__body {
  padding-bottom: 12px;
}

.column-archive-card h3 {
  margin: 12px 48px 0 0;
}

.column-card__date {
  display: block;
  margin-top: 12px;
  color: #4d6388;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.column-archive-card p {
  margin: 18px 0 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.85;
}

.column-archive__empty {
  margin: 42px 0 0;
  padding: 34px 28px;
  border: 1px solid #dce7f4;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 26px rgba(15, 58, 108, 0.1);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.8;
}

.column-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 42px;
}

.column-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #dce7f4;
  border-radius: 999px;
  color: #0637bd;
  background: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.column-pagination .page-numbers.current {
  color: #fff;
  background: linear-gradient(145deg, #0d52df 0%, #0634bd 100%);
}

.contact-page__section {
  padding: 70px 32px 78px;
}

.contact-page__inner {
  display: block;
  max-width: 880px;
}

.contact-page__intro {
  text-align: left;
}

.contact-page__intro p {
  margin: 0;
  color: var(--color-text);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.9;
}

.contact-page__form {
  margin-top: 38px;
  padding: 42px;
  border: 1px solid #dce7f4;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 30px rgba(13, 56, 107, 0.1);
  text-align: left;
}

.contact-form__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.contact-form__field {
  display: block;
  margin: 0;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.6;
}

.contact-form__field label {
  display: block;
}

.contact-form__field br {
  display: none;
}

.contact-form__field--full,
.contact-form__submit {
  grid-column: 1 / -1;
}

.contact-form__submit {
  text-align: center;
}

.contact-form__required {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 8px;
  padding: 0 8px;
  border-radius: 999px;
  color: #fff;
  background: #0637bd;
  font-size: 12px;
  line-height: 1;
}

.contact-page__form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 9px;
}

.contact-page__form input[type="text"],
.contact-page__form input[type="email"],
.contact-page__form input[type="tel"],
.contact-page__form select,
.contact-page__form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #cfdced;
  border-radius: 8px;
  color: var(--color-text);
  background: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page__form textarea {
  min-height: 180px;
  padding-top: 14px;
  resize: vertical;
}

.contact-page__form input:focus,
.contact-page__form select:focus,
.contact-page__form textarea:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(7, 88, 230, 0.14);
}

.contact-page__form input::placeholder,
.contact-page__form textarea::placeholder {
  color: rgba(6, 20, 60, 0.42);
}

.contact-page__form .contact-form__submit p {
  margin: 0;
}

.contact-page__form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 58px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #0d52df 0%, #0634bd 100%);
  box-shadow: 0 14px 28px rgba(7, 88, 230, 0.2);
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-page__form .wpcf7-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(7, 88, 230, 0.24);
}

.contact-page__form .wpcf7-submit:active {
  transform: translateY(1px);
}

.contact-page__form .wpcf7-spinner {
  margin-left: 14px;
}

.contact-page__form .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #c01f1f;
  font-size: 13px;
  font-weight: 900;
}

.contact-page__form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.7;
}

.company-cta {
  padding: 0 32px 78px;
  text-align: center;
}

.company-cta__inner {
  padding: 48px 42px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 18%, rgba(18, 86, 190, 0.35) 0, rgba(4, 20, 71, 0) 36%),
    linear-gradient(180deg, #041b65 0%, #031445 100%);
}

.company-cta__title {
  margin: 24px 0 0;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.35;
}

.line-button--company {
  width: min(100%, 420px);
  min-height: 72px;
  margin-top: 38px;
  padding: 0 28px;
  justify-content: flex-start;
  gap: 16px;
  font-size: 24px;
}

.line-button--company .line-button__arrow {
  margin-left: auto;
  font-size: 48px;
}

.single-column__hero {
  padding-bottom: 68px;
}

.single-column__title {
  width: min(100%, 920px);
  margin-inline: auto;
  font-size: clamp(34px, 4.2vw, 48px);
}

.single-column__body {
  padding: 70px 32px 78px;
}

.single-column__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  color: #0637bd;
  font-size: 15px;
  font-weight: 900;
}

.single-column__meta span,
.single-column__meta time {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid #dce7f4;
  border-radius: 999px;
  background: #fff;
}

.single-column__thumbnail {
  margin: 0 0 42px;
}

.single-column__thumbnail img {
  display: block;
  width: 100%;
  max-height: 520px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(13, 56, 107, 0.1);
}

.single-column__content {
  max-width: 880px;
  margin: 0 auto;
  padding: 46px 50px;
  border: 1px solid #dce7f4;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 30px rgba(13, 56, 107, 0.1);
  text-align: left;
}

.single-column__content > *:first-child {
  margin-top: 0;
}

.single-column__content > *:last-child {
  margin-bottom: 0;
}

.single-column__content p,
.single-column__content li {
  color: var(--color-text);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.95;
}

.single-column__content h2,
.single-column__content h3 {
  margin: 42px 0 18px;
  color: var(--color-text);
  font-weight: 900;
  line-height: 1.4;
}

.single-column__content h2 {
  font-size: 30px;
}

.single-column__content h3 {
  font-size: 24px;
}

.single-column__content a {
  color: #0637bd;
}

.single-column-page .single-column__content {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.thoughts-page__content h2,
.single-column-page .single-column__content h2 {
  position: relative;
  margin: 54px 0 24px;
  padding: 0 0 18px 24px;
  color: var(--color-text);
  font-size: clamp(30px, 3.2vw, 38px);
  font-weight: 900;
  line-height: 1.34;
}

.thoughts-page__content > h2:first-child,
.single-column-page .single-column__content > h2:first-child {
  margin-top: 0;
}

.thoughts-page__content h2::before,
.single-column-page .single-column__content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 6px;
  height: 1.18em;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-blue) 0%, var(--color-blue-deep) 100%);
}

.thoughts-page__content h2::after,
.single-column-page .single-column__content h2::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-yellow) 0 58px, rgba(7, 88, 230, 0.22) 58px 100%);
}

.thoughts-page__content h3,
.single-column-page .single-column__content h3 {
  position: relative;
  margin: 38px 0 16px;
  padding: 0 0 10px;
  color: var(--color-text);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
}

.thoughts-page__content h3::before,
.single-column-page .single-column__content h3::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-blue) 0 46px, rgba(7, 88, 230, 0.22) 46px 100%);
}

.thoughts-page__content h4,
.single-column-page .single-column__content h4 {
  position: relative;
  margin: 34px 0 14px;
  padding-left: 18px;
  border-bottom: 0;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}

.thoughts-page__content h4::before,
.single-column-page .single-column__content h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 4px;
  height: 1.25em;
  border-radius: 999px;
  background: var(--color-blue);
}

.thoughts-page__content h5,
.single-column-page .single-column__content h5 {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 30px 0 12px;
  padding: 0 14px;
  border-radius: 999px;
  color: #0637bd;
  background: rgba(7, 88, 230, 0.09);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
}

.thoughts-page__content strong {
  color: #0637bd;
}

.single-column__content.thoughts-page__content {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.thoughts-principles {
  margin: 28px 0 0;
  border-top: 1px solid #cfdced;
}

.thoughts-principle {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  column-gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid #cfdced;
}

.thoughts-principle__number {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 50%;
  color: #fff !important;
  background: linear-gradient(145deg, #0d52df 0%, #0634bd 100%);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.thoughts-principle h3 {
  margin: 0 0 12px;
}

.thoughts-principle p:not(.thoughts-principle__number) {
  margin: 0;
}

.single-column__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 58px;
  margin-top: 36px;
  padding: 0 28px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #0d52df 0%, #0634bd 100%);
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 860px) {
  .company-hero,
  .company-profile,
  .not-found-content,
  .column-archive,
  .single-column__body,
  .company-cta {
    padding-inline: 18px;
  }

  .company-hero {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .company-hero__title,
  .company-section__title,
  .company-cta__title {
    font-size: clamp(28px, 7vw, 34px);
  }

  .company-cta__inner p {
    font-size: 15px;
    line-height: 1.85;
  }

  .not-found-content {
    padding-top: 54px;
    padding-bottom: 64px;
  }

  .not-found-content__inner p {
    font-size: 15px;
    line-height: 1.85;
  }

  .not-found-content__inner p br {
    display: none;
  }

  .not-found-links {
    display: grid;
    gap: 14px;
    margin-top: 30px;
  }

  .not-found-link {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    font-size: 16px;
  }

  .column-archive__lead {
    font-size: 15px;
    line-height: 1.85;
  }

  .column-archive__lead br {
    display: inline !important;
  }

  .column-archive__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
  }

  .column-archive-card p {
    font-size: 14px;
    line-height: 1.8;
  }

  .column-pagination {
    margin-top: 32px;
  }

  .contact-page__section {
    padding: 54px 18px 60px;
  }

  .contact-page__intro p {
    font-size: 15px;
    line-height: 1.85;
  }

  .contact-page__form {
    margin-top: 30px;
    padding: 28px 20px;
    border-radius: 12px;
  }

  .contact-page__form .wpcf7-submit {
    width: 100%;
  }

  .single-column__hero {
    padding-bottom: 54px;
  }

  .single-column__body {
    padding-top: 54px;
    padding-bottom: 60px;
  }

  .single-column__title {
    font-size: clamp(27px, 7vw, 34px);
  }

  .csr-page__title--fit-mobile {
    font-size: clamp(22px, 6.35vw, 26px);
    white-space: nowrap;
  }

  .single-column__thumbnail {
    margin-bottom: 28px;
  }

  .single-column__thumbnail img {
    max-height: 320px;
    border-radius: 12px;
  }

  .single-column__content {
    padding: 28px 20px;
    border-radius: 12px;
  }

  .single-column__content p,
  .single-column__content li {
    font-size: 15px;
    line-height: 1.9;
  }

  .single-column__content h2 {
    font-size: 24px;
  }

  .single-column__content h3 {
    font-size: 20px;
  }

  .thoughts-page__content h2,
  .single-column-page .single-column__content h2 {
    margin-top: 40px;
    margin-bottom: 18px;
    padding-left: 18px;
    padding-bottom: 14px;
    font-size: clamp(24px, 6.4vw, 30px);
    line-height: 1.38;
  }

  .thoughts-page__content h2.thoughts-heading--fit-mobile {
    font-size: clamp(22px, 5.85vw, 28px);
    line-height: 1.42;
  }

  .thoughts-page__content h2.csr-heading--fit-mobile {
    font-size: clamp(21px, 5.55vw, 27px);
  }

  .thoughts-page__content h2::before,
  .single-column-page .single-column__content h2::before {
    width: 5px;
  }

  .thoughts-page__content h2::after,
  .single-column-page .single-column__content h2::after {
    left: 18px;
    background: linear-gradient(90deg, var(--color-yellow) 0 42px, rgba(7, 88, 230, 0.22) 42px 100%);
  }

  .thoughts-page__content h3,
  .single-column-page .single-column__content h3 {
    margin-top: 30px;
    padding-left: 0;
    padding-bottom: 9px;
    font-size: 20px;
  }

  .thoughts-page__content h3::before,
  .single-column-page .single-column__content h3::before {
    background: linear-gradient(90deg, var(--color-blue) 0 36px, rgba(7, 88, 230, 0.22) 36px 100%);
  }

  .thoughts-page__content h4,
  .single-column-page .single-column__content h4 {
    margin-top: 28px;
    padding-left: 16px;
    font-size: 18px;
  }

  .thoughts-page__content h4::before,
  .single-column-page .single-column__content h4::before {
    width: 3px;
  }

  .thoughts-page__content h5,
  .single-column-page .single-column__content h5 {
    margin-top: 24px;
    font-size: 14px;
  }

  .thoughts-principle {
    grid-template-columns: 1fr;
    row-gap: 12px;
    padding: 22px 0;
  }

  .thoughts-principle__number {
    grid-row: auto;
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .thoughts-principle h3 {
    margin-bottom: 2px;
  }

  .company-cta__inner {
    padding: 30px 22px;
    border-radius: 12px;
  }

  .company-profile__table {
    margin-top: 32px;
  }

  .company-profile__table div {
    grid-template-columns: 1fr;
  }

  .company-profile__table dt,
  .company-profile__table dd {
    padding: 16px 18px;
    font-size: 14px;
  }

  .company-profile__table dt {
    font-size: 16px;
  }

  .line-button--company {
    min-height: 66px;
    padding-inline: 18px;
    font-size: 18px;
  }
}

/* LINE CTA polish: official LINE green with official icon asset. */
.line-button {
  --line-icon-width: 48px;
  --line-icon-height: 46px;
  --line-arrow-size: 34px;
  --line-chevron-size: 13px;
  --line-chevron-stroke: 4px;
  --line-gap: 12px;
  display: inline-grid;
  grid-template-columns: var(--line-icon-width) minmax(0, 1fr) var(--line-arrow-size);
  align-items: center;
  justify-items: center;
  column-gap: var(--line-gap);
  background: var(--color-line);
  box-shadow: 0 14px 32px rgba(6, 199, 85, 0.28);
}

.line-button:hover,
.line-button:focus-visible {
  background: var(--color-line-dark);
  box-shadow: 0 18px 40px rgba(6, 199, 85, 0.34);
}

.line-button__icon {
  display: inline-grid !important;
  place-items: center;
  flex: 0 0 auto;
  width: var(--line-icon-width) !important;
  height: var(--line-icon-height) !important;
  overflow: hidden;
  border-radius: 0 !important;
  color: transparent;
  background: url("../images/line-bubble-mark.png") center / contain no-repeat !important;
  font-size: 0;
  line-height: 0;
  white-space: nowrap;
}

.line-button__icon::before {
  content: none;
}

.line-button__icon::after {
  content: none;
}

.line-button span:not(.line-button__icon):not(.line-button__arrow) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  text-align: center;
  line-height: 1.25;
  white-space: nowrap;
}

.line-button__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: var(--line-arrow-size);
  height: var(--line-arrow-size);
  margin-left: 0;
  color: transparent;
  font-size: 0;
  justify-self: end;
  text-align: center;
  line-height: 0;
}

.line-button--trouble .line-button__arrow,
.line-button--reason .line-button__arrow,
.line-button--feature .line-button__arrow,
.line-button--flow .line-button__arrow,
.line-button--pricing .line-button__arrow,
.line-button--contact .line-button__arrow,
.line-button--company .line-button__arrow {
  margin-left: 0;
  font-size: 0;
}

.line-button__arrow::before {
  content: "";
  display: block;
  width: var(--line-chevron-size);
  height: var(--line-chevron-size);
  border-top: var(--line-chevron-stroke) solid #fff;
  border-right: var(--line-chevron-stroke) solid #fff;
  transform: translateX(-1px) rotate(45deg);
}

.line-button--header {
  --line-icon-width: 34px;
  --line-icon-height: 26px;
  --line-arrow-size: 0px;
  --line-gap: 8px;
  grid-template-columns: var(--line-icon-width) minmax(0, 1fr);
  min-width: 224px;
  padding-left: 18px;
  padding-right: 24px;
}

.line-button--hero {
  --line-icon-width: 62px;
  --line-icon-height: 60px;
  --line-arrow-size: 44px;
  --line-chevron-size: 16px;
  --line-chevron-stroke: 5px;
  --line-gap: 14px;
  padding-left: 28px;
  padding-right: 26px;
}

.line-button--trouble,
.line-button--reason,
.line-button--feature,
.line-button--flow,
.line-button--pricing,
.line-button--contact,
.line-button--company {
  width: fit-content;
  max-width: 100%;
  padding-left: 22px;
  padding-right: 20px;
}

.site-header__nav-line {
  display: none;
  background: var(--color-line);
}

@media (max-width: 860px) {
  .line-button--header {
    display: none !important;
  }

  .line-button {
    --line-icon-width: 40px;
    --line-icon-height: 38px;
    --line-arrow-size: 28px;
    --line-chevron-size: 12px;
    --line-chevron-stroke: 3px;
    --line-gap: 8px;
    width: min(100%, 420px);
    max-width: 100%;
    min-width: 0;
    padding-left: 16px;
    padding-right: 14px;
  }

  .line-button span:not(.line-button__icon):not(.line-button__arrow) {
    white-space: nowrap;
  }

  .line-button__arrow {
    font-size: 0;
  }

  .line-button--hero {
    --line-icon-width: 44px;
    --line-icon-height: 42px;
    --line-arrow-size: 32px;
    --line-chevron-size: 13px;
    --line-chevron-stroke: 4px;
    --line-gap: 10px;
    width: min(100%, 461px);
    min-height: 76px;
    padding-left: 20px;
    padding-right: 18px;
    font-size: clamp(18px, 5.2vw, 22px);
  }

  .line-button--hero .line-button__arrow {
    font-size: 0;
  }

  .line-button--trouble,
  .line-button--reason,
  .line-button--feature,
  .line-button--flow,
  .line-button--pricing,
  .line-button--contact,
  .line-button--company {
    width: fit-content;
    max-width: 100%;
    min-height: 64px;
    padding-left: 16px;
    padding-right: 14px;
    font-size: clamp(14px, 4vw, 16px);
  }

  .site-header.is-open .site-header__nav-line {
    --line-icon-width: 40px;
    --line-icon-height: 38px;
    --line-arrow-size: 0px;
    --line-gap: 10px;
    display: inline-grid;
    grid-template-columns: var(--line-icon-width) minmax(0, 1fr);
    width: fit-content;
    min-width: 0;
    min-height: 54px;
    margin: 16px auto 18px;
    padding: 0 24px 0 18px;
    font-size: 16px;
  }

  .site-header.is-open .site-header__nav-line .line-button__arrow {
    display: none;
  }
}

@media (max-width: 560px) {
  .trouble__lead,
  .reason__lead,
  .feature__lead,
  .first-action__lead,
  .flow__lead,
  .pricing__lead,
  .cases__lead,
  .column__lead {
    font-size: 14px;
    text-align: center;
  }

  .trouble__lead br.sp-only,
  .feature__lead br,
  .first-action__lead br,
  .flow__lead br,
  .pricing__lead br.sp-only,
  .cases__lead br,
  .column__lead br {
    display: inline !important;
  }
}
