:root {
  --navy: #061b3f;
  --blue: #1688ff;
  --blue-dark: #0067e8;
  --cyan: #36c5f4;
  --green: #15c989;
  --green-dark: #06aa6f;
  --text: #10264f;
  --muted: #607293;
  --line: #dbe7f7;
  --soft-blue: #f2f8ff;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(16, 50, 93, 0.11);
  --shadow-soft: 0 10px 26px rgba(16, 50, 93, 0.08);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  line-height: 1.75;
  background: #fff;
}

img,
svg {
  display: block;
}

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

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

.section {
  position: relative;
  padding: 92px 0;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 228px minmax(320px, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 94px;
  padding: 0 36px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 231, 247, 0.75);
  backdrop-filter: blur(14px);
}

.brand img,
.footer-brand img {
  height: auto;
}

.brand img {
  width: 214px;
}

.footer-brand img {
  width: 154px;
}

.global-nav {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding-right: 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.global-nav a {
  padding: 8px 0;
}

.header-actions,
.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.mobile-fixed-actions {
  display: none;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 12px 22px rgba(0, 103, 232, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 103, 232, 0.23);
}

.btn-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
  white-space: nowrap;
}

.btn-line {
  background: linear-gradient(135deg, var(--green), #18d794);
}

.btn-mail,
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.btn-icon svg {
  width: 17px;
  height: 17px;
  fill: #fff;
}

.btn-icon-line {
  overflow: hidden;
  padding: 3px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.92);
}

.btn-icon-line img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.hero {
  overflow: hidden;
  min-height: auto;
  padding: 0;
  background: #fff;
}

.hero-main-visual {
  display: block;
  width: 100%;
}

.hero-main-visual img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.hero-bg::before,
.hero-bg::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 46% 54% 54% 46% / 48% 43% 57% 52%;
  opacity: 0.42;
}

.hero-bg::before {
  top: 80px;
  left: 72px;
  width: 290px;
  height: 420px;
  background: linear-gradient(180deg, rgba(54, 197, 244, 0.22), rgba(255, 255, 255, 0));
}

.hero-bg::after {
  top: 78px;
  left: 308px;
  width: 260px;
  height: 440px;
  background: linear-gradient(180deg, rgba(21, 201, 137, 0.17), rgba(255, 255, 255, 0));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(560px, 1.13fr) minmax(390px, 0.87fr);
  align-items: end;
  gap: 52px;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  display: none !important;
  content: none !important;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.hero h1 {
  margin: 0;
  line-height: 0;
}

.hero-catchcopy {
  width: min(760px, 108%);
  max-width: none;
  height: auto;
  mix-blend-mode: multiply;
  transform: translate(-8px, -22px);
}

.hero-lead-line {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 560px;
  margin: 4px 0 30px;
  padding: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.9;
  transform: translateX(-10px);
}

.lead-highlight {
  color: var(--blue-dark);
  font-weight: 900;
}

.hero-checks {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}

.hero-checks li {
  position: relative;
  padding-left: 30px;
}

.hero-checks li::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #fff;
  font-size: 12px;
  content: "✓";
  background: var(--green);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  max-width: 610px;
  margin-left: auto;
}

.hero-visual::before {
  position: absolute;
  inset: 42px 22px 96px 42px;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 52% 44%, rgba(22, 136, 255, 0.13), rgba(22, 136, 255, 0) 58%),
    radial-gradient(circle at 58% 58%, rgba(21, 201, 137, 0.12), rgba(21, 201, 137, 0) 62%);
  border-radius: 48%;
}

.hero-visual img {
  width: 100%;
  height: auto;
  margin-left: auto;
  mix-blend-mode: multiply;
}

.hero-actions {
  justify-content: center;
  width: min(100%, 720px);
}

.hero-strength-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 8px auto 0;
  padding: 0;
  list-style: none;
}

.hero-strength-badges li {
  position: relative;
  display: grid;
  grid-template-rows: 24px auto auto;
  align-content: center;
  justify-items: center;
  width: 126px;
  height: 126px;
  padding: 16px 10px 15px;
  color: var(--navy);
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72) 64%, rgba(236, 248, 255, 0.88) 100%);
  border: 5px solid transparent;
  border-radius: 50%;
  background-clip: padding-box;
  box-shadow: 0 12px 28px rgba(0, 103, 232, 0.14);
}

.hero-strength-badges li::before {
  position: absolute;
  inset: -5px;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 50%;
}

.hero-strength-badges li::after {
  position: absolute;
  inset: 8px;
  content: "";
  border: 1px solid rgba(22, 136, 255, 0.24);
  border-radius: 50%;
}

.hero-strength-badges .is-primary {
  color: #fff;
  background:
    radial-gradient(circle at 35% 26%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 28%),
    linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 16px 34px rgba(0, 103, 232, 0.22);
}

.hero-strength-badges .is-primary::after {
  border-color: rgba(255, 255, 255, 0.72);
}

.hero-badge-icon,
.hero-badge-kicker,
.hero-badge-main {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 102px;
  line-height: 1.16;
  white-space: normal;
  overflow-wrap: normal;
  word-break: keep-all;
}

.hero-badge-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  background: rgba(22, 136, 255, 0.09);
  border-radius: 50%;
}

.hero-strength-badges .is-primary .hero-badge-icon {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.95);
}

.hero-badge-kicker {
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 900;
}

.hero-badge-main {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-strength-badges .is-primary .hero-badge-main {
  font-size: 22px;
}

.concept {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

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

.section-center h2,
.updates-panel h2,
.bottom-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.35;
  font-weight: 900;
}

.section-center h2 span {
  color: var(--green);
}

.section-center h2 .highlight-blue {
  color: var(--blue-dark);
}

.section-lead {
  margin: 14px auto 0;
  max-width: 780px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.section-lead-line {
  display: block;
}

.concept-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-top: 56px;
}

.concept-points article {
  position: relative;
  display: grid;
  grid-template-rows: 128px 56px auto;
  align-items: start;
  justify-items: center;
  text-align: center;
}

.concept-points article + article::before {
  position: absolute;
  top: 32px;
  left: -22px;
  width: 1px;
  height: 98px;
  content: "";
  background: linear-gradient(180deg, rgba(219, 231, 247, 0), var(--line), rgba(219, 231, 247, 0));
}

.concept-points h3,
.service-card h3 {
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.55;
}

.concept-points h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin: 0;
}

.concept-points p,
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.panel-icon {
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, #f6fbff, #fff);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(16, 50, 93, 0.06);
}

.panel-icon {
  overflow: hidden;
}

.panel-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: scale(1.45);
  transform-origin: center;
}

.concept-icon-img {
  width: 116px;
  height: 116px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: scale(1.9);
  transform-origin: center;
}

.support {
  background: linear-gradient(180deg, #f6fbff 0%, #fff 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.service-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  column-gap: 20px;
  row-gap: 6px;
  align-items: center;
  min-height: 142px;
  padding: 18px 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-icon-img {
  grid-column: 1;
  grid-row: 1 / span 2;
  justify-self: center;
  width: 102px;
  height: 102px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: scale(1.35);
  transform-origin: center;
}

.service-card h3 {
  grid-column: 2;
  margin: 0;
  align-self: end;
}

.service-card p {
  grid-column: 2;
  align-self: start;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.cases {
  background: #fff;
}

.case-slider {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
}

.case-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  min-height: 0;
}

.case-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  height: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 136, 255, 0.35);
  box-shadow: var(--shadow);
}

.case-image {
  position: relative;
  display: grid;
  place-items: center;
  height: 168px;
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 28%, rgba(54, 197, 244, 0.2), rgba(54, 197, 244, 0) 34%),
    radial-gradient(circle at 76% 70%, rgba(21, 201, 137, 0.18), rgba(21, 201, 137, 0) 38%),
    linear-gradient(135deg, #f4faff 0%, #ffffff 46%, #eef8f4 100%);
}

.case-image::before,
.case-image::after {
  position: absolute;
  content: "";
}

.case-image::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(22, 136, 255, 0.08) 39px 40px);
}

.case-placeholder-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.case-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 999px;
}

.case-body {
  padding: 22px;
}

.case-body h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.6;
}

.case-body p {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.case-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
}

.case-link::after {
  margin-left: 8px;
  content: "›";
  font-size: 20px;
  line-height: 1;
}

.slider-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 0;
  color: transparent;
  cursor: pointer;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.slider-prev {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230067e8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='15 18 9 12 15 6'/></svg>");
}

.slider-next {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230067e8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 18 15 12 9 6'/></svg>");
}

.case-status {
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.case-dots {
  display: flex;
  gap: 9px;
}

.case-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  cursor: pointer;
  background: #d4deef;
  border: 0;
  border-radius: 50%;
}

.case-dots button.is-active {
  width: 18px;
  background: var(--blue);
  border-radius: 999px;
}

.updates {
  padding-top: 32px;
  background: #fff;
}

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

.updates-panel {
  padding: 34px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.panel-title {
  display: flex;
  gap: 14px;
  align-items: center;
}

.panel-title h2 {
  font-size: 28px;
}

.panel-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.news-list,
.note-list {
  display: grid;
  gap: 0;
  margin: 22px 0 18px;
  padding: 0;
  list-style: none;
}

.news-list li,
.note-list li {
  display: grid;
  gap: 12px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.news-list li {
  grid-template-columns: 116px 1fr;
}

.note-list li {
  grid-template-columns: 82px 1fr;
  align-items: center;
}

.news-list time {
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
}

.news-list a,
.note-list a {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.note-item-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.note-title {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.note-list .note-item-link {
  justify-self: end;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.note-thumb {
  width: 72px;
  height: 48px;
  border-radius: 6px;
  background: linear-gradient(135deg, #eaf6ff, #b4d8f0);
}

.thumb-2 {
  background: linear-gradient(135deg, #f2e2ca, #82b7d9);
}

.thumb-3 {
  background: linear-gradient(135deg, #ddf4ed, #6dcaad);
}

.text-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
  text-align: right;
}

.text-link::after {
  margin-left: 8px;
  content: "›";
  font-size: 20px;
}

.bottom-cta {
  padding: 22px 0 46px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 14px;
  min-height: 136px;
  padding: 24px 48px 26px;
  text-align: center;
  background:
    radial-gradient(circle at 94% 34%, rgba(21, 201, 137, 0.16), rgba(21, 201, 137, 0) 28%),
    linear-gradient(135deg, #eff7ff 0%, #ffffff 52%, #eefaf6 100%);
  border: 1px solid #cce1f8;
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(16, 50, 93, 0.08);
}

.cta-box > div {
  position: relative;
  z-index: 1;
}

.bottom-cta h2 {
  font-size: clamp(21px, 2.1vw, 25px);
  line-height: 1.45;
}

.bottom-cta p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.cta-actions {
  position: relative;
  z-index: 1;
}

.bottom-cta .cta-actions {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: auto;
}

.bottom-cta .cta-actions .btn {
  width: 238px;
  min-height: 48px;
  padding: 0 20px;
  font-size: 14px;
}

.cta-mark {
  position: absolute;
  top: 50%;
  right: 34px;
  z-index: 0;
  width: 126px;
  height: 92px;
  opacity: 0.16;
  background: url("../images/maesta-logo-horizontal-transparent.png") center / contain no-repeat;
  transform: translateY(-50%);
}

.site-footer {
  padding: 10px 0 22px;
  background: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 184px 1fr;
  gap: 46px;
  align-items: center;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.footer-mobile-actions {
  display: none;
}

.copyright {
  margin: 20px 0 0;
  color: #7a8aa6;
  font-size: 12px;
  text-align: center;
}

.page-main {
  background: linear-gradient(180deg, #f7fbff 0%, #fff 38%);
}

.subpage-hero {
  padding: 72px 0 16px;
  text-align: center;
}

.subpage-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.25;
  font-weight: 900;
}

.company-overview {
  padding-top: 24px;
}

.overview-card {
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.overview-table {
  margin: 0;
}

.overview-table div {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 68px;
  border-bottom: 1px solid var(--line);
}

.overview-table div:last-child {
  border-bottom: 0;
}

.overview-table dt,
.overview-table dd {
  margin: 0;
  padding: 20px 24px;
}

.overview-table dt {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  background: #f4f9ff;
}

.overview-table dd {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.overview-table a {
  color: var(--blue-dark);
  font-weight: 900;
}

.subpage-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.legal-hero {
  padding-bottom: 18px;
}

.legal-section {
  padding-top: 28px;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px 48px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin: 32px 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 900;
}

.legal-card h2:first-of-type {
  margin-top: 24px;
}

.legal-card p,
.legal-card li {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.legal-card ul {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding-left: 1.2em;
}

.legal-card a {
  color: var(--blue-dark);
  font-weight: 900;
}

.legal-date {
  margin-top: 34px;
  color: var(--muted);
}

.contact-hero {
  padding-bottom: 18px;
}

.contact-section {
  padding-top: 28px;
}

.contact-form {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4px 0 0;
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.form-row:last-of-type {
  border-bottom: 0;
}

.form-row-consent {
  border-bottom: 0;
}

.form-label {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  color: #071b3c;
  font-size: 16px;
  font-weight: 900;
}

.form-label label {
  cursor: pointer;
}

.form-badge {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 24px;
  padding: 0 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  background: #9aa3ad;
  border-radius: 3px;
}

.form-badge.is-required {
  background: #ef4b3e;
}

.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  background: #fff;
  border: 1px solid #c8d2df;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(22, 136, 255, 0.12);
}

.form-field textarea {
  min-height: 148px;
  padding: 14px 16px;
  resize: vertical;
}

.form-field ::placeholder {
  color: #8a96a7;
  font-weight: 700;
}

.form-note {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.privacy-link {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-check {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.consent-check input {
  width: 22px;
  height: 22px;
  min-height: auto;
  margin: 0;
  accent-color: var(--blue);
}

.form-actions {
  display: flex;
  justify-content: center;
  padding: 34px 0 4px;
}

.form-actions .btn {
  min-width: 220px;
  border: 0;
  cursor: pointer;
}

.case-list-hero {
  padding-bottom: 20px;
}

.case-list-section {
  padding-top: 28px;
}

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

.case-list-card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.case-list-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 136, 255, 0.35);
  box-shadow: var(--shadow);
}

.case-list-link {
  display: grid;
  height: 100%;
}

.case-list-thumb {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 184px;
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 28%, rgba(54, 197, 244, 0.2), rgba(54, 197, 244, 0) 34%),
    radial-gradient(circle at 76% 70%, rgba(21, 201, 137, 0.18), rgba(21, 201, 137, 0) 38%),
    linear-gradient(135deg, #f4faff 0%, #ffffff 46%, #eef8f4 100%);
}

.case-list-thumb::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(22, 136, 255, 0.08) 39px 40px);
}

.case-list-body {
  display: grid;
  grid-template-rows: 1fr auto;
  align-content: start;
  min-width: 0;
  padding: 22px;
}

.case-list-body p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.case-list-body .case-link {
  justify-self: end;
  margin-top: auto;
  max-width: 100%;
  text-align: right;
  overflow-wrap: anywhere;
}

.case-link-external::after {
  content: "↗";
  font-size: 15px;
}

.archive-section,
.faq-section {
  padding-top: 28px;
}

.note-category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto 32px;
}

.note-category-filter[data-show="false"] {
  display: none;
}

.note-category-btn {
  padding: 9px 20px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  font-family: inherit;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.note-category-btn:hover {
  border-color: rgba(22, 136, 255, 0.4);
  transform: translateY(-1px);
}

.note-category-btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-color: transparent;
  box-shadow: 0 8px 16px rgba(0, 103, 232, 0.2);
}

.note-empty-message {
  margin: 32px auto 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.archive-card[hidden] {
  display: none;
}

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

.archive-card {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.archive-card .note-thumb {
  width: 100%;
  height: 128px;
}

.archive-card-body {
  display: grid;
  align-content: start;
  min-width: 0;
}

.archive-category {
  width: fit-content;
  margin: 0 0 10px;
  padding: 4px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--blue-dark), var(--green-dark));
  border-radius: 999px;
}

.archive-card .archive-category {
  margin: 0 0 10px;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  text-shadow: 0 1px 1px rgba(6, 27, 63, 0.18);
}

.archive-card h2,
.news-archive-item h2 {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 900;
}

.archive-card p,
.news-archive-item p,
.faq-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.archive-card .case-link {
  justify-self: end;
  margin-top: 16px;
}

.news-archive-list,
.faq-list {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.news-archive-item {
  padding: 24px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.news-archive-item:hover {
  border-color: rgba(22, 136, 255, 0.34);
  box-shadow: 0 18px 42px rgba(16, 50, 93, 0.11);
  transform: translateY(-2px);
}

.news-archive-link {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 24px;
}

.news-detail-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 42px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.news-detail-card time {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
}

.news-detail-card h1 {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.45;
  font-weight: 900;
}

.news-detail-card p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.news-detail-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.news-archive-item time {
  color: var(--blue-dark);
  font-size: 15px;
  font-weight: 900;
}

.faq-list details {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.faq-list details[open] {
  border-color: rgba(22, 136, 255, 0.22);
  box-shadow: 0 14px 34px rgba(16, 50, 93, 0.08);
}

.faq-list summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 18px 26px;
  cursor: pointer;
  list-style: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

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

.faq-list summary:focus {
  outline: none;
}

.faq-list summary:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(22, 136, 255, 0.18);
}

.faq-list summary::after {
  content: none;
}

.faq-question {
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.65;
}

.faq-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.02em;
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-icon-q {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 6px 14px rgba(22, 136, 255, 0.22);
}

.faq-icon-a {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 6px 14px rgba(21, 201, 137, 0.22);
}

.faq-arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 4px;
  border-right: 2.5px solid var(--muted);
  border-bottom: 2.5px solid var(--muted);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform 0.22s ease;
}

.faq-list details[open] .faq-arrow {
  transform: rotate(-135deg) translate(-3px, -3px);
}

.faq-answer {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 18px;
  padding: 0 26px 24px;
}

.faq-answer p {
  margin: 6px 0 0;
  padding: 0;
  border: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.95;
}

.pricing-section {
  padding-top: 60px;
  background: linear-gradient(180deg, #f6fbff 0%, #fff 100%);
}

.pricing-stack {
  display: grid;
  gap: 22px;
  max-width: 960px;
  margin: 44px auto 0;
}

.pricing-card {
  display: grid;
  gap: 22px;
  padding: 30px 36px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pricing-card:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 136, 255, 0.28);
  box-shadow: var(--shadow);
}

.pricing-card-bonus {
  background:
    radial-gradient(circle at 94% 22%, rgba(21, 201, 137, 0.12), rgba(21, 201, 137, 0) 30%),
    linear-gradient(135deg, #f4fbf8 0%, #ffffff 60%);
  border-color: rgba(21, 201, 137, 0.4);
}

.pricing-head {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.pricing-icon {
  width: 96px;
  height: 96px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: scale(1.3);
  transform-origin: center;
}

.pricing-title h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 900;
}

.pricing-title p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
}

.pricing-table {
  margin: 0;
  border-top: 1px solid var(--line);
}

.pricing-table > div {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  min-height: 56px;
  border-bottom: 1px solid var(--line);
}

.pricing-table-wide > div {
  grid-template-columns: 320px 1fr;
}

.pricing-table dt,
.pricing-table dd {
  margin: 0;
  padding: 14px 18px;
}

.pricing-table dt {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  background: #f4f9ff;
}

.pricing-card-bonus .pricing-table dt {
  background: rgba(21, 201, 137, 0.08);
}

.pricing-table dd {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.pricing-table dd strong {
  color: var(--blue-dark);
  font-size: 20px;
  font-weight: 900;
}

.pricing-card-bonus .pricing-table dd strong {
  color: var(--green-dark);
}

.pricing-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.bonus-section {
  background: linear-gradient(180deg, #fff 0%, #f6fbff 100%);
}

.bonus-card {
  overflow: hidden;
  max-width: 820px;
  margin: 44px auto 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
}

.bonus-table th,
.bonus-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.bonus-table thead th {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  background: #f4f9ff;
}

.bonus-table tbody th {
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  background: #fafcff;
  text-align: center;
}

.bonus-table tbody td {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.bonus-table tbody td strong {
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 900;
}

.bonus-table tbody tr:last-child th,
.bonus-table tbody tr:last-child td {
  border-bottom: 0;
}

.flow-section {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.step-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1020px;
  margin: 48px auto 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.step-item {
  position: relative;
  padding: 26px 26px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.step-item + .step-item::before {
  position: absolute;
  top: 50%;
  left: -38px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding-bottom: 2px;
  padding-left: 2px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  content: "›";
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 103, 232, 0.22);
  transform: translateY(-50%);
}

.step-visual {
  width: auto;
  aspect-ratio: 16 / 8;
  margin: -26px -26px 22px;
  background: linear-gradient(135deg, #eaf3ff 0%, #ecf8f3 100%);
  border: none;
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
  overflow: hidden;
}

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

.step-item h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 900;
}

.step-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.campaign-banner-section {
  padding: 28px 0 0;
  background: #fff;
}

.campaign-image-banner-section {
  display: block;
}

.campaign-image-banner {
  max-width: var(--container);
  margin: 0 auto;
}

.campaign-image-banner picture {
  display: block;
}

.campaign-image-banner-heading {
  margin: 0 0 14px;
  text-align: center;
}

.campaign-image-banner-heading::after {
  content: none;
}

.campaign-image-banner-heading .eyebrow {
  margin-bottom: 6px;
}

.campaign-image-banner-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.35;
  font-weight: 900;
}

.campaign-image-banner-heading h2 span {
  color: var(--green);
}

.campaign-image-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(6, 27, 63, 0.2);
}

.campaign-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 40px 48px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 201, 74, 0.22), rgba(255, 201, 74, 0) 55%),
    linear-gradient(135deg, #061b3f 0%, #0a2a63 55%, #0d3f8a 100%);
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 26px 60px rgba(6, 27, 63, 0.28);
  overflow: hidden;
}

.campaign-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 4% 92%, rgba(54, 197, 244, 0.18), rgba(54, 197, 244, 0) 50%);
  pointer-events: none;
}

.campaign-banner-main,
.campaign-banner-perks,
.campaign-banner-note {
  position: relative;
}

.campaign-banner-eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 16px;
  background: #ffc94a;
  color: #061b3f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  border-radius: 999px;
}

.campaign-banner-title {
  margin: 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.55;
  font-weight: 900;
}

.campaign-banner-title em {
  color: #ffc94a;
  font-style: normal;
}

.campaign-banner-lead {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
}

.campaign-banner-perks {
  display: grid;
  gap: 12px;
}

.campaign-banner-perk {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
}

.campaign-banner-perk-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: #ffc94a;
  color: #061b3f;
  font-size: 13px;
  font-weight: 900;
  border-radius: 50%;
}

.campaign-banner-perk-name {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

.campaign-banner-perk-name span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.campaign-banner-perk-value {
  color: #ffc94a;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.campaign-banner-note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.cases-section {
  background: #fff;
}

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

.model-case-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.model-case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 136, 255, 0.3);
  box-shadow: var(--shadow);
}

.model-case-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 26px 20px;
  background:
    radial-gradient(circle at 18% 22%, rgba(54, 197, 244, 0.2), rgba(54, 197, 244, 0) 42%),
    linear-gradient(135deg, #f4faff 0%, #ffffff 72%);
  border-bottom: 1px solid var(--line);
}

.model-case-index {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  height: 28px;
  padding: 0 8px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  border-radius: 6px;
  flex: 0 0 auto;
}

.model-case-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
}

.model-case-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 26px 26px;
}

.model-case-section {
  display: grid;
  gap: 8px;
}

.model-case-label {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.model-case-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.case-pill {
  display: inline-block;
  padding: 5px 11px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  background: rgba(22, 136, 255, 0.1);
  border-radius: 999px;
}

.case-pill-campaign {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 7px 5px 11px;
  color: #b85100;
  background: rgba(255, 152, 32, 0.14);
}

.case-pill-campaign::after {
  content: "特典";
  padding: 2px 7px;
  background: #ff8b2c;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

.model-case-outcome {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
}

.model-case-price-block {
  display: grid;
  align-content: start;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.model-case-price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px;
}

.model-case-price-cell {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 12px 10px;
  background: #fff;
  border: 1px solid rgba(216, 226, 239, 0.95);
  border-radius: 10px;
}

.model-case-price-cell-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(1px);
}

.model-case-price-cell-value {
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.model-case-price-cell-main {
  background: rgba(22, 136, 255, 0.07);
  border-color: rgba(22, 136, 255, 0.18);
}

.model-case-price-cell-main::before {
  content: none;
}

.model-case-price-cell-main .model-case-price-cell-value {
  color: var(--blue-dark);
  font-size: 22px;
  line-height: 1;
}

.model-case-price-extra {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
}

@media (min-width: 861px) {
  .model-case-head {
    height: 104px;
  }

  .model-case-body .model-case-section:first-child {
    min-height: 74px;
  }

  .model-case-body .model-case-section:nth-child(2) {
    min-height: 112px;
  }

  .model-case-price-block {
    min-height: 98px;
  }
}

.model-case-campaign-legend {
  margin: 32px auto 0;
  max-width: 720px;
  padding: 14px 20px;
  background: rgba(255, 152, 32, 0.07);
  border-left: 3px solid #ff8b2c;
  border-radius: 6px;
  color: #8a4400;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.85;
}

.legend-pill-sample {
  margin-right: 6px;
  pointer-events: none;
  vertical-align: middle;
}

.model-case-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 1.85;
}

.model-case-note-link {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.model-case-note-link:hover {
  color: var(--blue);
}

.summary-badge {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  border-radius: 4px;
  vertical-align: middle;
}

.summary-badge-campaign {
  background: #ff8b2c;
  color: #fff;
}

.details-section {
  background: #fff;
}

.details-list {
  display: grid;
  gap: 14px;
  max-width: 880px;
  margin: 44px auto 0;
}

.details-list details {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.details-list details[open] {
  border-color: rgba(22, 136, 255, 0.3);
  box-shadow: 0 14px 34px rgba(16, 50, 93, 0.08);
}

.details-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 16px 56px 16px 22px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
  cursor: pointer;
  list-style: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

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

.details-list summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  content: "+";
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 50%;
  transform: translateY(-50%);
}

.details-list details[open] summary::after {
  content: "−";
}

.details-body {
  padding: 4px 22px 22px;
  border-top: 1px solid var(--line);
}

.details-lead {
  margin: 14px 0 14px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
}

.details-table {
  margin: 12px 0 0;
}

.details-table > div {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
}

.details-table > div:last-child {
  border-bottom: 0;
}

.details-table-wide > div {
  grid-template-columns: 300px 1fr;
}

.details-table dt,
.details-table dd {
  margin: 0;
  padding: 10px 14px;
}

.details-table dt {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  background: #f4f9ff;
}

.details-table dd {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.details-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.details-body .bonus-table {
  margin-top: 10px;
}

.bonus-table-caption {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.bonus-table-caption-campaign {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  color: #8a4400;
}

.bonus-table-caption-tag {
  display: inline-block;
  padding: 3px 10px;
  background: #ff8b2c;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  border-radius: 4px;
}

.bonus-table-campaign-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.bonus-table.bonus-table-campaign {
  border: 1px solid rgba(255, 139, 44, 0.35);
}

.bonus-table.bonus-table-campaign thead th {
  background: linear-gradient(135deg, #ff8b2c, #ffa657);
  color: #fff;
}

.bonus-table.bonus-table-campaign tbody th {
  background: rgba(255, 139, 44, 0.08);
  color: #8a4400;
}

.bonus-table.bonus-table-campaign tbody td strong {
  color: #b85100;
}

.about-question {
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at 20% 20%, rgba(22, 136, 255, 0.18), rgba(22, 136, 255, 0) 42%),
    radial-gradient(circle at 80% 24%, rgba(21, 201, 137, 0.16), rgba(21, 201, 137, 0) 46%),
    linear-gradient(180deg, #e6f2ff 0%, #dbe9fa 100%);
  border-top: 1px solid rgba(22, 136, 255, 0.12);
}

.question-block {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.question-eyebrow {
  margin: 0 0 32px;
  color: var(--navy);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 900;
  letter-spacing: 0.08em;
}

@media (max-width: 560px) {
  .question-eyebrow {
    font-size: 17px;
  }
}

.question-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.55;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.question-line {
  display: block;
}

.question-emphasis {
  position: relative;
  display: inline-block;
  margin-top: 6px;
  padding: 0 4px;
  color: var(--blue-dark);
  background: linear-gradient(transparent 66%, rgba(54, 197, 244, 0.28) 66%);
}

.reality-block {
  max-width: 720px;
  margin: 56px auto 0;
  padding: 38px 44px;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.reality-block p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.reality-block p:last-child {
  margin-bottom: 0;
}

.reality-block strong {
  color: var(--navy);
  font-weight: 900;
}

.reality-conclusion {
  position: relative;
  margin-top: 28px !important;
  padding-top: 24px !important;
  border-top: 1px dashed var(--line);
  font-size: 17px !important;
}

.reality-conclusion strong {
  color: var(--blue-dark) !important;
  font-size: 20px;
}

.about-risks {
  background: linear-gradient(180deg, #f6fbff 0%, #fff5f4 100%);
}

.about-risks h2 {
  color: var(--navy);
}

.risks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.risk-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 34px 28px;
  background: var(--card);
  border: 1px solid #f5cfca;
  border-top: 4px solid #e85a4f;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(232, 90, 79, 0.08);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.risk-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(232, 90, 79, 0.14);
}

.risk-image {
  width: auto;
  aspect-ratio: 16 / 8;
  background: #fff5f4;
  border-radius: 0;
  margin: -34px -28px 10px;
  overflow: hidden;
}

.risk-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.risk-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 900;
}

.risk-card p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.95;
}

.risk-card strong {
  color: #c43c30;
  font-weight: 900;
}

.risks-voice {
  max-width: 760px;
  margin: 48px auto 0;
  padding: 28px 36px;
  text-align: center;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.95;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.risks-voice strong {
  color: var(--navy);
  font-weight: 900;
  font-size: 17px;
}

.risks-conclusion {
  max-width: 760px;
  margin: 32px auto 0;
  padding: 0 16px;
  text-align: center;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
}

.risks-conclusion strong {
  color: var(--navy);
  font-weight: 900;
}

.about-solution {
  background: linear-gradient(180deg, #fff5f4 0%, #f4faff 100%);
}

.about-solution .section-center h2 .solution-line {
  display: block;
}

.about-solution .section-center h2 .solution-no {
  display: inline-block;
  margin: 0 6px;
  padding: 0 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 6px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.solution-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 40px 28px 32px;
  background: var(--card);
  border: 1px solid rgba(22, 136, 255, 0.18);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.solution-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 136, 255, 0.45);
  box-shadow: var(--shadow);
}

.solution-image {
  width: auto;
  aspect-ratio: 16 / 8;
  background: linear-gradient(135deg, #eaf3ff 0%, #ecf8f3 100%);
  border-radius: 0;
  margin: -40px -28px 10px;
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.solution-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 900;
}

.solution-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.95;
}

.solution-card strong {
  color: var(--blue-dark);
  font-weight: 900;
}

.about-motto {
  padding: 100px 0 88px;
  background:
    radial-gradient(circle at 50% 30%, rgba(22, 136, 255, 0.1), rgba(22, 136, 255, 0) 60%),
    linear-gradient(180deg, #061b3f 0%, #0a2654 100%);
  color: #fff;
}

.motto-block {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.motto-eyebrow {
  margin: 0 0 24px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.motto-title {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
}

.motto-line {
  display: block;
  color: rgba(255, 255, 255, 0.92);
}

.motto-highlight {
  background: linear-gradient(135deg, #36c5f4 0%, #79f0c5 70%, #15c989 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.16em;
  letter-spacing: 0.04em;
}

.motto-body {
  margin-top: 42px;
}

.motto-body p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.motto-body strong {
  color: #fff;
  font-weight: 900;
}

.motto-tagline {
  margin-top: 22px !important;
  color: var(--cyan) !important;
  font-size: 17px !important;
  font-weight: 900 !important;
}

.motto-signature {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.motto-signature .signature-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.motto-signature .signature-name {
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.signature-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.signature-name {
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 198px minmax(300px, 1fr) auto;
    height: auto;
    min-height: 82px;
    gap: 14px;
    padding: 12px 20px;
  }

  .brand img {
    width: 196px;
  }

  .global-nav {
    gap: 22px;
    padding-right: 4px;
    font-size: 13px;
  }

  .header-actions {
    grid-column: auto;
    justify-content: flex-end;
    gap: 10px;
  }

  .btn-small {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-inner {
    grid-template-columns: minmax(430px, 1.07fr) minmax(330px, 0.93fr);
    align-items: center;
    gap: 32px;
    text-align: left;
  }

  .hero-copy::before {
    margin-right: auto;
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 72px;
  }

  .hero-image-section {
    padding: 0;
  }

  .hero-catchcopy {
    width: min(580px, 108%);
    transform: translate(-6px, -12px);
  }

  .hero-lead {
    max-width: 500px;
    margin: -2px 0 24px;
    font-size: 18px;
  }

  .hero-actions {
    justify-content: center;
    gap: 10px;
    width: min(100%, 540px);
  }

  .hero-actions .btn {
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }

  .hero-checks {
    display: inline-grid;
    text-align: left;
  }

  .hero-visual img {
    margin: 0 auto;
  }

  .hero-visual {
    max-width: 470px;
    margin-right: auto;
  }

  .hero-lead {
    transform: none;
  }

  .hero-actions {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-strength-badges {
    gap: 9px;
    margin-top: 4px;
  }

  .hero-strength-badges li {
    width: 108px;
    height: 108px;
    padding: 13px 8px 12px;
    border-width: 4px;
  }

  .hero-strength-badges li::before {
    inset: -4px;
  }

  .hero-strength-badges li::after {
    inset: 7px;
  }

  .hero-badge-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 3px;
    font-size: 12px;
  }

  .hero-badge-kicker {
    margin-bottom: 2px;
    font-size: 11px;
  }

  .hero-badge-main {
    font-size: 20px;
  }

  .hero-strength-badges .is-primary .hero-badge-main {
    font-size: 18px;
  }
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }

  .global-nav {
    justify-content: center;
  }

  .header-actions {
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .global-nav {
    justify-content: flex-start;
    max-width: 100%;
    gap: 18px;
    padding-right: 0;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-image-section {
    padding: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-catchcopy {
    width: min(100%, 620px);
    transform: none;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    max-width: 560px;
  }

  .concept-points,
  .service-grid,
  .case-list-grid,
  .note-archive-grid,
  .updates-grid,
  .cta-box,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .bottom-cta .cta-actions {
    width: 100%;
  }

  .cta-box {
    padding: 26px 28px;
  }

  .cta-mark {
    display: none;
  }

  .concept-points article + article::before {
    display: none;
  }

  .concept-points article {
    grid-template-rows: 128px auto auto;
  }

  .case-slider {
    grid-template-columns: 36px 1fr 36px;
    gap: 10px;
  }

  .case-track {
    grid-template-columns: 1fr;
  }

  .case-card:nth-child(n+2) {
    display: none;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-label {
    min-height: auto;
  }

  .archive-card,
  .news-archive-item {
    grid-template-columns: 1fr;
  }

  .news-archive-link {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pricing-card {
    padding: 24px 22px;
  }

  .pricing-head {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
  }

  .pricing-icon {
    width: 72px;
    height: 72px;
  }

  .pricing-title h3 {
    font-size: 19px;
  }

  .pricing-table > div,
  .pricing-table-wide > div {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .pricing-table dt {
    padding-bottom: 6px;
  }

  .pricing-table dd {
    padding-top: 6px;
    background: #fff;
  }

  .bonus-table {
    width: 100%;
    table-layout: fixed;
  }

  .bonus-table th,
  .bonus-table td {
    padding: 14px 8px;
    font-size: 13px;
    word-break: break-word;
  }

  .bonus-table thead th {
    font-size: 12px;
    line-height: 1.4;
  }

  .bonus-table tbody td strong {
    font-size: 16px;
  }

  .bonus-table-caption-campaign {
    margin-top: 22px;
  }

  .bonus-table-caption-tag {
    padding: 2px 8px;
    font-size: 10px;
  }

  .step-flow {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step-item + .step-item::before {
    top: -16px;
    left: 50%;
    padding-bottom: 0;
    padding-left: 0;
    content: "↓";
    transform: translate(-50%, -50%);
  }

  .model-cases {
    grid-template-columns: 1fr;
  }

  .campaign-image-banner-section {
    display: block;
    padding: 18px 0 0;
  }

  .campaign-image-banner {
    max-width: 430px;
  }

  .campaign-image-banner-section + .flow-section {
    padding-top: 38px;
  }

  .campaign-banner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 24px;
  }

  .campaign-banner-title {
    font-size: 20px;
  }

  .campaign-banner-perk {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 16px;
  }

  .campaign-banner-perk-mark {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .campaign-banner-perk-value {
    grid-column: 1 / -1;
    margin-top: 4px;
    margin-left: 44px;
  }

  .details-table > div,
  .details-table-wide > div {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .details-table dt {
    padding-bottom: 4px;
  }

  .details-table dd {
    padding-top: 4px;
    background: #fff;
  }

  .risks-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .reality-block {
    padding: 30px 26px;
  }

  .reality-block p {
    font-size: 15px;
  }

  .about-question {
    padding: 64px 0 56px;
  }

  .about-motto {
    padding: 72px 0 64px;
  }

  .pc-only {
    display: none;
  }
}

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

  .reality-block {
    padding: 26px 20px;
  }

  .reality-conclusion {
    font-size: 15px !important;
  }

  .reality-conclusion strong {
    font-size: 17px;
  }

  .risk-card,
  .solution-card {
    padding: 28px 22px;
  }

  .risks-voice {
    padding: 22px 22px;
    font-size: 14px;
  }

  .risks-voice strong {
    font-size: 15px;
  }

  .solution-image {
    margin: -28px -22px 10px;
  }

  .risk-image {
    margin: -28px -22px 10px;
  }

  .step-visual {
    margin: -26px -26px 18px;
  }

  .about-solution .section-center h2 {
    font-size: 26px;
    line-height: 1.5;
  }

  .about-solution .section-center h2 .solution-no {
    padding: 0 10px;
    font-size: 26px;
  }

  .bottom-cta h2 {
    font-size: 17px;
    line-height: 1.45;
  }

  .risks-conclusion {
    padding: 20px 22px;
    font-size: 14px;
  }

  .motto-block {
    padding: 0 6px;
  }

  .motto-body p {
    font-size: 15px;
  }

  .motto-signature .signature-name {
    font-size: 22px;
  }

  .header-actions,
  .hero-actions,
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .bottom-cta .cta-actions .btn {
    width: 100%;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-catchcopy {
    width: 100%;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.85;
  }

  .hero-main-visual img {
    border-radius: 0;
    box-shadow: none;
  }

  .hero-strength-badges {
    gap: 8px;
    margin-top: 8px;
  }

  .hero-strength-badges li {
    width: clamp(86px, 27vw, 96px);
    height: clamp(86px, 27vw, 96px);
    padding: 12px 7px 10px;
  }

  .hero-badge-icon {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .hero-badge-kicker {
    font-size: 10px;
  }

  .hero-badge-main {
    font-size: 18px;
  }

  .hero-strength-badges .is-primary .hero-badge-main {
    font-size: 16px;
  }

  .service-card,
  .updates-panel,
  .cta-box {
    padding: 24px;
  }

  .service-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .service-icon-img,
  .service-card h3,
  .service-card p {
    grid-column: auto;
  }

  .service-icon-img {
    grid-row: auto;
  }

  .footer-mobile-actions {
    display: none;
  }

  .subpage-hero {
    padding: 58px 0 24px;
  }

  .overview-table div {
    grid-template-columns: 1fr;
  }

  .overview-table dt,
  .overview-table dd {
    padding: 14px 18px;
  }

  .overview-table dd {
    padding-top: 0;
  }

  .subpage-actions {
    flex-direction: column;
  }

  .legal-card {
    padding: 28px 22px;
  }

  .contact-form {
    border-top: 0;
  }

  .form-row {
    padding: 22px 0;
  }

  .form-label {
    font-size: 15px;
  }

  .form-actions {
    padding-top: 28px;
  }

  .news-list li,
  .note-list li {
    grid-template-columns: 1fr;
  }

  .note-item-content {
    grid-template-columns: 1fr;
  }

  .note-thumb {
    width: 100%;
    height: 86px;
  }

  .archive-card {
    padding: 22px;
  }

  .archive-card .note-thumb {
    height: 118px;
  }

  .news-archive-item {
    padding: 22px;
  }

  .faq-list summary {
    min-height: 66px;
    padding: 16px 20px;
    gap: 12px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .faq-answer {
    gap: 12px;
    padding: 0 20px 20px;
  }

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

@media (max-width: 390px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .model-case-head {
    gap: 10px;
    padding: 18px 18px 16px;
  }

  .model-case-index {
    min-width: 30px;
    height: 26px;
    font-size: 11px;
  }

  .model-case-head h3 {
    font-size: 16px;
    line-height: 1.4;
  }

  .model-case-body {
    padding: 18px;
  }

  .model-case-price-row {
    gap: 8px;
  }

  .model-case-price-cell {
    min-height: 50px;
    padding: 10px 6px;
    gap: 4px;
  }

  .model-case-price-cell-label {
    font-size: 10.5px;
    letter-spacing: 0;
  }

  .model-case-price-cell-value {
    font-size: 18px;
  }

  .model-case-price-cell-main .model-case-price-cell-value {
    font-size: 18px;
  }
}

@media (max-width: 860px) {
  body {
    padding-top: 64px;
    padding-bottom: 82px;
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    min-height: 64px;
    height: 64px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(219, 231, 247, 0.9);
    backdrop-filter: blur(14px);
  }

  .site-header .brand img {
    width: 168px;
  }

  .site-header .global-nav {
    display: none;
  }

  .site-header .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
  }

  .menu-toggle:focus {
    outline: none;
  }

  .menu-toggle:focus-visible {
    outline: 2px solid rgba(22, 136, 255, 0.28);
    outline-offset: 2px;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 999px;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    z-index: 55;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 20px 14px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(219, 231, 247, 0.94);
    box-shadow: 0 18px 32px rgba(16, 50, 93, 0.12);
    backdrop-filter: blur(14px);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    padding: 13px 4px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 900;
    border-bottom: 1px solid rgba(219, 231, 247, 0.76);
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .mobile-fixed-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(219, 231, 247, 0.92);
    box-shadow: 0 -10px 28px rgba(16, 50, 93, 0.12);
    backdrop-filter: blur(14px);
  }

  .mobile-fixed-actions .btn {
    width: 100%;
    min-height: 50px;
    padding: 0 8px;
    font-size: 12px;
    border-radius: 8px;
    white-space: nowrap;
  }

  .mobile-fixed-actions .btn-icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
  }

  .hero-image-section {
    padding: 0;
  }

  .hero-main-visual img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
  }
}
