@import "https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&display=swap";
:root {
  --bg: #0b1220;
  --surface: #0f1b33;
  --surface-2: #0c162b;
  --paper: #ffffff;
  --paper-2: #f6f8fc;
  --text: #0e1626;
  --muted: #4d5b73;
  --muted-on-dark: rgba(255, 255, 255, 0.72);
  --text-on-dark: rgba(255, 255, 255, 0.92);
  --primary: #2b6cff;
  --primary-2: #1d4ed8;
  --border: rgba(14, 22, 38, 0.12);
  --radius: 16px;
  --shadow: 0 10px 30px rgba(2, 8, 23, 0.12);
  --shadow-soft: 0 8px 18px rgba(2, 8, 23, 0.1);
  --container: 1120px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  font-family:
    BIZ UDPGothic,
    BIZ UDPゴシック,
    sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.7;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.container {
  width: min(100% - 16px, var(--container));
  margin-inline: auto;
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  background: var(--paper);
  border: none;
  border-radius: 10px;
  transform: translateY(-150%);
  z-index: 9999;
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffffd1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14, 22, 38, 0.08);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand-logo {
  display: block;
  height: 28px;
  width: auto;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #62b0ff);
  box-shadow: 0 10px 25px #2b6cff38;
}
.brand-text {
  font-size: 15px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-size: 14px;
  color: #0e1626e0;
  padding: 8px 10px;
  border-radius: 10px;
}
.nav-links a:hover {
  background: #2b6cff14;
  text-decoration: none;
}
.nav-cta {
  margin-left: 4px;
}
.nav-toggle {
  display: none;
  border: none;
  background: var(--paper);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 6px 16px #0208170f;
}
.hamburger {
  display: block;
  width: 20px;
  height: 2px;
  background: #0e1626db;
  position: relative;
}
.hamburger:before,
.hamburger:after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #0e1626db;
}
.hamburger:before {
  top: -6px;
}
.hamburger:after {
  top: 6px;
}
@media (max-width: 840px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .site-nav[hidden] {
    display: none;
  }
  .site-nav {
    position: absolute;
    right: 20px;
    top: 64px;
    width: min(92vw, 360px);
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border: none;
    border-radius: 16px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .nav-links a {
    padding: 10px 12px;
  }
  .nav-cta {
    margin-left: 0;
  }
  body.nav-open {
    overflow: hidden;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none !important;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  border-color: #2b6cff33;
  color: #fff;
  box-shadow: 0 12px 30px #2b6cff38;
}
.btn-primary:hover {
  background: var(--primary-2);
}
.btn-primary.btn-contact {
  background: #d99a38;
  border-color: #d99a384d;
  box-shadow: 0 12px 30px #d99a3840;
}
.btn-primary.btn-contact:hover {
  background: #c48a30;
}
.btn-secondary {
  background: #2b6cff14;
  border-color: #2b6cff29;
  color: #0e1626f0;
}
.btn-secondary:hover {
  background: #2b6cff1f;
}
.section {
  padding: 72px 0;
}
.section-alt {
  background: var(--paper-2);
}
.section-head h2 {
  font-size: 28px;
  line-height: 1.25;
  margin: 0 0 10px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}
.grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}
.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}
.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}
.cards-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 980px) {
  .cards-4,
  .cards-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .cards-4,
  .cards-3,
  .cards-2 {
    grid-template-columns: 1fr;
  }
}
.card {
  background: var(--paper);
  border: none;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 24px #0208170f;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.card p {
  margin: 0;
  color: #0e1626d6;
}
.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #0e1626d6;
}
.muted {
  color: var(--muted);
}
.fineprint {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}
.hero {
  background: #0b1220;
  color: var(--text-on-dark);
  padding: 0;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero .container {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
}
.hero .container.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: max(
    20px,
    calc((100vw - min(100vw - 32px, var(--container))) / 2 + 16px)
  );
  padding-right: 0;
  min-height: 400px;
  flex: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 400px;
  flex: 1;
}
@media (max-width: 639px) {
  .hero {
    min-height: 0;
  }
  .hero-copy {
    padding: 40px 0 48px;
  }
  .hero .container.hero-grid {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding-left: 16px;
    padding-right: 16px;
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}
.hero-copy {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 48px 24px 56px 0;
  min-width: 0;
}
.hero-copy:before {
  content: "";
  position: absolute;
  inset: -100px -100px -100px 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 0% 50%,
      rgba(43, 108, 255, 0.12),
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 80% at 100% 20%,
      rgba(59, 130, 246, 0.06),
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}
.hero-copy > * {
  position: relative;
  z-index: 1;
}
.hero-cta,
.hero-badges {
  justify-content: flex-start;
}
@media (max-width: 639px) {
  .hero-copy {
    text-align: center;
    padding-right: 0;
  }
  .hero-copy:before {
    display: none;
  }
  .hero-cta,
  .hero-badges {
    justify-content: center;
  }
}
.kicker {
  margin: 0 0 8px;
  color: var(--muted-on-dark);
  font-weight: 700;
  letter-spacing: 0.2px;
}
.hero-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: 0.04em;
}
.hero-lead {
  margin: 10px 0 0;
  color: var(--muted-on-dark);
  max-width: 70ch;
  line-height: 1.65;
  font-size: clamp(13px, 1.5vw, 15px);
}
.hero-cta {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-badges {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 12px 0 0;
  flex-wrap: wrap;
}
.hero-badges li {
  border: none;
  background: #ffffff14;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #ffffffe6;
}
.hero-image {
  position: relative;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  align-self: stretch;
}
.hero-image:before {
  content: "";
  position: absolute;
  left: -1px;
  top: -10%;
  width: 3px;
  height: 120%;
  background: #ffffff47;
  transform: rotate(-8deg);
  transform-origin: center;
  z-index: 2;
}
.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 639px) {
  .hero-image {
    min-height: 240px;
    margin: 0;
    max-width: none;
  }
  .hero-image:before {
    transform: none;
    width: 100%;
    height: 1px;
    top: auto;
    bottom: 0;
    background: #fff3;
  }
  .hero-image img {
    min-height: 240px;
  }
}
.hero-panel .panel-card {
  background: #ffffff0f;
  border: none;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 40px #00000040;
}
.panel-title {
  font-weight: 800;
  margin-bottom: 10px;
}
.panel-list {
  margin: 0;
  padding-left: 18px;
  color: #ffffffdb;
}
.panel-note {
  margin-top: 12px;
  font-size: 13px;
  color: #ffffffb3;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.stat {
  background: #ffffff0f;
  border: none;
  border-radius: 16px;
  padding: 14px;
}
.stat-num {
  font-weight: 900;
}
.stat-label {
  font-size: 13px;
  color: #ffffffb8;
}
.hero-features {
  padding-top: 56px;
  scroll-margin-top: 4rem;
}
.hero-feature-cards {
  margin-top: 32px;
}
.hero-feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-feature p {
  font-size: 14px;
}
.features {
  scroll-margin-top: 4rem;
}
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #62b0ff);
  box-shadow: 0 10px 24px #2b6cff47;
}
.feature-icon-2 {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  box-shadow: 0 10px 24px #16a34a47;
}
.feature-icon-3 {
  background: linear-gradient(135deg, #f97316, #fb923c);
  box-shadow: 0 10px 24px #c2410c47;
}
.feature-icon-4 {
  background: linear-gradient(135deg, #a855f7, #c084fc);
  box-shadow: 0 10px 24px #9333ea47;
}
.flow {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}
.flow-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  background: var(--paper);
  border: none;
  border-radius: var(--radius);
  padding: 16px;
}
.flow-step {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #2b6cff1a;
  color: #0e1626e6;
  font-weight: 900;
  display: grid;
  place-items: center;
}
.flow-item h3 {
  margin: 0 0 6px;
}
.flow-item p {
  margin: 0;
  color: #0e1626d6;
}
.pricing {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}
@media (max-width: 980px) {
  .pricing {
    grid-template-columns: 1fr;
  }
}
.price-num {
  font-size: 28px;
  font-weight: 900;
  margin: 10px 0 0;
}
.price-featured {
  border-color: #2b6cff42;
  box-shadow: 0 18px 50px #2b6cff24;
  position: relative;
}
.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: #2b6cff1f;
  border: none;
}
.service-flow {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.service-flow img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
}
.service-detail-cards {
  margin-top: 32px;
}
.service-detail-cards p {
  font-size: 14px;
}
.usecase-list {
  margin: 24px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  color: #0e1626e6;
}
.usecase-list li {
  margin: 0;
  border-radius: 50%;
  border: none;
  background: var(--paper-2);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  aspect-ratio: 1 / 1;
}
.reason-cards {
  margin-top: 32px;
}
.reason-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reason-card p {
  font-size: 14px;
}
.reason-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #62b0ff);
  box-shadow: 0 10px 24px #2b6cff47;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.reason-icon-2 {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  box-shadow: 0 10px 24px #16a34a47;
}
.reason-icon-3 {
  background: linear-gradient(135deg, #f97316, #fb923c);
  box-shadow: 0 10px 24px #c2410c47;
}
.reason-icon-symbol {
  font-size: 22px;
  line-height: 1;
  color: #fff;
}
.certification-badge {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.certification-badge img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
}
.kyrios-message {
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 28px 32px;
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 10px 24px #0208170f;
  background: var(--paper);
}
.kyrios-message-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-features {
  scroll-margin-top: 3rem;
}
.features {
  scroll-margin-top: 2rem;
}
@media (min-width: 720px) {
  .kyrios-message-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }
  .kyrios-message-media {
    flex-shrink: 0;
  }
  .kyrios-message-body {
    flex: 1;
    min-width: 0;
  }
}
.kyrios-message-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: 80px;
  margin: 0;
}
.kyrios-message-title {
  margin: 0 0 16px;
  font-size: 22px;
}
.kyrios-message-text {
  margin: 0;
  line-height: 1.8;
  color: var(--muted);
  text-align: left;
}
.intro-blocks {
  margin-top: 48px;
  display: grid;
  gap: 24px;
}
.intro-block {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(14, 22, 38, 0.08);
}
.intro-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.intro-heading {
  margin: 0 0 8px;
  font-size: 22px;
}
.intro-note {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.case-cards {
  margin-top: 16px;
}
.case-more-wrap {
  margin-top: 24px;
  text-align: center;
}
.case-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}
.case-card-thumb {
  display: block;
  background: #fff;
  margin: -18px -18px 16px;
  padding: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  text-align: center;
}
.case-card-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.case-card-thumb--photo img {
  object-fit: cover;
}
.case-card:hover {
  text-decoration: none;
  box-shadow: 0 14px 32px #0208171a;
  border-color: #2b6cff33;
}
.case-card:hover .case-card-thumb {
  background: #fff;
}
.case-card h3 {
  margin: 0 0 10px;
}
.case-card p {
  flex: 1;
  margin: 0 0 14px;
  font-size: 14px;
}
.case-card-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
.case-card:hover .case-card-link {
  text-decoration: underline;
}
.page-header {
  padding-top: 48px;
}
.case-back {
  margin: 0 0 16px;
  font-size: 14px;
}
.case-back a {
  color: var(--muted);
}
.case-back a:hover {
  color: var(--primary);
}
.case-detail h2 {
  margin: 0 0 12px;
  font-size: 18px;
}
.case-detail .list {
  margin-bottom: 16px;
}
.case-customer-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 12px;
}
.case-lead {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  max-width: 72ch;
}
@media (min-width: 640px) {
  .case-lead {
    font-size: 1.75rem;
  }
}
.case-top-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}
@media (max-width: 840px) {
  .case-top-grid {
    grid-template-columns: 1fr;
  }
}
.case-summary-column {
  min-width: 0;
}
.case-summary {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.case-summary-column .case-summary p {
  margin: 0;
}
.case-info-column {
  padding: 20px;
}
.case-customer-logo {
  display: block;
  max-width: 220px;
  max-height: 76px;
  width: auto;
  height: auto;
  margin-bottom: 20px;
}
.case-info-column .case-dl {
  margin: 0;
}
.case-quote-block {
  margin-top: 0;
  margin-bottom: 24px;
}
.case-quote-attribution-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 16px;
}
.case-quote-attribution-row .case-quote-figure {
  flex-shrink: 0;
  margin: 0;
  width: 120px;
  max-width: 120px;
}
.case-quote-attribution-row .case-quote-attributions {
  flex: 1;
  min-width: 0;
}
.case-quote-figure {
  margin: 0 0 12px;
  max-width: 96px;
}
.case-quote-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.case-quote-attribution-row .case-quote-figure.case-quote-figure--large {
  width: 160px;
  max-width: 160px;
}
.case-quote-figure.case-quote-figure--large {
  max-width: 140px;
}
.case-quote-attribution-row .case-quote-figure.case-quote-figure--small {
  width: 72px;
  max-width: 72px;
}
.case-quote-figure.case-quote-figure--small {
  max-width: 64px;
}
@media (max-width: 640px) {
  .case-quote-attribution-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.case-info {
  margin-bottom: 24px;
  padding: 16px 20px;
}
.case-info .case-dl {
  margin: 0;
}
.case-dl {
  margin: 0;
  display: grid;
  gap: 6px 16px;
}
.case-dl dt {
  font-weight: 600;
  margin: 0;
  grid-column: 1;
  font-size: 13px;
  color: var(--muted);
}
.case-dl dd {
  margin: 0;
  grid-column: 1;
  padding-left: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.case-dl-business-intro {
  display: block;
}
.case-dl-business-list {
  display: block;
  margin-top: 0.5em;
  column-count: 2;
  column-gap: 1.5rem;
  line-height: 1.5;
}
.case-dl-business--single-column .case-dl-business-list {
  column-count: 1;
  margin-top: 0;
}
@media (max-width: 500px) {
  .case-dl-business-list {
    column-count: 1;
  }
}
.case-challenge-effect {
  margin-bottom: 24px;
}
.case-challenge-card {
  background: #f1af4a0f;
  border: none;
}
.case-effect-card {
  background: #0081cd0f;
  border: none;
}
.case-card-heading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 18px;
}
.case-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}
.case-card-icon-challenge {
  background: #f1af4a33;
  color: #f1af4a;
}
.case-card-icon-challenge:before {
  content: "!";
  font-weight: 800;
  font-size: 14px;
}
.case-card-icon-effect {
  background: #0081cd33;
  color: #0081cd;
}
.case-card-icon-effect:before {
  content: "✓";
  font-weight: 800;
  font-size: 14px;
}
.case-summary {
  margin-bottom: 0;
}
.case-summary p {
  margin: 0;
  line-height: 1.8;
}
.case-quote {
  margin: 0 0 24px;
  padding-left: 1em;
  border-left: 4px solid var(--primary);
  color: #00629e;
  font-style: normal;
  line-height: 1.8;
}
.case-detail-body .case-customer-quote,
.case-quote-block .case-customer-quote {
  color: #00629e;
  font-style: normal;
}
.case-quote-attributions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
@media (max-width: 640px) {
  .case-quote-attributions {
    grid-template-columns: 1fr;
  }
}
.case-quote-attribution {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.case-detail-body {
  max-width: 80ch;
  margin-inline: auto;
}
.case-detail-body h2 {
  margin: 2em 0 0.75em;
  font-size: 20px;
  padding-bottom: 0.25em;
  border-bottom: 1px solid rgba(14, 22, 38, 0.1);
}
.case-detail-body h2:first-child {
  margin-top: 0;
}
.case-detail-body h3 {
  margin: 1.5em 0 0.5em;
  font-size: 17px;
  font-weight: 700;
}
.case-detail-body p {
  margin: 0 0 1em;
  line-height: 1.8;
}
.case-detail-body .list {
  margin: 0 0 1em;
}
.case-figure {
  margin: 24px 0;
}
.case-figure img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .case-figure--narrow img {
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
}
.case-caption {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}
.case-figure--large {
  margin-left: -3%;
  margin-right: -3%;
  width: 106%;
  max-width: none;
}
.case-figure--large img {
  width: 100%;
}
.case-note-small {
  margin-top: 1em;
  font-size: 13px;
  color: var(--muted);
}
.case-legal {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.service-scope-cards {
  text-align: center;
}
.service-scope-cards .card {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-scope-cards .card h3 {
  margin: 0;
}
.service-scope-line2 {
  display: block;
}
@media (max-width: 380px) {
  .service-scope-line2 {
    display: inline;
  }
}
.grid.cards-3.service-scope-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 980px) {
  .grid.cards-3.service-scope-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .grid.cards-3.service-scope-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-logo {
  display: block;
  height: auto;
  width: auto;
  max-height: 72px;
}
.accordion {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}
.accordion-item {
  background: var(--paper);
  border: none;
  border-radius: 14px;
  overflow: clip;
}
.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}
.accordion-trigger:focus-visible {
  outline: 3px solid rgba(43, 108, 255, 0.35);
  outline-offset: 2px;
}
.accordion-panel {
  padding: 0 16px 14px;
  color: #0e1626d6;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  margin-top: 22px;
}
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.contact-cta-lead {
  margin: 0;
  color: #0e1626d6;
}
.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
label {
  font-weight: 700;
  font-size: 13px;
}
.req {
  color: var(--primary-2);
}
input,
textarea {
  font: inherit;
  padding: 10px 12px;
  border: 1px solid rgba(14, 22, 38, 0.14);
  border-radius: 12px;
  background: var(--paper);
}
input:focus,
textarea:focus {
  outline: 3px solid rgba(43, 108, 255, 0.25);
  border-color: #2b6cff66;
}
.site-footer {
  background: #c5cfdc;
  color: #1e293b;
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}
.footer-brand {
  font-weight: 900;
}
.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #334155;
}
.footer-links a:hover {
  color: #0e1626;
}
.footer-bottom {
  margin-top: 16px;
}
.site-footer .muted {
  color: #475569;
}
