:root {
  --primary: #1f5e95;
  --primary-dark: #17486f;
  --text: #223043;
  --muted: #627487;
  --line: #dde5ec;
  --bg: #ffffff;
  --sub-bg: #f6f8fb;
  --max: 1100px;
  --fs-h1: clamp(2.3rem, 4vw, 4rem);
  --fs-h2: clamp(1.9rem, 3vw, 2.8rem);
  --fs-h3: clamp(1.08rem, 1.5vw, 1.22rem);
  --fs-body: 1rem;
  --fs-body-lg: 1.05rem;
  --fs-body-sm: 0.92rem;
  --section-pad-y: 108px;
  --section-heading-gap: 52px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: var(--fs-body);
  line-height: 1.8;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.narrow { width: min(calc(100% - 40px), 900px); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: #0f172a;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 50;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(221,229,236,.8);
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .03em;
}
.logo-mark {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.global-nav {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 0.95rem;
}
.global-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  margin-right: 24px;
  transition: color 0.2s ease;
}
.global-nav a:last-child {
  margin-right: 0;
}
.global-nav a:hover { color: var(--primary); }
.global-nav a[aria-current="page"] {
  color: var(--primary);
  font-weight: 700;
}
.header-cta {
  background-color: #2f6fed;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
  margin-left: 16px;
  margin-right: 0 !important;
}
.header-cta:hover {
  background-color: #1f5bd8;
  color: #fff !important;
  transform: translateY(-1px);
}
.header-cta[aria-current="page"] {
  color: #fff !important;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid #dbe4ee;
  background: #fff;
  border-radius: 10px;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #1f5e95;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 13px 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.97rem;
  line-height: 1.2;
  letter-spacing: .01em;
  transition: .25s ease;
}
.btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-sm { min-width: auto; padding: 12px 28px; font-size: .95rem; }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.76);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-bg {
  background: center/cover no-repeat url('../img/hero.webp');
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.06);
  transition: transform .2s linear;
  will-change: transform;
}
.hero-overlay {
  background:
    radial-gradient(circle at 50% 30%, rgba(31, 94, 149, 0.12) 0%, rgba(31, 94, 149, 0) 34%),
    linear-gradient(180deg, rgba(10,27,44,.6) 0%, rgba(10,27,44,.66) 56%, rgba(10,27,44,.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 132px 0 108px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eyebrow,
.section-lead {
  color: #b7d3ec;
  font-size: var(--fs-body-sm);
  font-weight: 700;
  letter-spacing: .08em;
}
.hero .eyebrow {
  margin: 0 0 14px;
}
.hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 3.3vw, 3.7rem);
  line-height: 1.16;
  letter-spacing: .015em;
  text-shadow: 0 8px 24px rgba(0,0,0,.24);
}
.hero-text {
  max-width: 860px;
  margin: 22px auto 0;
  font-size: clamp(1rem, 0.95vw, 1.16rem);
  line-height: 1.95;
  text-shadow: 0 4px 18px rgba(0,0,0,.2);
}
.hero-points,
.cta-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero-points {
  margin-top: 28px;
}
.hero-points li,
.cta-points li {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
}
.hero-points li {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(3px);
}
.cta-points li {
  background: #eef5fb;
  color: var(--primary);
  border: 1px solid #d9e7f3;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-actions .btn {
  min-width: 196px;
  padding: 14px 30px;
  font-size: 1rem;
}

.section { padding: var(--section-pad-y) 0; }
.section-heading {
  text-align: center;
  margin-bottom: var(--section-heading-gap);
}
.section h2 {
  margin: 8px 0 0;
  font-size: var(--fs-h2);
  line-height: 1.35;
}
#issues,
#services,
.reasons,
.flow,
#cases,
.voices,
.related-services,
#contact,
#faq {
  padding: var(--section-pad-y) 0;
}
#issues {
  background: linear-gradient(180deg, #f7f9fc 0%, #f3f7fb 100%);
}
#issues .container,
#services .container,
.flow .container,
#cases .container,
.voices .container { width: min(calc(100% - 56px), 1520px); }
.reasons .narrow { width: min(calc(100% - 56px), 1120px); }
.related-services .container { width: min(calc(100% - 56px), 1200px); }
.issues-subtitle,
.services-subtitle,
.flow-subtitle,
.cases-subtitle,
.voices-subtitle,
.related-subtitle {
  margin: 14px 0 0;
  color: #64748b;
  font-size: clamp(0.96rem, 1.05vw, 1.125rem);
  font-weight: 400;
  line-height: 1.8;
}
.grid { display: grid; gap: 24px; align-items: stretch; }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(19,43,72,.05);
}
.card h3 {
  margin: 0 0 12px;
  font-size: var(--fs-h3);
  line-height: 1.5;
}
.card p { margin: 0; color: var(--muted); font-size: var(--fs-body); }
.alt-bg { background: var(--sub-bg); }
.banner-image {
  margin: 0;
}
.banner-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.scroll-reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }
.section-heading.scroll-reveal { transform: translate3d(0, 18px, 0); }
.banner-image img.scroll-reveal { transform: scale(1.04); transform-origin: center; }
.banner-image img.scroll-reveal.is-visible { transform: scale(1); }

.section-heading--issues {
  position: relative;
  text-align: center;
  margin-bottom: 34px;
  padding-bottom: 18px;
}

.section-heading--issues::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(31,94,149,0.12), rgba(31,94,149,0.72), rgba(31,94,149,0.12));
}

.section-heading--issues h2 {
  margin-bottom: 12px;
}

.section-heading--issues .issues-subtitle {
  margin-top: 0;
  color: #5f6f82;
  line-height: 1.8;
}

#issues .grid.cards-3 {
  gap: 18px;
}

.issue-card {
  position: relative;
  padding: 24px 22px 22px;
  border: 1px solid #dbe5ef;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 8px 22px rgba(20, 43, 73, 0.05);
}

.issue-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: #7fb0de;
}

.issue-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f4f8fc 0%, #eaf2fa 100%);
  border: 1px solid #d6e3ef;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
  color: #1f5e95;
}

.issue-card__icon-svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.issue-card h3 {
  min-height: 0;
  margin: 0 0 10px;
  line-height: 1.6;
  color: #24364b;
}

.issue-card p {
  margin: 0;
  line-height: 1.82;
  color: #5f6f82;
}

@media (hover: hover) and (pointer: fine) {
  .issue-card:hover {
    transform: translateY(-2px);
    border-color: #c9dced;
    box-shadow: 0 12px 28px rgba(20, 43, 73, 0.08);
  }
}


.card.issue-card,
.card.service-card,
.card.reason-card,
#cases .case-card,
.card.quote,
.card.related-card,
.flow-list li {
  border: 1px solid #e8eef5;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(251,253,255,1) 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card.issue-card:hover,
.card.service-card:hover,
.card.reason-card:hover,
#cases .case-card:hover,
.card.quote:hover,
.card.related-card:hover,
.flow-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10);
  border-color: #dbe6f0;
}
.card.issue-card h3,
.card.service-card h3,
.card.reason-card h3,
#cases .case-body h3,
.card.quote h3,
.card.related-card h3,
.flow-list strong {
  margin-bottom: 12px;
  font-size: 1.08rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.45;
}
.card.issue-card p,
.card.service-card p,
.card.reason-card p,
#cases .case-item-text,
.card.quote p,
.card.related-card p {
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.72;
}
.reasons .section-heading,
#cases .section-heading,
.voices .section-heading,
#faq .section-heading,
.related-services .section-heading,
#contact .section-heading { margin-bottom: 54px; }
.section-polish-v1 .reasons,
.section-polish-v1 .flow,
.section-polish-v1 #services,
.section-polish-v1 #cases,
.section-polish-v1 .voices,
.section-polish-v1 .related-services,
.section-polish-v1 #contact,
.section-polish-v1 #issues,
.section-polish-v1 #faq {
  background: linear-gradient(180deg, #f7fafd 0%, #f2f6fb 100%);
}
.section-polish-v1 .section-heading,
.section-polish-v1 .section-heading-accent {
  position: relative;
  padding-bottom: 18px;
}
.section-polish-v1 .section-heading::after,
.section-polish-v1 .section-heading-accent::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 84px;
  height: 3px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(31, 94, 149, 0.16) 0%, rgba(31, 94, 149, 0.74) 48%, rgba(31, 94, 149, 0.16) 100%);
}
.section-polish-v1 .banner-image { 
  position: relative;
  margin: 0;
}
.section-polish-v1 .banner-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0) 20%, rgba(15, 23, 42, 0.08) 100%);
}
.section-polish-v1 .banner-image img {
  position: relative;
  z-index: 0;
  border-top: 1px solid #e1e8f0;
  border-bottom: 1px solid #e1e8f0;
}

.issue-card,
.service-card,
.reason-card,
.quote,
.related-card,
.case-card {
  height: 100%;
}
.issue-card {
  min-height: 100%;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding: 32px 30px 30px;
  overflow: hidden;
  border-color: #e2eaf2;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  isolation: isolate;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 94, 149, 0.84) 0%, rgba(89, 126, 160, 0.48) 100%);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -42px -48px auto;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(31,94,149,.06) 0%, rgba(31,94,149,.03) 42%, rgba(31,94,149,0) 70%);
  border: 0;
  box-shadow: none;
  opacity: 1;
  z-index: -1;
}
.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.service-card-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #f3f8fd;
  border: 1px solid #dce8f3;
  color: #50708d;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-card-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 9px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(243,247,251,.96) 100%);
  border: 1px solid rgba(214, 225, 236, 0.95);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92);
  flex-shrink: 0;
}
.service-card-mark-svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #2b679c;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  min-height: 3.1em;
  margin-bottom: 12px;
  line-height: 1.52;
  letter-spacing: 0.01em;
}
.service-card p {
  margin-top: 0;
  line-height: 1.84;
}

.reason-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 30px 28px;
  min-height: 100%;
}
.reason-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 12px 6px 8px;
  border: 1px solid #d9e4ef;
  border-radius: 999px;
  color: #52667a;
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1;
  background: #f8fbff;
}
.reason-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  background: #3a79af;
}
.reason-card--support .reason-icon { background: #2e8d8b; }
.reason-card--field .reason-icon { background: #2f6f96; }
.reason-card h3 {
  margin: 2px 0 0;
  line-height: 1.55;
}
.reason-card p {
  line-height: 1.82;
}

.flow-list { list-style: none; padding: 0; margin: 0; }
.flow-list-v2 {
  --flow-gap: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: var(--flow-gap);
  max-width: 1480px;
  margin: 0 auto;
  padding: 0;
}
.flow-list-v2 .flow-item {
  position: relative;
  flex: 1 1 220px;
  max-width: 260px;
  min-width: 0;
  min-height: 260px;
  padding: 34px 24px 28px;
  border: 1px solid #e3eaf2;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 16px 30px -28px rgba(15, 23, 42, 0.28);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  overflow: hidden;
}
.flow-item::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 24px;
  width: clamp(90px, 32%, 118px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4f95d2 0%, #1f5e95 100%);
}
.flow-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-top: 18px;
}
.flow-list-v2 .flow-item::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 24px;
  width: clamp(84px, 30%, 108px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4a86b8 0%, #1f5e95 100%);
}
.flow-step-badge {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  position: static;
  top: auto;
  line-height: 1;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  font-size: 0.96rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #2f6d9f 0%, #1f5e95 100%);
  box-shadow: 0 10px 22px rgba(31, 94, 149, 0.14);
  transform: translateY(-1px);
}
.flow-icon-circle {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 56px;
  height: 56px;
  margin: 0;
  padding: 0;
  position: static;
  top: auto;
  border-radius: 50%;
  background: #edf4fb;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.88);
  transform: translateY(-1px);
}
.flow-icon-circle .flow-icon-svg {
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #1f5e95;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.flow-title {
  min-height: calc(1.45em * 2);
  margin: 0 0 10px;
  color: #1f2a3d;
  font-size: clamp(1.01rem, 1.02vw, 1.18rem);
  line-height: 1.45;
  font-weight: 700;
}
.flow-desc {
  margin: 0;
  color: #5d6f82;
  font-size: 0.93rem;
  line-height: 1.72;
  text-wrap: pretty;
}
@media (max-width: 1200px) {
  .flow-list-v2 .flow-item {
    flex-basis: 300px;
    max-width: 340px;
  }
}
@media (max-width: 1024px) {
  .flow-list-v2 {
    --flow-gap: 20px;
  }
  .flow-list-v2 .flow-item {
    flex-basis: min(100%, 340px);
    max-width: 340px;
  }
}
@media (max-width: 768px) {
  .flow-list-v2 .flow-item {
    flex-basis: 100%;
    max-width: 100%;
    min-height: auto;
  }
}

#cases .case-grid { align-items: stretch; gap: 26px; }
#cases .case-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#cases .case-card img {
  width: 100%;
  height: 208px;
  object-fit: cover;
}
#cases .case-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
#cases .case-body h3 {
  margin: 0 0 12px;
  line-height: 1.55;
}
#cases .case-company {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.75;
}
#cases .case-body hr {
  border: 0;
  border-top: 1px solid #eef1f4;
  margin: 16px 0 18px;
}
.card.quote hr,
.footer-divider {
  border: 0;
  border-top: 1px solid #eef1f4;
  margin: 16px 0 18px;
}
.case-definition-list,
.case-definition-list dt,
.case-definition-list dd { margin: 0; }
.case-definition-list {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px 14px;
  margin: 0;
}
.case-definition-list dt {
  color: #1f5e95;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.7;
}
.case-definition-list dd {
  color: #64748b;
  font-size: 0.96rem;
  line-height: 1.78;
}
.case-slider-dots,
.voices-slider-dots {
  display: none;
}
.case-slider-dot,
.voices-slider-dot {
  appearance: none;
  border: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c5d0dc;
  padding: 0;
}
.case-slider-dot.is-active,
.voices-slider-dot.is-active {
  width: 22px;
  background: #3f709f;
}
.quote {
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
}
.quote-role,
.card.quote span {
  font-size: .94rem;
}
.quote-role {
  margin-top: 2px;
  color: #64748b;
}
.card.quote p {
  line-height: 1.9;
}
.card.quote span {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: #1f5e95;
  font-weight: 600;
}

#faq .narrow {
  width: min(calc(100% - 56px), 980px);
}
.faq-list { display: grid; gap: 16px; }
.faq-list details {
  position: relative;
  overflow: hidden;
  border: 1px solid #dce5ef;
  border-radius: 14px;
  background: #fff;
  padding: 0 28px;
  box-shadow: 0 10px 22px -26px rgba(15, 23, 42, 0.35);
}
.faq-list details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  right: 1px;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 94, 149, 0.46) 0%, rgba(31, 94, 149, 0.08) 70%);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: 1.6;
  padding: 24px 46px 24px 0;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.4rem;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.faq-answer p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.9;
}

.related-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 30px 30px 28px;
}
.related-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 700;
}
.related-card span::after {
  content: "→";
  font-size: 0.95rem;
}

#contact { padding-top: calc(var(--section-pad-y) + 4px); padding-bottom: 124px; }
#contact .cta-box {
  text-align: center;
  width: min(calc(100% - 56px), 1040px);
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  border: 1px solid #dce6f0;
  border-radius: 24px;
  padding: 52px 56px 56px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}
#contact h2 {
  margin: 0;
  font-size: clamp(2rem, 2.9vw, 3.25rem);
  line-height: 1.35;
  color: #0f172a;
  font-weight: 700;
}
.cta-lead {
  margin: 18px auto 0;
  max-width: 760px;
  color: #64748b;
  font-size: clamp(1rem, 1.08vw, 1.18rem);
  line-height: 1.82;
}
.cta-points {
  margin-top: 24px;
}
.contact-form {
  margin: 38px auto 0;
  width: min(100%, 860px);
  text-align: left;
  background: #ffffff;
  border: 1px solid #e5ebf1;
  border-radius: 18px;
  padding: 30px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 16px 36px rgba(15, 23, 42, 0.05);
}
.form-note,
.privacy-note {
  margin: 0 0 16px;
  color: #5c6d80;
  font-size: .95rem;
  line-height: 1.8;
}
.privacy-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid #e8eef5;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 18px;
}
.form-field { display: grid; gap: 10px; margin-top: 18px; }
.contact-form-grid .form-field { margin-top: 0; }
.form-field span {
  color: #334155;
  font-size: 0.95rem;
  font-weight: 600;
}
.form-field em { color: #1f5e95; font-style: normal; }
.contact-input,
.contact-textarea {
  width: 100%;
  border: 1px solid #d1d9e3;
  border-radius: 10px;
  padding: 14px 14px;
  color: #223043;
  background: #fff;
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.contact-input {
  min-height: 50px;
}
.contact-textarea { resize: vertical; min-height: 180px; }
.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #1f5e95;
  box-shadow: 0 0 0 4px rgba(31, 94, 149, 0.12);
  background: #fcfeff;
}
.hp-field {
  position: absolute;
  left: -9999px;
}
.contact-submit-btn {
  margin-top: 22px;
  min-width: 220px;
  padding: 16px 34px;
  font-size: 1rem;
  box-shadow: 0 10px 22px rgba(31, 94, 149, 0.18);
}
.contact-submit-btn:disabled { opacity: .7; cursor: not-allowed; }
.form-status {
  margin: 12px 0 0;
  min-height: 1.5em;
  font-size: 0.94rem;
}
.form-status.is-loading { color: #475569; }
.form-status.is-success { color: #14532d; }
.form-status.is-error { color: #b91c1c; }
.site-footer {
  background: #0f1b2b;
  color: #d8e2ec;
  padding-top: 56px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 12px;
}
.footer-company {
  max-width: 420px;
}
.footer-company-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.footer-company-name {
  margin: 14px 0 6px;
  color: #fff;
  font-weight: 700;
}
.footer-company-desc,
.footer-contact p,
.footer-links li,
.footer-links span,
.footer-links a {
  color: #b8c7d6;
  font-size: .95rem;
  line-height: 1.9;
}
.footer-contact {
  font-style: normal;
  min-width: 220px;
  padding-top: 6px;
}
.footer-contact p { margin: 0; }
.footer-links {
  display: grid;
  grid-template-columns: 1.1fr 1fr .8fr;
  gap: 36px;
  padding: 10px 0 40px;
}
.footer-links h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  color: #fff;
}
.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links li + li { margin-top: 6px; }
.copyright {
  margin: 0;
  padding: 16px 20px 22px;
  text-align: center;
  color: #9fb0c2;
  font-size: .88rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

@media (min-width: 1024px) {
  #services {
    padding-top: 100px;
    padding-bottom: 98px;
  }
  #services .section-heading {
    margin-bottom: 44px;
  }
  #services .cards-4 {
    gap: 28px;
  }
  .hero-content {
    max-width: 980px;
  }
  .section-heading {
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: var(--section-heading-gap);
  }
  .card.issue-card,
  .card.service-card,
  .card.reason-card,
  .card.quote,
  .card.related-card,
  #cases .case-card {
    height: 100%;
  }
  .service-card {
    min-height: 292px;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 38px rgba(15, 23, 42, 0.10);
    border-color: #d5e0eb;
  }
  .flow-list-v2 {
    --flow-gap: 18px;
  }
  .flow-list-v2 .flow-item {
    padding: 24px 20px 26px;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .flow-list-v2 {
    --flow-gap: 24px;
    max-width: 980px;
  }
  .flow-list-v2 .flow-item {
    flex-basis: 280px;
    max-width: 292px;
  }
  .flow-title {
    min-height: auto;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .flow-list-v2 {
    --flow-gap: 22px;
    max-width: 760px;
  }
  .flow-list-v2 .flow-item {
    flex-basis: 320px;
    max-width: 340px;
    min-height: 244px;
    padding: 32px 22px 24px;
  }
  .flow-title {
    min-height: auto;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-pad-y: 92px;
    --section-heading-gap: 44px;
  }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  #contact .cta-box {
    padding: 44px 40px 46px;
  }
}

@media (max-width: 768px) {

  .section-heading--issues {
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  #issues .grid.cards-3 {
    gap: 14px;
  }

  .issue-card {
    padding: 20px 16px 18px;
    border-radius: 14px;
  }

  .issue-card::before {
    left: 16px;
    width: 36px;
  }

  .issue-card__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    border-radius: 11px;
  }

  .issue-card__icon-svg {
    width: 16px;
    height: 16px;
  }

  .issue-card h3 {
    margin-bottom: 8px;
    line-height: 1.65;
  }

  .issue-card p {
    font-size: 0.92rem;
    line-height: 1.8;
  }

  :root {
    --section-pad-y: 56px;
    --section-heading-gap: 34px;
    --fs-h2: clamp(1.56rem, 6.4vw, 2rem);
    --fs-h3: clamp(1.02rem, 4.8vw, 1.16rem);
    --fs-body: 0.97rem;
  }
  html,
  body {
    overflow-x: hidden;
  }
  body {
    line-height: 1.9;
  }
  .container,
  .narrow,
  #issues .container,
  #services .container,
  .reasons .narrow,
  .flow .container,
  #cases .container,
  .voices .container,
  .related-services .container,
  #contact .cta-box,
  #faq .narrow {
    width: min(calc(100% - 28px), 100%);
  }
  section,
  .section,
  #issues,
  #services,
  .reasons,
  .flow,
  #cases,
  .voices,
  .related-services,
  #contact,
  #faq {
    padding-top: 48px;
    padding-bottom: 48px;
    min-height: 0;
  }
  .footer-top,
  .footer-links {
    flex-direction: column;
    grid-template-columns: 1fr;
  }
  .header-inner {
    position: relative;
    gap: 20px;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .global-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #dbe5ef;
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(10px);
  }
  .global-nav.is-open {
    display: flex;
  }
  .global-nav a {
    display: block;
    padding: 14px 12px;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-right: 0;
  }
  .header-cta {
    width: 100%;
    text-align: center;
    padding: 12px;
    margin-left: 0;
    margin-top: 8px;
  }
  .global-nav a:hover {
    background: #f4f8fc;
  }
  .header-cta:hover {
    background-color: #1f5bd8;
  }
  .hero {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    align-items: stretch;
  }
  .hero-bg {
    transform: none;
    background-position: 62% center;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8,22,36,.54) 0%, rgba(8,22,36,.68) 36%, rgba(8,22,36,.8) 100%),
      radial-gradient(circle at 50% 14%, rgba(31, 94, 149, 0.18) 0%, rgba(31, 94, 149, 0) 42%);
  }
  .hero-content {
    max-width: 100%;
    padding: 60px 0;
    align-items: stretch;
    text-align: left;
    row-gap: 0;
  }
  .hero .eyebrow {
    margin-bottom: 22px;
    font-size: 0.77rem;
    line-height: 1.8;
    letter-spacing: 0.12em;
  }
  .hero h1 {
    max-width: 9.5em;
    margin-bottom: 16px;
    font-size: clamp(1.86rem, 7.6vw, 2.4rem);
    line-height: 1.4;
    letter-spacing: 0.015em;
    text-wrap: balance;
    text-shadow: 0 10px 22px rgba(0,0,0,.18);
  }
  .hero-text {
    max-width: 32rem;
    margin: 0 0 16px;
    font-size: 0.98rem;
    line-height: 1.8;
    text-shadow: 0 6px 16px rgba(0,0,0,.14);
  }
  .hero-text br {
    display: none;
  }
  .hero-points {
    width: 100%;
    margin: 0 0 20px;
    gap: 14px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
  }
  .hero-points li {
    width: 100%;
    min-height: 0;
    padding: 14px 16px;
    font-size: 0.94rem;
    line-height: 1.7;
    text-align: left;
  }
  .hero-actions {
    width: 100%;
    margin-top: 0;
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 16px 20px;
    font-size: 0.98rem;
  }
  .section-heading {
    margin-bottom: 34px;
    padding-bottom: 16px;
  }
  .section-heading,
  .reasons .section-heading,
  #cases .section-heading,
  .voices .section-heading,
  #faq .section-heading,
  .related-services .section-heading,
  #contact .section-heading {
    margin-bottom: 34px;
  }
  .section h2 {
    margin-top: 0;
    font-size: clamp(1.5rem, 6vw, 1.92rem);
    line-height: 1.5;
    text-wrap: balance;
  }
  .issues-subtitle,
  .services-subtitle,
  .flow-subtitle,
  .cases-subtitle,
  .voices-subtitle,
  .related-subtitle,
  .cta-lead {
    margin-top: 10px;
    font-size: 0.96rem;
    line-height: 1.9;
  }
  .grid {
    gap: 16px;
    align-items: start;
  }
  .cards-2,
  .cards-3,
  .cards-4,
  .contact-form-grid,
  .case-definition-list {
    grid-template-columns: 1fr;
  }
  .card,
  .issue-card,
  .service-card,
  .reason-card,
  .quote,
  .related-card,
  .case-card {
    height: auto;
    min-height: 0;
  }
  .card {
    padding: 24px 20px;
    border-radius: 18px;
  }
  .card h3 {
    margin-bottom: 14px;
    line-height: 1.62;
  }
  .card p {
    line-height: 1.9;
  }
  #issues .grid,
  #services .grid,
  .reasons .grid,
  #cases .case-grid,
  .voices .voices-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    overflow: visible;
    transform: none;
  }
  #issues .card,
  #services .card,
  .reasons .card,
  #cases .case-card,
  .voices .quote {
    margin: 0;
    transform: none;
  }
  .issue-card {
    height: auto;
    margin-bottom: 0;
    overflow: hidden;
  }
  .issue-card h3 {
    min-height: 0;
    font-size: 1.05rem;
  }
  .issue-card p {
    font-size: 0.92rem;
    line-height: 1.8;
  }
  .service-card {
    padding: 20px;
    overflow: hidden;
  }
  .service-card::before {
    left: 20px;
    width: 58px;
  }
  .service-card::after {
    width: 126px;
    height: 126px;
    inset: auto -28px -40px auto;
  }
  .service-card-head {
    align-items: center;
    margin-bottom: 12px;
    gap: 14px;
  }
  .service-card-label {
    min-height: 30px;
    padding: 6px 11px;
  }
  .service-card-mark {
    width: 42px;
    height: 42px;
  }
  .service-card h3 {
    min-height: 0;
    margin-bottom: 12px;
    font-size: 1.06rem;
    line-height: 1.4;
  }
  .service-card p {
    font-size: 0.96rem;
    line-height: 1.75;
  }
  .reason-card {
    gap: 14px;
    padding: 20px;
  }
  .reason-tag {
    line-height: 1.4;
  }
  .reason-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    line-height: 1.68;
  }
  .reason-card p {
    font-size: 0.97rem;
    line-height: 1.75;
  }
  .banner-image {
    margin: 32px 0;
    min-height: 0;
  }
  .banner-image img {
    height: 220px;
    margin: 0;
  }
  #cases .case-grid,
  .voices .voices-grid {
    gap: 18px;
  }
  #cases .case-card img {
    height: 188px;
  }
  #cases .case-body {
    padding: 18px 16px 18px;
  }
  #cases .case-body h3 {
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.6;
  }
  #cases .case-company,
  .case-definition-list dt,
  .case-definition-list dd {
    line-height: 1.85;
  }
  .case-definition-list {
    gap: 8px;
  }
  .quote {
    padding: 24px 20px;
  }
  .quote-role {
    margin-top: 4px;
    line-height: 1.8;
  }
  .card.quote p {
    font-size: 0.98rem;
    line-height: 1.96;
  }
  .card.quote span {
    padding-top: 16px;
    line-height: 1.75;
  }
  .case-slider-dots,
  .voices-slider-dots {
    display: none;
  }
  .flow-list-v2 {
    --flow-gap: 18px;
    max-width: 100%;
  }
  .flow-list-v2 .flow-item {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    height: auto;
    padding: 20px;
    border-radius: 18px;
  }
  .flow-list-v2 .flow-item::before {
    left: 20px;
    width: clamp(78px, 32%, 100px);
  }
  .flow-card-top {
    margin-bottom: 0;
    padding-top: 20px;
  }
  .flow-step-badge {
    width: 40px;
    height: 40px;
    font-size: 0.96rem;
  }
  .flow-icon-circle {
    width: 52px;
    height: 52px;
  }
  .flow-icon-svg {
    width: 22px;
    height: 22px;
  }
  .flow-desc {
    font-size: 0.96rem;
    line-height: 1.75;
  }
  .flow-title {
    min-height: auto;
    margin-top: 12px;
    margin-bottom: 10px;
    line-height: 1.4;
  }
  #faq .faq-list {
    gap: 14px;
  }
  .faq-list details {
    padding: 0 18px;
    border-radius: 16px;
  }
  .faq-list summary {
    padding: 20px 42px 20px 0;
    font-size: 1rem;
    line-height: 1.75;
  }
  .faq-list summary::after {
    right: 0;
    font-size: 1.3rem;
  }
  .faq-answer p {
    margin-bottom: 22px;
    font-size: 0.97rem;
    line-height: 1.9;
  }
  #contact .cta-box {
    padding: 38px 20px 40px;
    border-radius: 18px;
  }
  #contact {
    padding-top: 64px;
    padding-bottom: 72px;
  }
  #contact h2 {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    line-height: 1.45;
  }
  .cta-points {
    gap: 10px;
  }
  .cta-points li {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    text-align: center;
    line-height: 1.45;
  }
  .contact-form {
    margin-top: 30px;
    padding: 24px 18px;
  }
  .form-note,
  .privacy-note,
  .form-status {
    line-height: 1.85;
  }
  .form-note {
    margin-bottom: 18px;
  }
  .privacy-note {
    margin-top: 20px;
    padding-top: 18px;
  }
  .form-field {
    gap: 9px;
    margin-top: 16px;
  }
  .contact-input,
  .contact-textarea {
    font-size: 16px;
    padding: 15px 14px;
  }
  .contact-input {
    min-height: 52px;
  }
  .contact-textarea {
    min-height: 190px;
  }
  .contact-submit-btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    margin-top: 24px;
  }
  .site-footer {
    padding-top: 48px;
  }
  .footer-top {
    gap: 26px;
    padding-bottom: 18px;
  }
  .footer-company-name {
    margin: 16px 0 8px;
  }
  .footer-company-desc,
  .footer-contact p,
  .footer-links li,
  .footer-links span,
  .footer-links a {
    line-height: 1.95;
  }
  .footer-links {
    gap: 24px;
    padding: 18px 0 32px;
  }
  .footer-links h3 {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .contact-page .faq-section .container.narrow {
    width: min(calc(100% - 24px), 100%);
  }

  :root {
    --section-pad-y: 56px;
  }
  .container,
  .narrow,
  #issues .container,
  #services .container,
  .reasons .narrow,
  .flow .container,
  #cases .container,
  .voices .container,
  .related-services .container,
  #contact .cta-box,
  #faq .narrow {
    width: min(calc(100% - 24px), 100%);
  }
  .hero-content {
    padding: 108px 0 84px;
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.72rem, 8vw, 2.12rem);
    line-height: 1.46;
  }
  .hero-text {
    font-size: 0.95rem;
    line-height: 2;
  }
  .hero-points {
    margin-top: 30px;
  }
  .hero-points li {
    padding: 14px 14px;
  }
  .hero-actions {
    margin-top: 34px;
  }
  .section,
  #issues,
  #services,
  .reasons,
  .flow,
  #cases,
  .voices,
  .related-services,
  #contact,
  #faq {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .section-heading,
  .reasons .section-heading,
  #cases .section-heading,
  .voices .section-heading,
  #faq .section-heading,
  .related-services .section-heading,
  #contact .section-heading {
    margin-bottom: 28px;
  }
  .section h2 {
    font-size: clamp(1.42rem, 6.8vw, 1.78rem);
    line-height: 1.48;
  }
  .card,
  .issue-card,
  .service-card,
  .reason-card,
  .quote {
    padding-inline: 16px;
  }
  .banner-image img {
    height: 196px;
  }
  #cases .case-card img {
    height: 176px;
  }
  #cases .case-body {
    padding: 18px 16px 18px;
  }
  .quote {
    padding-block: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}


.terms-page {
  background: #f6f8fb;
}
.terms-section {
  padding-top: 88px;
  padding-bottom: 112px;
}
.terms-container {
  width: min(calc(100% - 40px), 880px);
}
.terms-intro,
.terms-block {
  background: #fff;
  border: 1px solid #e3eaf1;
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 12px 34px rgba(19, 43, 72, 0.05);
}
.terms-intro {
  margin-bottom: 28px;
}
.terms-intro h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.3;
}
.terms-intro p,
.terms-block p,
.terms-block li {
  margin: 0;
  color: #334155;
  line-height: 1.8;
}
.terms-block + .terms-block {
  margin-top: 20px;
}
.terms-block h2 {
  margin: 0 0 16px;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  line-height: 1.5;
}
.terms-block ol,
.terms-block ul {
  margin: 0;
  padding-left: 1.4em;
}
.terms-block li + li {
  margin-top: 10px;
}

.legal-page {
  --legal-section-top: 88px;
  --legal-section-bottom: 112px;
  --legal-card-padding: 32px 36px;
  --legal-card-radius: 20px;
  --legal-card-shadow: 0 12px 34px rgba(19, 43, 72, 0.05);
  --legal-intro-gap: 28px;
  --legal-title-gap: 18px;
  --legal-card-gap: 20px;
  --legal-heading-gap: 16px;
  --legal-copy-size: 1rem;
  --legal-copy-line: 1.8;
  --legal-paragraph-gap: 14px;
  --legal-list-indent: 1.4em;
  --legal-list-gap: 10px;
  --legal-end-gap: 28px;
}

.legal-page .terms-section {
  padding-top: var(--legal-section-top);
  padding-bottom: var(--legal-section-bottom);
}

.legal-page .legal-intro,
.legal-page .legal-card {
  border-radius: var(--legal-card-radius);
  padding: var(--legal-card-padding);
  box-shadow: var(--legal-card-shadow);
}

.legal-page .legal-intro {
  margin-bottom: var(--legal-intro-gap);
}

.legal-page .legal-intro h1 {
  margin-bottom: var(--legal-title-gap);
}

.legal-page .legal-card + .legal-card {
  margin-top: var(--legal-card-gap);
}

.legal-page .legal-card h2 {
  margin-bottom: var(--legal-heading-gap);
}

.legal-page .legal-intro p,
.legal-page .legal-card p,
.legal-page .legal-card li {
  font-size: var(--legal-copy-size);
  line-height: var(--legal-copy-line);
}

.legal-page .legal-card p + p,
.legal-page .legal-card p + ol,
.legal-page .legal-card p + ul,
.legal-page .legal-card ol + p,
.legal-page .legal-card ul + p,
.legal-page .legal-card ol + ol,
.legal-page .legal-card ul + ul,
.legal-page .legal-card ol + ul,
.legal-page .legal-card ul + ol {
  margin-top: var(--legal-paragraph-gap);
}

.legal-page .legal-card ol,
.legal-page .legal-card ul {
  padding-left: var(--legal-list-indent);
}

.legal-page .legal-card li + li {
  margin-top: var(--legal-list-gap);
}

.legal-page .legal-card:last-child {
  margin-bottom: var(--legal-end-gap);
}

@media (max-width: 767px) {
  .terms-container {
    width: min(calc(100% - 32px), 680px);
  }
  .legal-page {
    --legal-section-top: 64px;
    --legal-section-bottom: 120px;
    --legal-card-padding: 20px;
    --legal-card-radius: 16px;
    --legal-card-shadow: 0 10px 28px rgba(19, 43, 72, 0.045);
    --legal-intro-gap: 18px;
    --legal-title-gap: 18px;
    --legal-card-gap: 17px;
    --legal-heading-gap: 18px;
    --legal-copy-size: 0.98rem;
    --legal-copy-line: 1.72;
    --legal-paragraph-gap: 14px;
    --legal-list-indent: 18px;
    --legal-list-gap: 10px;
    --legal-end-gap: 40px;
  }
  .legal-page .terms-container {
    width: min(calc(100% - 32px), 680px);
  }
  .legal-page .legal-intro h1 {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    line-height: 1.35;
  }
  .legal-page .legal-card h2,
  .legal-page .legal-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: var(--legal-heading-gap);
  }
  .legal-page .legal-card li {
    margin-bottom: var(--legal-list-gap);
  }
  .legal-page .legal-card li:last-child {
    margin-bottom: 0;
  }
  .legal-page .legal-card li > ol,
  .legal-page .legal-card li > ul {
    margin-top: 12px;
    padding-left: 18px;
  }
  .legal-page .legal-card[aria-labelledby="supplementary-provisions"] {
    margin-top: 36px;
  }
  .privacy-page .privacy-contact-block {
    margin-top: 40px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .privacy-page .privacy-contact-address {
    line-height: 1.8;
  }
}

.company-page {
  background: linear-gradient(180deg, #f7fafd 0%, #f2f6fb 100%);
}
.company-shell {
  width: min(100%, 960px);
}
.company-hero {
  padding-top: 138px;
  padding-bottom: 72px;
}
.company-hero .eyebrow {
  margin: 0 0 18px;
  color: #5f81a3;
}
.company-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.2;
  color: #0f172a;
}
.company-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: #5f7083;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.95;
}
.company-message,
.company-profile,
.company-cta {
  padding-top: 44px;
}
.section-heading-left {
  text-align: left;
  margin-inline: 0;
}
.section-heading-left::after,
.section-heading-left.section-heading-accent::after {
  left: 0;
  transform: none;
}
.company-page .section-heading-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 50px;
  padding-bottom: 0;
}
.company-page .section-heading-left::after,
.company-page .section-heading-left.section-heading-accent::after {
  position: static;
  width: 72px;
  height: 4px;
  margin: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 94, 149, 0.9) 0%, rgba(31, 94, 149, 0.58) 100%);
  transform: translateX(0%);
}
.company-page .section-heading-left h2 {
  margin: 0;
}
.company-card {
  border: 1px solid #e2eaf2;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(249,252,255,1) 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}
.message-card,
.profile-card,
.company-cta-card {
  padding: 40px 42px;
}
.message-kicker {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.message-card h3,
.company-cta-card h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.5;
  color: #0f172a;
}
.message-card p,
.company-cta-card p {
  margin: 20px 0 0;
  color: #5e7186;
  line-height: 2;
}
.message-signature {
  margin-top: 28px;
  color: #203246;
  font-weight: 700;
}
.company-definition-list {
  margin: 0;
}
.company-definition-list > div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #e5edf5;
}
.company-definition-list > div:first-child {
  padding-top: 0;
}
.company-definition-list > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.company-definition-list dt {
  color: #38516a;
  font-weight: 700;
}
.company-definition-list dd {
  margin: 0;
  color: #5e7186;
}
.company-service-list {
  margin: 0;
  padding-left: 1.2em;
}
.company-service-list li + li {
  margin-top: 8px;
}
.company-cta {
  padding-bottom: 124px;
}
.company-cta-card {
  text-align: center;
}
.company-cta-card p {
  max-width: 680px;
  margin-inline: auto;
}
.company-cta-card .btn {
  margin-top: 28px;
}

@media (max-width: 768px) {
  .company-shell {
    width: 100%;
  }
  .company-hero {
    padding-top: 94px;
    padding-bottom: 38px;
  }
  .company-hero .eyebrow {
    margin-bottom: 10px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }
  .company-hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
    line-height: 1.24;
  }
  .company-lead {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.82;
  }
  .company-message,
  .company-profile,
  .company-cta {
    padding-top: 26px;
  }
  .company-page .section-heading-left {
    gap: 8px;
    margin-bottom: 22px;
  }
  .company-page .section-heading-left::after,
  .company-page .section-heading-left.section-heading-accent::after {
    width: 48px;
    height: 3px;
  }
  .company-page .section-heading-left h2 {
    font-size: clamp(1.32rem, 5.8vw, 1.6rem);
    line-height: 1.38;
  }
  .message-card,
  .profile-card,
  .company-cta-card {
    padding: 32px 24px;
    border-radius: 20px;
  }
  .message-kicker {
    margin-bottom: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }
  .message-card h3,
  .company-cta-card h2 {
    font-size: clamp(1.3rem, 6.4vw, 1.72rem);
    line-height: 1.46;
    text-wrap: balance;
  }
  .message-card p,
  .company-cta-card p {
    margin-top: 18px;
    font-size: 0.96rem;
    line-height: 2.04;
  }
  .message-card p + p {
    margin-top: 18px;
  }
  .message-signature {
    margin-top: 34px;
    line-height: 1.82;
  }
  .company-definition-list > div {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 22px 0;
  }
  .company-definition-list dt {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 2px;
  }
  .company-definition-list dd {
    line-height: 1.96;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .company-service-list {
    padding-left: 1.15em;
  }
  .company-service-list li {
    line-height: 1.9;
  }
  .company-service-list li + li {
    margin-top: 12px;
  }
  .company-cta {
    padding-bottom: 84px;
  }
  .company-cta-card {
    text-align: left;
    padding-top: 30px;
    padding-bottom: 34px;
  }
  .company-cta-card p {
    margin-bottom: 30px;
    margin-inline: 0;
  }
  .company-cta-card .btn {
    width: 100%;
    min-height: 52px;
    margin-top: 2px;
    padding: 15px 24px;
    justify-content: center;
  }
  .company-page .site-footer {
    padding-top: 54px;
  }
  .company-page .footer-top {
    gap: 30px;
    padding-bottom: 22px;
  }
  .company-page .footer-company-name {
    margin: 18px 0 10px;
  }
  .company-page .footer-company-desc,
  .company-page .footer-contact p,
  .company-page .footer-links li,
  .company-page .footer-links span,
  .company-page .footer-links a {
    line-height: 2.08;
  }
  .company-page .footer-contact {
    padding-top: 0;
  }
  .company-page .footer-links {
    gap: 30px;
    padding: 24px 0 38px;
  }
  .company-page .footer-links > div + div {
    margin-top: 6px;
  }
  .company-page .footer-links h3 {
    margin-bottom: 14px;
  }
  .company-page .footer-links li + li {
    margin-top: 10px;
  }
  .company-page .copyright {
    padding-top: 22px;
  }
}

@media (max-width: 480px) {
  .company-hero {
    padding-top: 90px;
    padding-bottom: 34px;
  }
  .company-hero .eyebrow {
    margin-bottom: 8px;
  }
  .company-lead {
    margin-top: 12px;
    line-height: 1.78;
  }
  .company-message,
  .company-profile,
  .company-cta {
    padding-top: 24px;
  }
  .company-page .section-heading-left {
    margin-bottom: 20px;
  }
  .message-card,
  .profile-card,
  .company-cta-card {
    padding: 28px 20px;
  }
  .message-card p,
  .company-cta-card p,
  .company-definition-list dd {
    font-size: 0.95rem;
  }
  .message-signature {
    margin-top: 30px;
  }
  .company-definition-list > div {
    gap: 10px;
    padding: 20px 0;
  }
  .company-service-list li + li {
    margin-top: 10px;
  }
  .company-cta-card {
    padding-top: 28px;
    padding-bottom: 32px;
  }
  .company-cta-card p {
    margin-bottom: 28px;
  }
  .company-page .footer-links {
    gap: 28px;
    padding-bottom: 34px;
  }
  .company-page .footer-links h3 {
    margin-bottom: 12px;
  }
}

.contact-page {
  --color-primary: #1f5f99;
  --color-primary-dark: #174c7b;
  --color-primary-soft: #eaf3fb;
  --color-text: #24364b;
  --color-text-muted: #5f6f82;
  --color-border: #d9e3ee;
  --color-bg: #f7f9fc;
  --color-white: #ffffff;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --shadow-card: 0 8px 24px rgba(20, 43, 73, 0.06);
  --shadow-button: 0 8px 18px rgba(31, 95, 153, 0.18);
  --container-width: 1120px;
  --content-width: 860px;
  --lh-base: 1.75;
  --lh-tight: 1.6;
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 28%);
}
.contact-page .site-header {
  background: rgba(255,255,255,.94);
}
.contact-page .container,
.contact-page .container-narrow {
  margin: 0 auto;
}
.contact-page .container {
  width: min(calc(100% - 48px), var(--container-width));
}
.contact-page .container-narrow {
  width: min(calc(100% - 48px), var(--content-width));
}
.contact-section {
  padding: 88px 0;
}
.contact-page-heading {
  margin-bottom: 0;
}
.contact-page .section-heading {
  text-align: center;
}
.section-heading__title {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.35;
  color: var(--color-text);
}
.section-heading__lead {
  max-width: 720px;
  margin: 14px auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}
.section-heading__divider {
  width: 64px;
  height: 3px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31,95,153,0.15), rgba(31,95,153,0.7), rgba(31,95,153,0.15));
}
.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 28px 0 0;
}
.contact-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid #dbe7f2;
  border-radius: 999px;
  background: #f3f8fd;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}
.contact-form-card {
  margin-top: 28px;
  background: var(--color-white);
  border: 1px solid #e4ebf3;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px;
}
.contact-page .contact-form {
  margin: 0;
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.contact-form-card__intro {
  margin: 0 0 28px;
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--color-text-muted);
}
.contact-page .contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
}
.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form-field--full {
  grid-column: 1 / -1;
}
.contact-form-label {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
}
.contact-page .contact-form-label em {
  color: var(--color-primary);
  font-style: normal;
}
.contact-form-note {
  margin: 8px 0 0;
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}
.contact-form-input,
.contact-form-textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  appearance: none;
}
.contact-form-input {
  min-height: 52px;
  padding: 14px 16px;
}
.contact-form-textarea {
  min-height: 200px;
  padding: 16px;
  resize: vertical;
}
.contact-form-input:focus,
.contact-form-textarea:focus {
  outline: none;
  border-color: #8fb6da;
  box-shadow: 0 0 0 4px rgba(31, 95, 153, 0.12);
}
.contact-page .privacy-note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid #e8eef5;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--color-text-muted);
}
.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 52px;
  margin-top: 24px;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(180deg, #2a6daa 0%, #1f5f99 100%);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-button);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(31, 95, 153, 0.22);
}
.contact-submit:active {
  transform: translateY(0);
}
.contact-page .form-status {
  margin: 14px 0 0;
}
.contact-cta-section {
  padding-bottom: 72px;
}
.contact-cta-card {
  padding: 32px 28px;
  border: 1px solid #dbe6f0;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbfe 0%, #f2f7fc 100%);
  text-align: center;
}
.contact-cta-card__title {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.35;
  color: var(--color-text);
}
.contact-cta-card__text {
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text-muted);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 12px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.contact-page .site-footer {
  padding-top: 56px;
}

@media (max-width: 1024px) {
  .contact-section {
    padding: 72px 0;
  }
}

@media (max-width: 767px) {
  .contact-page .container,
  .contact-page .container-narrow {
    width: min(calc(100% - 32px), 100%);
  }
  .contact-section {
    padding: 56px 0;
  }
  .contact-page .section-heading {
    margin-bottom: 28px;
  }
  .contact-badges {
    gap: 10px;
    margin-top: 24px;
  }
  .contact-badge {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 0.82rem;
  }
  .contact-form-card {
    margin-top: 24px;
    padding: 22px 16px 20px;
    border-radius: 16px;
  }
  .contact-form-card__intro {
    margin-bottom: 22px;
    font-size: 0.92rem;
    line-height: 1.85;
  }
  .contact-page .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .contact-form-input {
    min-height: 50px;
    padding: 13px 14px;
  }
  .contact-form-textarea {
    min-height: 180px;
    padding: 14px;
  }
  .contact-submit {
    width: 100%;
    min-width: 0;
    min-height: 50px;
  }
  .contact-page .faq-list {
    gap: 12px;
    margin-top: 26px;
  }
  .faq-question {
    padding: 18px 16px;
    font-size: 0.95rem;
    line-height: 1.75;
  }
  .faq-answer {
    padding: 0 16px 18px;
    font-size: 0.92rem;
    line-height: 1.85;
  }
  .contact-cta-section {
    padding-bottom: 56px;
  }
  .contact-cta-card {
    padding: 24px 16px;
    border-radius: 16px;
  }
  .contact-cta-card__text {
    margin-bottom: 18px;
    font-size: 0.94rem;
  }
  .btn-secondary {
    width: 100%;
  }
  .contact-page .site-footer {
    padding-top: 44px;
  }
}


.cases-page {
  background: linear-gradient(180deg, #f7fafd 0%, #f2f6fb 100%);
}
.cases-page .site-header {
  background: rgba(255,255,255,.94);
}
.cases-page .global-nav a[aria-current="page"] {
  color: var(--primary);
}
.cases-page .page-hero {
  padding: 92px 0 36px;
}
.cases-page .page-hero-card {
  padding: 42px 44px;
}
.cases-page .cases-page-section {
  padding-top: 36px;
}
.cases-page .cases-page-heading {
  margin-bottom: 32px;
}
.cases-page .cases-page-heading,
.cases-page .cases-page-note-inner {
  text-align: left;
}
.cases-page .cases-page-heading::after,
.cases-page .cases-page-note-inner::after {
  left: 0;
  transform: none;
}
.cases-page .cases-intro-card,
.cases-page .cases-page-note-card {
  border: 1px solid #e1e8f0;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(248,251,254,.98) 100%);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}
.cases-page .cases-intro-card {
  padding: 28px 30px;
  margin-bottom: 28px;
}
.cases-page .cases-intro-card p,
.cases-page .cases-page-note-card p {
  margin: 0;
  color: #5c6f82;
}
.cases-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.cases-page .case-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 100%;
  padding: 30px;
}
.cases-page .case-card.is-empty {
  justify-content: space-between;
}
.cases-page .case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cases-page .case-meta-item {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid #d8e4ef;
  background: #f7fbff;
  color: #4c6985;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.cases-page .case-title {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.55;
  color: #0f172a;
}
.cases-page .case-summary {
  margin: 0;
  color: #5d7084;
}
.cases-page .case-body {
  display: grid;
  gap: 16px;
}
.cases-page .case-section {
  padding-top: 16px;
  border-top: 1px solid #e6edf4;
}
.cases-page .case-section-label {
  display: block;
  margin-bottom: 6px;
  color: #2f608f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.cases-page .case-section-text {
  margin: 0;
  color: #627487;
}
.cases-page .case-card-footer {
  margin-top: auto;
  padding-top: 4px;
}
.cases-page .case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1f5e95;
  font-weight: 700;
  font-size: 0.95rem;
}
.cases-page .case-link::after {
  content: '→';
  font-size: 0.95em;
}
.cases-page .case-link[aria-disabled="true"] {
  color: #90a0b1;
  pointer-events: none;
}
.cases-page-note {
  padding-top: 28px;
}
.cases-page-note-card {
  padding: 34px 36px;
}
.cases-page-note-card p + p {
  margin-top: 10px;
}
.cases-page-note-actions {
  margin-top: 22px;
}
@media (max-width: 960px) {
  .cases-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .cases-page .page-hero {
    padding: 72px 0 24px;
  }
  .cases-page .page-hero-card,
  .cases-page .cases-intro-card,
  .cases-page .cases-page-note-card,
  .cases-page .case-card {
    padding: 24px;
  }
}

.contact-page .contact-page-heading {
  position: static;
  padding-bottom: 0;
}

.contact-page .contact-page-heading::after {
  content: none !important;
}

.contact-page .section-heading__divider {
  display: block;
}

.contact-page .container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.contact-page .container-narrow {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.contact-page .contact-form-section .section-heading,
.contact-page .faq-section .section-heading {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

.contact-page .faq-section .container.narrow {
  width: min(calc(100% - 56px), 980px);
  max-width: none;
}

.contact-page .faq-section .section-heading {
  position: relative;
  max-width: 720px;
  padding-bottom: 18px;
}

.contact-page .faq-section .section-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 84px;
  height: 3px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(31, 94, 149, 0.16) 0%, rgba(31, 94, 149, 0.74) 48%, rgba(31, 94, 149, 0.16) 100%);
}

.contact-page .faq-section .section-heading .section-heading__lead {
  margin-top: 14px;
}

.contact-page .contact-section {
  padding: 76px 0;
}

.contact-page .contact-form-section {
  padding-top: 16px;
}

.contact-page .contact-form-card {
  max-width: 820px;
  margin: 36px auto 0;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
  padding: 42px 42px 38px;
  border: 1px solid #d4e1ed;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(247,250,253,0.98) 100%);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.09);
}

.contact-page .contact-form {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-page .contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 22px;
  align-items: start;
}

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

.contact-page .contact-form-field--full {
  grid-column: 1 / -1;
}

.contact-page .contact-form-input,
.contact-page .contact-form-textarea,
.contact-page .contact-input,
.contact-page .contact-textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-page .contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: center;
  align-items: center;
  max-width: 820px;
  margin: 0 auto 4px;
}

.contact-page .contact-badge {
  min-height: 42px;
  padding: 9px 15px;
  white-space: nowrap;
  border-radius: 999px;
  border-color: #d6e3ef;
  background: #f4f8fc;
  color: #2a5f92;
  box-shadow: 0 6px 14px rgba(31, 95, 153, 0.06);
}

.contact-page .contact-form-card__intro {
  margin-bottom: 34px;
  font-size: 0.98rem;
  line-height: 1.95;
}

.contact-page .contact-form-label {
  line-height: 1.65;
}

.contact-page .contact-form-note,
.contact-page .privacy-note,
.contact-page .section-heading__lead,
.contact-page .contact-cta-card__text {
  text-wrap: pretty;
}

.contact-page .contact-form-input,
.contact-page .contact-input {
  min-height: 54px;
  padding: 14px 16px;
}

.contact-page .contact-form-textarea,
.contact-page .contact-textarea {
  min-height: 220px;
  padding: 16px;
}

.contact-page .privacy-note {
  margin-top: 28px;
  padding-top: 18px;
  line-height: 1.9;
}

.contact-page .btn {
  min-width: 0;
}

.contact-page .contact-submit {
  min-width: 180px;
  min-height: 52px;
  margin-top: 18px;
  border-radius: 12px;
}

.contact-page .contact-submit.btn {
  background: linear-gradient(180deg, #2a6daa 0%, #1f5f99 100%);
  border: none;
  color: #fff;
}

.contact-page .contact-submit.btn:hover {
  background: linear-gradient(180deg, #2f78bb 0%, #245f94 100%);
}

.contact-page .btn-secondary {
  min-width: 140px;
  min-height: 48px;
  border: none;
}

.contact-page .contact-cta-section {
  padding-top: 68px;
  padding-bottom: 96px;
  background: linear-gradient(180deg, rgba(243,248,253,0) 0%, rgba(243,248,253,0.9) 24%, rgba(236,244,251,0.98) 100%);
}

.contact-page .contact-cta-card {
  width: 100%;
  box-sizing: border-box;
  max-width: 820px;
  margin: 0 auto;
  padding: 44px 38px;
  border: 1px solid #d3e1ec;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}

.contact-page .contact-cta-card__title {
  margin-bottom: 14px;
}

.contact-page .contact-cta-card__text {
  max-width: 620px;
  margin: 0 auto 26px;
  line-height: 1.9;
}

@media (max-width: 767px) {
  .contact-page .container,
  .contact-page .container-narrow {
    width: 100%;
    max-width: none;
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-page .faq-section .container.narrow {
    width: min(calc(100% - 28px), 100%);
  }

  .contact-page .contact-form-section {
    padding-top: 8px;
  }

  .contact-page .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-page .contact-form-field--full {
    grid-column: auto;
  }

  .contact-page .contact-badges {
    justify-content: flex-start;
    gap: 8px 10px;
    margin-bottom: 2px;
  }

  .contact-page .contact-badge {
    white-space: normal;
    min-height: 0;
    padding: 8px 11px;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .contact-page .contact-submit {
    width: 100%;
    min-width: 0;
    margin-top: 22px;
  }

  .contact-page .btn-secondary {
    width: 100%;
  }

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

  .contact-page .contact-form-card {
    margin-top: 26px;
    padding: 24px 18px 24px;
    border-radius: 18px;
  }

  .contact-page .contact-form-card__intro {
    margin-bottom: 26px;
    font-size: 0.94rem;
    line-height: 1.9;
  }

  .contact-page .contact-form-label {
    font-size: 0.93rem;
  }

  .contact-page .contact-form-input,
  .contact-page .contact-input {
    min-height: 50px;
    padding: 13px 14px;
  }

  .contact-page .contact-form-textarea,
  .contact-page .contact-textarea {
    min-height: 190px;
    padding: 14px;
  }

  .contact-page .contact-form-note,
  .contact-page .privacy-note {
    font-size: 0.9rem;
    line-height: 1.85;
  }

  .contact-page .faq-list {
    max-width: none;
    margin-top: 26px;
    gap: 14px;
  }

  .contact-page .faq-list details {
    padding: 0 18px;
    border-radius: 16px;
  }

  .contact-page .faq-list summary {
    padding: 20px 42px 20px 0;
    font-size: 1rem;
    line-height: 1.75;
  }

  .contact-page .faq-list summary::after {
    right: 0;
    font-size: 1.3rem;
  }

  .contact-page .faq-answer p {
    margin-bottom: 22px;
    font-size: 0.97rem;
  }

  .contact-page .contact-cta-card {
    padding: 30px 20px;
    border-radius: 18px;
  }

  .contact-page .contact-cta-card__title {
    font-size: 1.56rem;
    line-height: 1.42;
  }
}


.approach-page {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 22%, #ffffff 100%);
}
.approach-page main {
  padding-bottom: 24px;
}
.approach-section {
  padding: clamp(44px, 7vw, 84px) 0;
}
.approach-hero {
  padding-top: clamp(52px, 8vw, 92px);
  padding-bottom: clamp(42px, 6vw, 64px);
}
.approach-hero .narrow,
.approach-section .narrow {
  width: min(calc(100% - 40px), 860px);
}
.approach-page .eyebrow {
  margin-bottom: 10px;
}
.approach-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.2;
  color: #153a5a;
}
.approach-hero__lead,
.approach-page p,
.approach-page li {
  line-height: 1.82;
}
.approach-hero__lead {
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  color: #43576c;
}
.approach-page .section-heading p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
}
.approach-grid {
  gap: clamp(20px, 3vw, 28px);
}
.approach-card {
  padding: 24px;
  border: 1px solid #d6e3ef;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 56, 88, 0.05);
}
.approach-card h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
  line-height: 1.55;
  color: #183f61;
}
.approach-card p {
  margin: 0;
  color: #516476;
  line-height: 1.78;
}
.approach-scope {
  background: #f6f9fc;
}
.approach-grid--scope {
  align-items: start;
}
.approach-flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}
.approach-flow-item {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 24px;
  padding: 24px 28px;
  border: 1px solid #d9e4ee;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(19, 57, 88, 0.05);
}
.approach-flow-step {
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(31, 94, 149, 0.1);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.approach-flow-item h3,
.approach-note h3,
.approach-cta__inner h2 {
  margin: 0 0 12px;
  color: #183f61;
}
.approach-flow-item p,
.approach-note p,
.approach-cta__inner p {
  margin: 0;
  color: #4b5f72;
  line-height: 1.78;
}
.approach-notes {
  display: grid;
  width: min(100%, 780px);
  margin: 0 auto;
  gap: 14px;
}
.approach-note {
  position: relative;
  padding: 18px 56px 18px 24px;
  border: 1px solid #d7e3ee;
  border-left: 4px solid rgba(31, 94, 149, 0.75);
  border-radius: 16px;
  background: #fbfdff;
  box-shadow: 0 12px 26px rgba(19, 57, 88, 0.05);
}
.approach-note::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(24, 63, 97, 0.68);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
}
.approach-note h3 {
  font-size: 1.06rem;
  line-height: 1.6;
}
.approach-note p {
  padding-top: 4px;
}
.approach-cta {
  padding-top: clamp(52px, 7vw, 76px);
}
.approach-cta__inner {
  padding: clamp(30px, 5vw, 48px);
  border-radius: 24px;
  background: linear-gradient(180deg, #f1f7fd 0%, #ffffff 100%);
  border: 1px solid #d7e4ef;
  text-align: center;
  box-shadow: 0 18px 46px rgba(20, 56, 88, 0.08);
}
.approach-cta__inner p {
  max-width: 640px;
  margin-inline: auto;
}
.approach-cta__inner .btn {
  min-width: 220px;
  margin-top: 28px;
}
@media (max-width: 920px) {
  .global-nav {
    gap: 0;
  }
}
@media (max-width: 767px) {
  .approach-section {
    padding: 44px 0;
  }
  .approach-hero {
    padding-top: 56px;
    padding-bottom: 44px;
  }
  .approach-page .eyebrow {
    margin-bottom: 8px;
  }
  .approach-hero__lead {
    margin-top: 16px;
  }
  .approach-card,
  .approach-flow-item,
  .approach-note,
  .approach-cta__inner {
    padding: 18px;
  }
  .approach-card h3,
  .approach-flow-item h3,
  .approach-note h3 {
    margin-bottom: 10px;
  }
  .approach-flow-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .approach-flow-step {
    min-height: 34px;
    padding: 8px 12px;
  }
  .approach-note {
    padding-right: 48px;
  }
  .approach-note::after {
    top: 16px;
    right: 18px;
  }
  .approach-cta__inner .btn {
    width: 100%;
    min-width: 0;
  }
}
