:root {
  --navy: #0a1c35;
  --navy-soft: #14315a;
  --blue: #1e63f2;
  --blue-deep: #164dc8;
  --blue-light: #edf4ff;
  --cyan: #49c3e8;
  --green: #06c755;
  --green-deep: #049d43;
  --violet: #6c57e5;
  --sand: #f6efe4;
  --gold: #b9872d;
  --ink: #13233d;
  --muted: #60718b;
  --line: #dce6f3;
  --surface: #ffffff;
  --offwhite: #f7faff;
  --shadow-sm: 0 12px 34px rgba(19, 43, 82, 0.08);
  --shadow: 0 24px 72px rgba(19, 43, 82, 0.14);
  --radius: 28px;
  --container: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

@supports (overflow: clip) {
  html {
    overflow-x: clip;
  }
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo",
    system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-feature-settings: "palt" 1;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  background: #cfe0ff;
  color: var(--navy);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  transform: translateY(-140%);
  border-radius: 8px;
  background: #fff;
  padding: 10px 16px;
  box-shadow: var(--shadow-sm);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(220, 230, 243, 0.75);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(22px) saturate(140%);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 137px;
  height: 50px;
  object-fit: contain;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  color: #31435f;
  font-size: 0.85rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.global-nav > a:not(.nav-line) {
  position: relative;
  padding: 27px 0;
}

.global-nav .nav-lab {
  color: var(--blue);
  font-weight: 850;
}

.global-nav > a:not(.nav-line)::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--blue);
  content: "";
  transition: transform 0.25s ease;
}

.global-nav > a:hover::after,
.global-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-line {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(6, 199, 85, 0.2);
  color: #fff;
  padding: 0 19px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(6, 199, 85, 0.28);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--offwhite);
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.25s ease;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.menu-button.is-open span:first-child {
  transform: rotate(45deg);
}

.menu-button.is-open span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.74) 47%, rgba(235, 244, 255, 0.62) 100%),
    #f8fbff;
  padding: 74px 0 116px;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(30, 99, 242, 0.09) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 58%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow--one {
  top: -320px;
  left: -240px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(73, 195, 232, 0.15), transparent 68%);
}

.hero-glow--two {
  right: -180px;
  bottom: -310px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(30, 99, 242, 0.14), transparent 70%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(720px, calc(100svh - var(--header-height) - 40px));
  align-items: center;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  gap: 48px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.4;
}

.eyebrow::before,
.section-label::before {
  display: inline-block;
  width: 32px;
  height: 2px;
  margin: 0 12px 4px 0;
  background: currentColor;
  content: "";
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.1rem, 5.3vw, 5.25rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1.1;
}

.hero h1 span {
  display: inline-block;
  margin-top: 8px;
  background: linear-gradient(110deg, var(--blue-deep), #4e70e8 55%, var(--violet));
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero-lead {
  margin: 28px 0 0;
  color: #50627d;
  font-size: clamp(1.03rem, 1.5vw, 1.22rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 25px;
  cursor: pointer;
  font-weight: 850;
  letter-spacing: 0.01em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--blue), #4f60dd);
  box-shadow: 0 16px 36px rgba(30, 99, 242, 0.25);
  color: #fff;
}

.button--primary:hover {
  box-shadow: 0 20px 44px rgba(30, 99, 242, 0.34);
}

.button--line {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 16px 34px rgba(6, 173, 74, 0.23);
  color: #fff;
}

.button--line:hover {
  background: var(--green-deep);
  box-shadow: 0 20px 40px rgba(6, 173, 74, 0.31);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 21px;
  margin: 27px 0 0;
  padding: 0;
  color: #5c6d85;
  font-size: 0.8rem;
  font-weight: 700;
  list-style: none;
}

.trust-list li::before {
  display: inline-grid;
  width: 17px;
  height: 17px;
  margin-right: 7px;
  place-items: center;
  border-radius: 50%;
  background: #e6efff;
  color: var(--blue);
  content: "✓";
  font-size: 0.63rem;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 0;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 38px;
  box-shadow: 0 32px 84px rgba(16, 48, 94, 0.18);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  height: min(580px, 68vw);
  max-height: 580px;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.035);
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-visual.is-visible .hero-image-frame img {
  transform: scale(1);
}

.hero-flow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  width: 100%;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  background: rgba(10, 28, 53, 0.93);
  box-shadow: 0 20px 48px rgba(10, 28, 53, 0.23);
  color: #fff;
  padding: 18px 22px;
  backdrop-filter: blur(16px);
}

.hero-flow span {
  display: grid;
  gap: 2px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.3;
}

.hero-flow small {
  color: #8eb8ff;
  font-size: 0.6rem;
  letter-spacing: 0.13em;
}

.hero-flow i {
  color: #7690b4;
  font-style: normal;
}

.hero-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(30, 99, 242, 0.93);
  box-shadow: 0 18px 36px rgba(30, 99, 242, 0.24);
  color: rgba(255, 255, 255, 0.72);
  padding: 13px 16px;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  backdrop-filter: blur(14px);
}

.hero-badge img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.hero-badge span {
  display: grid;
}

.hero-badge strong {
  color: #fff;
  font-size: 0.68rem;
}

.section-heading {
  max-width: 730px;
}

.section-heading--center {
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .section-label::before {
  display: none;
}

.section-heading h2,
.approach-copy h2,
.company-copy h2,
.contact-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.25;
}

.section-heading > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 550;
}

.problem {
  background: #fff;
}

.problem::after {
  position: absolute;
  top: 32px;
  right: -140px;
  width: 420px;
  height: 420px;
  border: 1px solid #e5edfa;
  border-radius: 50%;
  box-shadow:
    0 0 0 46px rgba(243, 248, 255, 0.8),
    0 0 0 92px rgba(248, 251, 255, 0.7);
  content: "";
  pointer-events: none;
}

.problem-grid {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 58px;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.problem-card {
  display: grid;
  min-height: 246px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.94));
  padding: 29px;
  grid-template-columns: 124px 1fr;
  gap: 27px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-7px);
  border-color: #bcd1f7;
  box-shadow: var(--shadow-sm);
}

.problem-card-head {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.problem-card-body {
  align-self: center;
}

.problem-tag {
  display: inline-flex;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--blue-deep);
  padding: 7px 11px;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.problem-card:nth-child(2) .problem-tag {
  background: #f0ebff;
  color: #5f4bd1;
}

.problem-card:nth-child(3) .problem-tag {
  background: #e4f8f1;
  color: #128b6d;
}

.problem-card:nth-child(4) .problem-tag {
  background: #fff0e8;
  color: #b55f39;
}

.problem-card .icon-box,
.industry-block li > span {
  display: inline-grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(30, 99, 242, 0.12);
  border-radius: 21px;
  background: linear-gradient(145deg, #f5f9ff 0%, #e5efff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 28px rgba(30, 99, 242, 0.11);
  color: var(--blue);
}

.problem-card:nth-child(2) .icon-box {
  border-color: rgba(108, 87, 229, 0.13);
  background: linear-gradient(145deg, #faf8ff 0%, #ece7ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 28px rgba(108, 87, 229, 0.1);
  color: var(--violet);
}

.problem-card:nth-child(3) .icon-box {
  border-color: rgba(18, 169, 129, 0.13);
  background: linear-gradient(145deg, #f4fffb 0%, #ddf6ef 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 28px rgba(18, 169, 129, 0.1);
  color: #12a981;
}

.problem-card:nth-child(4) .icon-box {
  border-color: rgba(219, 116, 70, 0.13);
  background: linear-gradient(145deg, #fffaf7 0%, #ffeadf 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 28px rgba(219, 116, 70, 0.1);
  color: #db7446;
}

.icon-box svg,
.industry-block svg {
  width: 42px;
  height: 42px;
}

.problem-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.86;
}

.approach {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(50, 111, 219, 0.25), transparent 30%),
    linear-gradient(135deg, #07182e 0%, #0b2342 55%, #12345f 100%);
  color: #fff;
}

.approach::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to left, #000, transparent);
  pointer-events: none;
}

.approach-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
}

.approach-image {
  position: relative;
  margin-left: calc((100vw - min(var(--container), calc(100vw - 48px))) / -2);
}

.approach-image > img {
  width: 100%;
  min-height: 690px;
  border-radius: 0 36px 36px 0;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  object-position: 63% center;
  transform: scale(1.03);
  transition: transform 1s ease;
}

.approach-image.is-visible > img {
  transform: scale(1);
}

.approach-image > p {
  position: absolute;
  right: 24px;
  bottom: 25px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 17px;
  background: rgba(7, 24, 46, 0.88);
  padding: 15px 20px;
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.approach-image > p span {
  color: #8fb5f6;
  font-size: 0.61rem;
  letter-spacing: 0.16em;
}

.section-label--light {
  color: #86b3ff;
}

.approach-copy h2,
.contact-heading h2 {
  color: #fff;
}

.approach-copy h2 {
  font-size: clamp(2.2rem, 3.65vw, 3.5rem);
}

.approach-copy h2 span {
  color: #92bcff;
}

.approach-lead {
  margin: 27px 0 0;
  color: #c9d8ec;
  font-weight: 600;
  line-height: 1.95;
}

.process-grid {
  display: grid;
  margin-top: 46px;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.process-card {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.045));
  padding: 23px;
  backdrop-filter: blur(12px);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.process-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.process-label {
  border: 1px solid rgba(160, 196, 255, 0.18);
  border-radius: 999px;
  background: rgba(134, 179, 255, 0.1);
  color: #b7d1ff;
  padding: 6px 9px;
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.process-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.11);
}

.process-icon {
  display: inline-grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid rgba(167, 199, 255, 0.18);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(145, 187, 255, 0.18), rgba(87, 135, 219, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 24px rgba(0, 0, 0, 0.12);
  color: #b2ceff;
}

.process-card:nth-child(2) .process-icon {
  border-color: rgba(141, 224, 206, 0.2);
  background: linear-gradient(145deg, rgba(126, 229, 208, 0.17), rgba(57, 157, 140, 0.07));
  color: #9be6d7;
}

.process-card:nth-child(3) .process-icon {
  border-color: rgba(192, 168, 255, 0.2);
  background: linear-gradient(145deg, rgba(179, 151, 255, 0.18), rgba(111, 81, 190, 0.07));
  color: #c8b4ff;
}

.process-card:nth-child(4) .process-icon {
  border-color: rgba(240, 193, 132, 0.21);
  background: linear-gradient(145deg, rgba(255, 194, 119, 0.17), rgba(188, 124, 48, 0.07));
  color: #f4ca94;
}

.process-icon svg {
  width: 36px;
  height: 36px;
}

.process-card h3 {
  margin: 20px 0 8px;
  font-size: 1.05rem;
}

.process-card p {
  margin: 0;
  color: #b9c9dd;
  font-size: 0.81rem;
  line-height: 1.78;
}

.service {
  background:
    radial-gradient(circle at 50% 28%, rgba(226, 237, 255, 0.8), transparent 24%),
    #fff;
}

.core-service {
  display: grid;
  overflow: hidden;
  margin-top: 64px;
  border: 1px solid #c8daf7;
  border-radius: 34px;
  background: linear-gradient(135deg, #eaf3ff, #f8fbff 62%, #fff);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 1.2fr 0.8fr;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.core-service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.core-service-image,
.service-image {
  position: relative;
  overflow: hidden;
}

.core-service-image img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.core-service:hover .core-service-image img,
.service-card:hover .service-image img {
  transform: scale(1.035);
}

.core-service-image > span,
.service-image > span {
  position: absolute;
  top: 19px;
  left: 19px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(30, 99, 242, 0.2);
  color: #fff;
  padding: 7px 12px;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.core-service-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}

.service-symbol {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}

.service-symbol > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: #e5efff;
  color: var(--blue);
}

.service-symbol svg {
  width: 24px;
  height: 24px;
}

.service-symbol small {
  color: rgba(30, 99, 242, 0.66);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-card--web .service-symbol > span {
  background: #f6ede2;
  color: #966c3c;
}

.service-card--web .service-symbol small {
  color: #8a6338;
}

.service-card--line .service-symbol > span {
  background: #e7faee;
  color: var(--green-deep);
}

.service-card--line .service-symbol small {
  color: var(--green-deep);
}

.service-card--dx .service-symbol > span {
  background: #eeeafe;
  color: #604bcf;
}

.service-card--dx .service-symbol small {
  color: #5d48c8;
}

.core-service h3,
.service-card h3 {
  margin: 4px 0 10px;
  color: var(--navy);
  font-size: 1.75rem;
  letter-spacing: -0.035em;
}

.core-service-body > p,
.service-body > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.core-service ul {
  display: grid;
  margin: 26px 0 28px;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 9px 16px;
  list-style: none;
}

.core-service li {
  position: relative;
  padding-left: 17px;
  color: #405674;
  font-size: 0.82rem;
  font-weight: 700;
}

.core-service li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 850;
}

.service-link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
}

.core-service:hover .service-link svg,
.service-card:hover .service-link svg {
  transform: translateX(5px);
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-sm);
}

.service-card--web {
  border-color: #eadfce;
  background: linear-gradient(180deg, #fff, #fffcf7);
}

.service-card--line {
  border-color: #bde9ce;
  background: linear-gradient(180deg, #fff, #f4fff8);
}

.service-card--dx {
  border-color: #dbd3fa;
  background: linear-gradient(180deg, #fff, #f9f7ff);
}

.service-image {
  margin: 12px 12px 0;
  border-radius: 20px;
}

.service-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card--web .service-image > span {
  background: #9a7141;
}

.service-card--line .service-image > span {
  background: var(--green);
}

.service-card--dx .service-image > span {
  background: var(--violet);
}

.service-body {
  padding: 25px 26px 30px;
}

.service-card h3 {
  font-size: 1.28rem;
}

.service-body .service-link {
  margin-top: 25px;
}

.service-card--web .service-link {
  color: #8a6338;
}

.service-card--line .service-link {
  color: var(--green-deep);
}

.service-card--dx .service-link {
  color: #5d48c8;
}

.case {
  overflow: hidden;
  background: linear-gradient(180deg, #edf4ff 0%, #f8fbff 64%, #fff 100%);
}

.case::before {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 87, 229, 0.12), transparent 69%);
  content: "";
}

.case-top {
  display: grid;
  align-items: center;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 70px;
}

.case-image {
  position: relative;
}

.case-image img {
  width: 100%;
  height: 480px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  object-fit: cover;
  transform: scale(1.025);
  transition: transform 1s ease;
}

.case-image.is-visible img {
  transform: scale(1);
}

.case-image > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  padding: 8px 13px;
  font-size: 0.72rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.case-list {
  display: grid;
  margin-top: 68px;
  gap: 13px;
}

.case-row {
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #d5e2f4;
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 10px 30px rgba(27, 59, 107, 0.06);
  grid-template-columns: 0.58fr 1fr 64px 1fr;
}

.case-name,
.case-before,
.case-after {
  padding: 25px 27px;
}

.case-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.case-symbol {
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-symbol > span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: #e8f1ff;
  color: var(--blue);
}

.case-symbol svg {
  width: 21px;
  height: 21px;
}

.case-symbol small {
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.case-name h3 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 1rem;
}

.case-before,
.case-after {
  display: grid;
  align-content: center;
  gap: 5px;
}

.case-before span,
.case-after span {
  color: #8a99ae;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.case-after span {
  color: var(--blue);
}

.case-before p,
.case-after p {
  margin: 0;
  color: #5c6d85;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.65;
}

.case-after {
  background: linear-gradient(110deg, #eef5ff, #fff);
}

.case-after p {
  color: #2e4c76;
}

.case-arrow {
  display: grid;
  place-items: center;
  color: var(--blue);
}

.case-arrow svg {
  width: 28px;
  height: 28px;
}

.case-note {
  margin: 18px 0 0;
  color: #77869c;
  font-size: 0.72rem;
}

.price {
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 219, 165, 0.23), transparent 22%),
    linear-gradient(180deg, #fffaf3, #fff 80%);
}

.price-panel {
  overflow: hidden;
  border: 1px solid #e6d9c7;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 80px rgba(82, 57, 23, 0.12);
  padding: 28px;
}

.price-overview {
  display: grid;
  align-items: stretch;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
}

.price-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 12px 8px 12px 14px;
}

.price-intro > p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.95;
}

.price-visual {
  position: relative;
  overflow: hidden;
  height: 330px;
  border: 1px solid #eadfce;
  border-radius: 25px;
  box-shadow: 0 18px 48px rgba(82, 57, 23, 0.1);
}

.price-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 24, 46, 0.68), rgba(7, 24, 46, 0.08) 54%, transparent 72%);
  content: "";
  pointer-events: none;
}

.price-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.price-visual > div {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 42px;
  width: min(480px, 44%);
  transform: translateY(-50%);
  color: #fff;
}

.price-visual > div > span {
  display: block;
  margin-bottom: 13px;
  color: #9fc4ff;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.price-visual strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  letter-spacing: -0.04em;
  line-height: 1.38;
}

.price-visual p {
  margin: 14px 0 0;
  color: #d4e1f2;
  font-size: 0.87rem;
  font-weight: 650;
}

.price-flow {
  display: grid;
  align-items: center;
  margin-top: 24px;
  grid-template-columns: minmax(190px, 0.72fr) 58px minmax(0, 3fr);
}

.price-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e8dfd2;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.95);
  padding: 25px 23px 23px;
  box-shadow: 0 10px 26px rgba(82, 57, 23, 0.06);
}

.price-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: #c9b28f;
  content: "";
}

.price-card--free {
  border-color: #cbdaf0;
  background: var(--navy);
  color: #fff;
}

.price-card--free::before {
  background: var(--cyan);
}

.price-card--blue {
  border-color: #aec9f7;
  background: linear-gradient(145deg, #eaf3ff, #fff);
}

.price-card--blue::before {
  background: var(--blue);
}

.price-card--green {
  border-color: #b8e8ca;
  background: linear-gradient(145deg, #effff5, #fff);
}

.price-card--green::before {
  background: var(--green);
}

.price-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: #f4ede3;
  color: #9b7548;
}

.price-icon svg {
  width: 23px;
  height: 23px;
}

.price-card-top small {
  color: #a07a4d;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.price-card--free .price-icon {
  background: rgba(142, 199, 255, 0.13);
  color: #8ec7ff;
}

.price-card--free .price-card-top small {
  color: #8ec7ff;
}

.price-card--blue .price-icon {
  background: #dbe9ff;
  color: var(--blue);
}

.price-card--blue .price-card-top small {
  color: var(--blue);
}

.price-card--green .price-icon {
  background: #dff8e9;
  color: var(--green-deep);
}

.price-card--green .price-card-top small {
  color: var(--green-deep);
}

.price-card h3 {
  min-height: 49px;
  margin: 13px 0 19px;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.5;
}

.price-card--free h3 {
  color: #fff;
}

.price-card strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.price-card--free strong {
  color: #fff;
}

.price-card strong span {
  margin-left: 2px;
  font-size: 0.7em;
}

.price-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 650;
}

.price-card--free p {
  color: #aebed4;
}

.price-connector {
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 900;
}

.price-connector svg {
  width: 30px;
  height: 30px;
}

.price-options {
  min-width: 0;
  border: 1px solid #e3d9ca;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
  box-shadow: 0 14px 38px rgba(82, 57, 23, 0.06);
}

.price-options-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: #766b5d;
  font-size: 0.73rem;
  font-weight: 700;
}

.price-options-label span {
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--blue-deep);
  padding: 7px 11px;
  font-size: 0.68rem;
  font-weight: 900;
}

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

.price-tail {
  display: grid;
  align-items: center;
  margin-top: 14px;
  border: 1px solid #dfd6c8;
  border-radius: 22px;
  background: #fff;
  padding: 17px 20px;
  grid-template-columns: auto 1fr 1fr auto;
  gap: 24px;
}

.price-tail > span {
  border-radius: 999px;
  background: #f3ede4;
  color: #8c704c;
  padding: 7px 11px;
  font-size: 0.68rem;
  font-weight: 850;
}

.price-tail > div {
  display: grid;
  padding-left: 24px;
  border-left: 1px solid #e8e0d5;
}

.price-tail strong {
  color: var(--navy);
  font-size: 0.82rem;
}

.price-tail small {
  color: var(--muted);
  font-size: 0.67rem;
}

.price-tail > a {
  color: var(--blue-deep);
  font-size: 0.79rem;
  font-weight: 850;
}

.price-note {
  margin: 10px 0 0;
  color: #7d7365;
  font-size: 0.69rem;
}

.industry-block {
  display: grid;
  align-items: center;
  margin-top: 80px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 34px 38px;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 36px;
}

.industry-block .section-label {
  margin-bottom: 9px;
}

.industry-block h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.7rem;
  letter-spacing: -0.035em;
}

.industry-block ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  list-style: none;
}

.industry-block li {
  display: grid;
  justify-items: center;
  gap: 9px;
  min-width: 0;
  border: 1px solid #e7eef8;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdff, #f6f9fe);
  color: #445875;
  padding: 13px 5px 11px;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.industry-block li:hover {
  transform: translateY(-3px);
  border-color: #c8d9f4;
  box-shadow: 0 12px 26px rgba(29, 62, 111, 0.08);
}

.industry-block li > span {
  width: 68px;
  height: 68px;
  border-radius: 21px;
}

.industry-block li:nth-child(2) > span {
  border-color: rgba(203, 98, 138, 0.13);
  background: linear-gradient(145deg, #fff8fb 0%, #ffeaf2 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 28px rgba(203, 98, 138, 0.1);
  color: #cb628a;
}

.industry-block li:nth-child(3) > span {
  border-color: rgba(108, 87, 229, 0.13);
  background: linear-gradient(145deg, #faf9ff 0%, #ece8ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 28px rgba(108, 87, 229, 0.1);
  color: var(--violet);
}

.industry-block li:nth-child(4) > span {
  border-color: rgba(22, 151, 121, 0.13);
  background: linear-gradient(145deg, #f7fffc 0%, #e3f6ef 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 28px rgba(22, 151, 121, 0.1);
  color: #169779;
}

.industry-block li:nth-child(5) > span {
  border-color: rgba(185, 125, 67, 0.13);
  background: linear-gradient(145deg, #fffbf7 0%, #ffeddd 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 28px rgba(185, 125, 67, 0.1);
  color: #b97d43;
}

.company {
  background: #fff;
}

.company-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 78px;
}

.company-image {
  position: relative;
}

.company-image > img {
  width: 100%;
  height: 560px;
  border-radius: 34px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: left center;
}

.company-image-note {
  position: absolute;
  bottom: 18px;
  left: 18px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #43546d;
  padding: 7px 12px;
  font-size: 0.68rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.company-mark {
  position: absolute;
  right: -24px;
  bottom: -24px;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 8px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: var(--shadow-sm);
}

.company-mark img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.company-lead {
  margin: 27px 0 36px;
  color: var(--muted);
  font-weight: 600;
  line-height: 2;
}

.company-copy dl {
  margin: 0;
}

.company-copy dl > div {
  display: grid;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 112px 1fr;
  gap: 22px;
}

.company-copy dt {
  color: #718197;
  font-size: 0.77rem;
  font-weight: 800;
}

.company-copy dd {
  margin: 0;
  color: #2c405e;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.7;
}

.contact {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 5%, rgba(44, 111, 226, 0.36), transparent 24%),
    radial-gradient(circle at 100% 80%, rgba(108, 87, 229, 0.23), transparent 28%),
    #08192f;
}

.contact::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  pointer-events: none;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-heading {
  max-width: 820px;
}

.contact-heading > p:last-child {
  margin: 23px 0 0;
  color: #b7c7da;
  font-weight: 600;
}

.contact-methods {
  display: grid;
  align-items: stretch;
  margin-top: 55px;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.contact-card {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 25px;
  padding: 25px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.2);
}

.contact-card--line {
  background: linear-gradient(135deg, #04a947, var(--green));
  color: #fff;
  padding-right: 155px;
}

.contact-card--mail {
  background: #fff;
  color: var(--navy);
}

.contact-card--phone {
  border-color: rgba(216, 180, 108, 0.35);
  background: linear-gradient(145deg, #132846, #0b203c);
  color: #fff;
}

.contact-type-row {
  display: flex;
  align-items: center;
  gap: 9px;
}

.contact-method-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.contact-method-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card--mail .contact-method-icon {
  background: #eaf2ff;
  color: var(--blue);
}

.contact-card--phone .contact-method-icon {
  background: rgba(213, 179, 109, 0.13);
  color: #e0c07d;
}

.contact-type {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.contact-card--mail .contact-type {
  color: var(--blue);
}

.contact-card--phone .contact-type {
  color: #d5b36d;
}

.contact-card h3 {
  margin: 0;
  font-size: 1.27rem;
}

.contact-card p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.contact-card--mail p {
  color: var(--muted);
}

.contact-card > strong {
  font-size: 0.78rem;
}

.contact-card--phone > strong {
  color: #f1d8a6;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.contact-card--line > img {
  position: absolute;
  right: 21px;
  bottom: 21px;
  width: 114px;
  height: 114px;
  border: 7px solid #fff;
  border-radius: 12px;
  background: #fff;
}

.mail-form {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 31px;
  background: #fff;
  box-shadow: 0 36px 84px rgba(0, 0, 0, 0.22);
  padding: 42px;
}

.form-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 33px;
}

.form-heading .section-label {
  margin-bottom: 7px;
}

.form-heading h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.8rem;
  letter-spacing: -0.035em;
}

.form-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: right;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 22px;
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label > span:first-child {
  color: #42546e;
  font-size: 0.78rem;
  font-weight: 800;
}

.form-grid label b {
  display: inline-block;
  margin-left: 4px;
  border-radius: 4px;
  background: #eaf2ff;
  color: var(--blue);
  padding: 1px 5px;
  font-size: 0.61rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d6e1ef;
  border-radius: 13px;
  outline: 0;
  background: #fafcff;
  color: var(--ink);
  padding: 12px 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-grid textarea {
  min-height: 150px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: #87adf4;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30, 99, 242, 0.09);
}

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

.form-agree {
  display: flex !important;
  align-items: center;
  gap: 10px !important;
}

.form-agree input {
  width: 19px;
  min-height: 19px;
  margin: 0;
  accent-color: var(--blue);
}

.form-agree span {
  font-size: 0.74rem !important;
  font-weight: 600 !important;
}

.form-agree a {
  color: var(--blue-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.turnstile-field {
  grid-column: 1 / -1;
  min-height: 0;
}

.turnstile-field:empty {
  display: none;
}

.form-status {
  max-width: 720px;
  margin: 20px 0 0;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
}

.form-status--success {
  color: #075c38;
  background: #e7f8ef;
  border: 1px solid #a8e0c3;
}

.form-status--error {
  color: #8a2330;
  background: #fff0f2;
  border: 1px solid #efbcc3;
}

.form-submit {
  min-width: 260px;
  margin-top: 28px;
  border: 0;
}

.site-footer {
  background: #061324;
  color: #fff;
  padding: 56px 0 24px;
}

.footer-top {
  display: grid;
  align-items: start;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 50px;
}

.footer-top > div:first-child img {
  width: 146px;
  height: 54px;
  object-fit: contain;
}

.footer-top > div:first-child p {
  margin: 15px 0 0;
  color: #93a7c2;
  font-size: 0.77rem;
}

.footer-contact {
  display: grid;
  gap: 5px;
  padding-top: 10px;
  color: #c5d2e3;
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-top nav {
  display: grid;
  gap: 7px;
  padding-top: 8px;
  color: #9fb1c9;
  font-size: 0.75rem;
}

.footer-top a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 19px;
  color: #6f829d;
  font-size: 0.64rem;
  letter-spacing: 0.05em;
}

.ai-assistant {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 150;
}

.ai-assistant-launcher {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #5a55db);
  box-shadow: 0 17px 42px rgba(30, 75, 178, 0.32);
  color: #fff;
  padding: 7px 17px 7px 7px;
  cursor: pointer;
  font-weight: 850;
  text-align: left;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.ai-assistant-launcher:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(30, 75, 178, 0.4);
}

.ai-assistant-launcher > span:last-child {
  display: grid;
  gap: 1px;
  font-size: 0.76rem;
  line-height: 1.25;
}

.ai-assistant-launcher small {
  color: #cddcff;
  font-size: 0.53rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.ai-assistant-launcher-icon,
.ai-assistant-avatar {
  display: inline-grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.ai-assistant-launcher-icon svg,
.ai-assistant-avatar svg {
  width: 24px;
  height: 24px;
}

.ai-assistant-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(400px, calc(100vw - 36px));
  overflow: hidden;
  transform: translateY(14px) scale(0.98);
  transform-origin: right bottom;
  border: 1px solid #d9e5f5;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(10, 28, 53, 0.24);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.ai-assistant.is-open .ai-assistant-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.ai-assistant-header {
  display: flex;
  min-height: 77px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, #0b2549, #173f78);
  color: #fff;
  padding: 14px 16px;
}

.ai-assistant-header > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.ai-assistant-avatar {
  width: 42px;
  height: 42px;
  background: rgba(98, 146, 231, 0.28);
}

.ai-assistant-avatar svg {
  width: 22px;
  height: 22px;
}

.ai-assistant-header strong,
.ai-assistant-header small {
  display: block;
}

.ai-assistant-header strong {
  font-size: 0.92rem;
}

.ai-assistant-header small {
  margin-top: 2px;
  color: #a9c4ec;
  font-size: 0.63rem;
  font-weight: 650;
}

.ai-assistant-header > button {
  width: 37px;
  height: 37px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.ai-assistant-messages {
  display: flex;
  max-height: 246px;
  overflow-y: auto;
  flex-direction: column;
  gap: 10px;
  background: #f5f8fc;
  padding: 17px 16px 12px;
  overscroll-behavior: contain;
}

.ai-message {
  width: fit-content;
  max-width: 90%;
  margin: 0;
  border-radius: 15px;
  padding: 10px 12px;
  font-size: 0.76rem;
  line-height: 1.72;
}

.ai-message--assistant {
  align-self: flex-start;
  border: 1px solid #dce7f5;
  border-bottom-left-radius: 5px;
  background: #fff;
  color: #344965;
}

.ai-message--user {
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  background: var(--blue);
  color: #fff;
}

.ai-assistant-suggestions {
  display: grid;
  padding: 11px 16px 7px;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.ai-assistant-suggestions button {
  min-height: 37px;
  border: 1px solid #d5e2f3;
  border-radius: 11px;
  background: #fff;
  color: #31527d;
  padding: 7px 8px;
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 750;
  line-height: 1.35;
}

.ai-assistant-suggestions button:hover {
  border-color: #9dbcf0;
  background: #f3f7ff;
}

.ai-assistant-form {
  display: grid;
  margin: 4px 16px 0;
  border: 1px solid #cad8ea;
  border-radius: 14px;
  background: #fff;
  grid-template-columns: 1fr 43px;
}

.ai-assistant-form input {
  min-width: 0;
  height: 46px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  padding: 0 12px;
  font-size: 0.75rem;
}

.ai-assistant-form button {
  display: grid;
  margin: 4px;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
}

.ai-assistant-form svg {
  width: 22px;
  height: 22px;
}

.ai-assistant-note {
  margin: 9px 16px 13px;
  color: #8290a3;
  font-size: 0.6rem;
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.58s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.58s cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.problem-card:nth-child(2)[data-reveal],
.problem-card:nth-child(3)[data-reveal] {
  transform: translateY(28px);
}

.problem-card:nth-child(2)[data-reveal].is-visible,
.problem-card:nth-child(3)[data-reveal].is-visible {
  transform: translateY(0);
}

.mobile-only {
  display: none;
}

@media (max-width: 1100px) {
  .global-nav {
    gap: 18px;
  }

  .global-nav > a:not(.nav-line) {
    font-size: 0.79rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(490px, 1.1fr);
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.3rem);
  }

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

  .problem-card,
  .problem-card:nth-child(2),
  .problem-card:nth-child(3) {
    min-height: 220px;
    transform: none;
  }

  .problem-card:nth-child(2)[data-reveal].is-visible,
  .problem-card:nth-child(3)[data-reveal].is-visible {
    transform: none;
  }

  .approach-layout {
    gap: 42px;
  }

  .approach-image > img {
    min-height: 640px;
  }

  .core-service-body {
    padding: 37px;
  }

  .case-top {
    gap: 40px;
  }

  .price-flow {
    grid-template-columns: minmax(170px, 0.65fr) 48px minmax(0, 2.35fr);
  }

  .price-options-grid {
    grid-template-columns: 1fr;
  }

  .price-options-grid .price-card {
    display: grid;
    min-height: 132px;
    align-items: center;
    grid-template-columns: 1fr auto;
    gap: 3px 15px;
  }

  .price-options-grid .price-card-top,
  .price-options-grid .price-card h3,
  .price-options-grid .price-card p {
    grid-column: 1;
  }

  .price-options-grid .price-card h3 {
    min-height: 0;
    margin: 4px 0;
  }

  .price-options-grid .price-card strong {
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .price-tail {
    grid-template-columns: auto 1fr 1fr;
  }

  .price-tail > a {
    grid-column: 2 / -1;
    padding-left: 24px;
  }

  .company-layout {
    gap: 52px;
  }

  .contact-methods {
    grid-template-columns: 1.1fr 1fr;
  }

  .contact-card--phone {
    grid-column: 1 / -1;
    min-height: 155px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 102px 0;
  }

  .menu-button {
    position: relative;
    z-index: 103;
    display: inline-flex;
  }

  .global-nav {
    position: fixed;
    z-index: 102;
    top: 0;
    right: 0;
    display: flex;
    width: min(390px, 88vw);
    height: 100svh;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    transform: translateX(104%);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -20px 0 60px rgba(10, 28, 53, 0.16);
    padding: 70px 34px 34px;
    transition: transform 0.32s ease;
  }

  .global-nav::before {
    position: absolute;
    inset: 0 100% 0 -100vw;
    background: rgba(7, 19, 36, 0.38);
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .global-nav.is-open {
    transform: translateX(0);
  }

  .global-nav.is-open::before {
    opacity: 1;
  }

  .global-nav > a:not(.nav-line) {
    border-bottom: 1px solid var(--line);
    padding: 17px 0;
    font-size: 0.95rem;
  }

  .global-nav > a:not(.nav-line)::after {
    display: none;
  }

  .nav-line {
    margin-top: 24px;
  }

  .hero {
    padding: 55px 0 98px;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 49px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero h1 {
    font-size: clamp(3rem, 9.5vw, 5rem);
  }

  .hero-visual {
    width: min(720px, 100%);
    margin-inline: auto;
    padding-left: 0;
  }

  .hero-image-frame img {
    height: 560px;
  }

  .hero-flow {
    left: auto;
  }

  .approach-layout,
  .case-top,
  .company-layout {
    grid-template-columns: 1fr;
  }

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

  .price-panel {
    padding: 22px;
  }

  .approach-layout {
    gap: 62px;
  }

  .approach-image {
    margin-right: -24px;
    margin-left: -24px;
  }

  .approach-image > img {
    min-height: 0;
    height: 560px;
    border-radius: 0;
  }

  .core-service {
    grid-template-columns: 1fr;
  }

  .core-service-image img {
    height: 440px;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .case-top {
    gap: 48px;
  }

  .case-image img {
    height: 520px;
  }

  .price-visual {
    height: 420px;
  }

  .case-row {
    grid-template-columns: 0.75fr 1fr 55px 1fr;
  }

  .case-name,
  .case-before,
  .case-after {
    padding: 21px;
  }

  .industry-block {
    grid-template-columns: 1fr;
  }

  .company-layout {
    gap: 62px;
  }

  .company-image {
    width: min(680px, 100%);
  }

  .company-image > img {
    height: 560px;
  }
}

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

  .section {
    padding: 82px 0;
  }

  .brand img {
    width: 119px;
    height: 44px;
  }

  .hero {
    padding: 43px 0 83px;
  }

  .hero::before {
    mask-image: linear-gradient(to bottom, #000, transparent 60%);
  }

  .eyebrow,
  .section-label {
    margin-bottom: 13px;
    font-size: 0.68rem;
  }

  .eyebrow::before,
  .section-label::before {
    width: 24px;
    margin-right: 8px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12.1vw, 3.55rem);
    letter-spacing: -0.065em;
    line-height: 1.13;
  }

  .hero h1 span {
    margin-top: 5px;
  }

  .hero-lead {
    margin-top: 21px;
    font-size: 0.98rem;
    line-height: 1.85;
  }

  .hero-actions {
    display: grid;
    margin-top: 27px;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 55px;
  }

  .trust-list {
    display: grid;
    gap: 8px;
    margin-top: 23px;
  }

  .hero-layout {
    gap: 38px;
  }

  .hero-visual {
    padding: 0;
  }

  .hero-image-frame {
    border-radius: 25px;
  }

  .hero-image-frame img {
    height: 420px;
    object-position: 62% center;
  }

  .hero-badge {
    top: -10px;
    right: -5px;
  }

  .hero-flow {
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 11px;
    gap: 6px;
    border-radius: 17px;
    padding: 14px 13px;
  }

  .hero-flow span {
    font-size: 0.68rem;
  }

  .hero-flow small {
    font-size: 0.49rem;
  }

  .hero-flow i {
    font-size: 0.7rem;
  }

  .section-heading h2,
  .approach-copy h2,
  .company-copy h2,
  .contact-heading h2 {
    font-size: clamp(2rem, 9.4vw, 2.75rem);
    line-height: 1.28;
  }

  .problem .section-heading h2 {
    font-size: clamp(1.62rem, 8.4vw, 2.9rem);
  }

  .section-heading > p:last-child {
    margin-top: 17px;
    font-size: 0.91rem;
  }

  .problem::after {
    display: none;
  }

  .problem-grid {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .problem-card {
    display: grid;
    min-height: 0;
    align-items: stretch;
    padding: 21px 20px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .problem-card-head {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
  }

  .problem-card .icon-box {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .problem-card .icon-box svg {
    width: 34px;
    height: 34px;
  }

  .problem-card h3 {
    margin: 0 0 5px;
    font-size: 1.05rem;
  }

  .problem-card p {
    font-size: 0.82rem;
    line-height: 1.76;
  }

  .problem-tag {
    padding: 6px 9px;
    font-size: 0.61rem;
  }

  .problem-card:nth-child(2)[data-reveal],
  .problem-card:nth-child(3)[data-reveal],
  .problem-card:nth-child(2)[data-reveal].is-visible,
  .problem-card:nth-child(3)[data-reveal].is-visible {
    transform: translateY(0);
  }

  .approach-layout {
    gap: 48px;
  }

  .approach-image {
    margin-right: -14px;
    margin-left: -14px;
  }

  .approach-image > img {
    height: 430px;
    object-position: 57% center;
  }

  .approach-image > p {
    right: 15px;
    bottom: 15px;
  }

  .approach-lead {
    margin-top: 19px;
    font-size: 0.88rem;
  }

  .process-grid {
    margin-top: 34px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-card {
    display: grid;
    min-height: 0;
    align-items: stretch;
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-card-head {
    align-items: center;
  }

  .process-icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
  }

  .process-icon svg {
    width: 32px;
    height: 32px;
  }

  .process-card h3 {
    margin: 0 0 4px;
  }

  .process-card p {
    font-size: 0.8rem;
    line-height: 1.72;
  }

  .mobile-only {
    display: initial;
  }

  .desktop-only {
    display: none;
  }

  .core-service {
    margin-top: 42px;
    border-radius: 25px;
  }

  .core-service-image img {
    height: 300px;
  }

  .core-service-body {
    padding: 28px 23px 31px;
  }

  .core-service h3 {
    font-size: 1.43rem;
  }

  .core-service ul {
    margin: 21px 0 24px;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .service-image img {
    height: 245px;
  }

  .case-top {
    gap: 35px;
  }

  .case-image img {
    height: 380px;
    border-radius: 24px;
    object-position: 56% center;
  }

  .case-list {
    margin-top: 40px;
  }

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

  .case-name {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    grid-column: 1 / -1;
    padding: 17px 19px;
  }

  .case-name h3 {
    font-size: 0.92rem;
  }

  .case-before,
  .case-after {
    padding: 18px;
  }

  .case-before {
    border-bottom: 1px solid var(--line);
  }

  .case-arrow {
    height: 38px;
    transform: rotate(90deg);
  }

  .case-arrow svg {
    width: 23px;
    height: 23px;
  }

  .case-before p,
  .case-after p {
    font-size: 0.76rem;
  }

  .case-note {
    line-height: 1.6;
  }

  .price-intro {
    gap: 20px;
    padding: 8px 7px 2px;
  }

  .price-intro > p {
    font-size: 0.85rem;
  }

  .price-visual {
    height: 430px;
    margin-top: 0;
    border-radius: 25px;
  }

  .price-visual::after {
    background: linear-gradient(0deg, rgba(7, 24, 46, 0.82), rgba(7, 24, 46, 0.04) 72%);
  }

  .price-visual > img {
    object-position: 63% center;
  }

  .price-visual > div {
    top: auto;
    right: 21px;
    bottom: 21px;
    left: 21px;
    width: auto;
    transform: none;
  }

  .price-visual strong {
    font-size: 1.55rem;
  }

  .price-visual p {
    font-size: 0.76rem;
  }

  .price-flow {
    margin-top: 22px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .price-flow > .price-card {
    display: grid;
    min-height: 142px;
    align-items: center;
    margin: 0;
    padding: 22px;
    grid-column: auto;
    grid-template-columns: 1fr auto;
    gap: 3px 15px;
  }

  .price-card-top,
  .price-card h3,
  .price-card p {
    grid-column: 1;
  }

  .price-card h3 {
    min-height: 0;
    margin: 4px 0;
  }

  .price-card strong {
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .price-connector {
    display: grid;
    height: 27px;
    transform: rotate(90deg);
  }

  .price-options {
    padding: 14px;
  }

  .price-options-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .price-options-grid {
    grid-template-columns: 1fr;
  }

  .price-tail {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .price-panel {
    border-radius: 25px;
    padding: 14px;
  }

  .price-tail > span {
    justify-self: start;
  }

  .price-tail > div {
    padding: 10px 0 0;
    border-top: 1px solid #e8e0d5;
    border-left: 0;
  }

  .price-tail > a {
    grid-column: auto;
    padding: 10px 0 0;
    border-top: 1px solid #e8e0d5;
  }

  .industry-block {
    margin-top: 55px;
    border-radius: 24px;
    padding: 27px 21px;
    gap: 25px;
  }

  .industry-block h3 {
    font-size: 1.45rem;
  }

  .industry-block ul {
    grid-template-columns: repeat(6, 1fr);
    gap: 21px 8px;
  }

  .industry-block li {
    grid-column: span 2;
    border-radius: 16px;
    padding: 12px 4px 10px;
  }

  .industry-block li:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .industry-block li:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .company-layout {
    gap: 49px;
  }

  .company-image > img {
    height: 340px;
    border-radius: 25px;
    object-position: left center;
  }

  .company-mark {
    right: 12px;
    bottom: -28px;
    width: 88px;
    height: 88px;
    border-width: 6px;
  }

  .company-mark img {
    width: 48px;
    height: 48px;
  }

  .company-image-note {
    bottom: 14px;
    left: 14px;
    font-size: 0.61rem;
  }

  .company-lead {
    margin: 21px 0 29px;
    font-size: 0.86rem;
  }

  .company-copy dl > div {
    grid-template-columns: 86px 1fr;
    gap: 13px;
  }

  .contact-methods {
    margin-top: 38px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-card,
  .contact-card--phone {
    min-height: 158px;
    grid-column: auto;
    padding: 21px;
  }

  .contact-card--line {
    min-height: 190px;
    padding-right: 125px;
  }

  .contact-card--line > img {
    right: 17px;
    bottom: 17px;
    width: 92px;
    height: 92px;
  }

  .mail-form {
    margin-top: 14px;
    border-radius: 24px;
    padding: 27px 20px;
  }

  .form-heading {
    display: grid;
    gap: 12px;
    margin-bottom: 26px;
  }

  .form-heading h3 {
    font-size: 1.4rem;
  }

  .form-heading > p {
    text-align: left;
  }

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

  .form-full {
    grid-column: auto;
  }

  .form-submit {
    min-width: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    display: grid;
    gap: 6px;
  }

  .ai-assistant {
    right: 12px;
    bottom: 12px;
  }

  .ai-assistant-launcher {
    min-height: 54px;
    padding: 6px 14px 6px 6px;
  }

  .ai-assistant-launcher-icon {
    width: 40px;
    height: 40px;
  }

  .ai-assistant-panel {
    bottom: 65px;
    width: calc(100vw - 24px);
    max-height: min(620px, calc(100svh - 95px));
  }

  .ai-assistant-messages {
    max-height: min(220px, 30svh);
  }
}

@media (min-width: 901px) {
  html {
    scroll-padding-top: var(--header-height);
  }

  .section {
    display: flex;
    min-height: calc(100svh - var(--header-height));
    align-items: center;
    padding: clamp(46px, 6.2vh, 68px) 0;
  }

  .section > .container {
    width: min(var(--container), calc(100% - 48px));
  }

  .hero {
    display: flex;
    min-height: calc(100svh - var(--header-height));
    align-items: center;
    padding: clamp(34px, 5vh, 54px) 0;
  }

  .hero-layout {
    min-height: 0;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 4.6vw, 4.55rem);
  }

  .hero-lead {
    margin-top: 20px;
    line-height: 1.75;
  }

  .hero-actions {
    margin-top: 25px;
  }

  .trust-list {
    margin-top: 18px;
  }

  .hero-image-frame img {
    height: clamp(400px, 52svh, 500px);
  }

  .hero-flow {
    margin-top: 10px;
    border-radius: 18px;
    padding: 13px 17px;
  }

  .section-heading h2,
  .company-copy h2,
  .contact-heading h2 {
    font-size: clamp(2.15rem, 3.5vw, 3.35rem);
  }

  .section-heading > p:last-child {
    margin-top: 14px;
  }

  .problem-grid {
    margin-top: 26px;
    gap: 13px;
  }

  .problem-card {
    min-height: 170px;
    border-radius: 22px;
    padding: 20px 22px;
    grid-template-columns: 92px 1fr;
    gap: 17px;
  }

  .problem-card-head {
    gap: 10px;
  }

  .problem-card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .problem-card .icon-box svg {
    width: 35px;
    height: 35px;
  }

  .problem-card h3 {
    margin-bottom: 6px;
    font-size: 1.08rem;
  }

  .problem-card p {
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .approach-layout {
    gap: 48px;
  }

  .approach-image > img {
    height: min(550px, 64svh);
    min-height: 0;
  }

  .approach-copy h2 {
    font-size: clamp(2.05rem, 3.2vw, 3.05rem);
  }

  .approach-lead {
    margin-top: 17px;
    line-height: 1.75;
  }

  .process-grid {
    margin-top: 25px;
    gap: 11px;
  }

  .process-card {
    min-height: 154px;
    border-radius: 19px;
    padding: 16px;
  }

  .process-icon {
    width: 47px;
    height: 47px;
    border-radius: 14px;
  }

  .process-icon svg {
    width: 29px;
    height: 29px;
  }

  .process-card h3 {
    margin: 12px 0 4px;
    font-size: 0.95rem;
  }

  .process-card p {
    font-size: 0.73rem;
    line-height: 1.58;
  }

  .core-service {
    margin-top: 25px;
    border-radius: 26px;
    grid-template-columns: 1.12fr 0.88fr;
  }

  .service.section {
    padding: 20px 0;
  }

  .core-service-image img {
    height: 250px;
  }

  .core-service-body {
    padding: 25px 30px;
  }

  .core-service h3 {
    font-size: 1.43rem;
  }

  .core-service ul {
    margin: 15px 0 16px;
    gap: 5px 13px;
  }

  .service-grid {
    margin-top: 13px;
    gap: 13px;
  }

  .service-card {
    border-radius: 22px;
  }

  .service-image {
    margin: 8px 8px 0;
    border-radius: 15px;
  }

  .service-image img {
    height: 112px;
  }

  .service-body {
    padding: 16px 18px 19px;
  }

  .service-card h3 {
    margin: 2px 0 5px;
    font-size: 1.05rem;
  }

  .service-body > p {
    font-size: 0.78rem;
  }

  .service-body .service-link {
    margin-top: 10px;
    font-size: 0.72rem;
  }

  .case-top {
    gap: 46px;
  }

  .case-image img {
    height: 255px;
    border-radius: 25px;
  }

  .case-list {
    margin-top: 24px;
    gap: 8px;
  }

  .case-row {
    border-radius: 18px;
  }

  .case-name,
  .case-before,
  .case-after {
    padding: 14px 18px;
  }

  .case-name h3 {
    margin-top: 5px;
    font-size: 0.9rem;
  }

  .case-before p,
  .case-after p {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .case-note {
    margin-top: 10px;
  }

  .price-panel {
    border-radius: 30px;
    padding: 20px;
  }

  .price-overview {
    grid-template-columns: 0.74fr 1.26fr;
    gap: 20px;
  }

  .price-intro {
    gap: 14px;
    padding: 8px 6px 8px 10px;
  }

  .price-intro .section-heading h2 {
    font-size: clamp(2.05rem, 3vw, 2.85rem);
  }

  .price-intro > p {
    font-size: 0.84rem;
    line-height: 1.72;
  }

  .price-visual {
    height: 228px;
    border-radius: 21px;
  }

  .price-visual > div {
    left: 28px;
    width: min(520px, 58%);
  }

  .price-visual strong {
    font-size: clamp(1.45rem, 2.35vw, 2.1rem);
  }

  .price-flow {
    margin-top: 16px;
    grid-template-columns: minmax(165px, 0.66fr) 42px minmax(0, 3fr);
  }

  .price-card {
    border-radius: 19px;
    padding: 15px 16px;
  }

  .price-card h3 {
    min-height: 0;
    margin: 7px 0 9px;
    font-size: 0.85rem;
  }

  .price-card strong {
    font-size: clamp(1.35rem, 2vw, 1.8rem);
  }

  .price-card p {
    margin-top: 6px;
  }

  .price-options {
    border-radius: 22px;
    padding: 12px;
  }

  .price-options-label {
    margin-bottom: 9px;
  }

  .price-options-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
  }

  .price-options-grid .price-card {
    display: block;
    min-height: 0;
  }

  .price-options-grid .price-card-top,
  .price-options-grid .price-card h3,
  .price-options-grid .price-card p,
  .price-options-grid .price-card strong {
    grid-column: auto;
    grid-row: auto;
  }

  .price-tail {
    margin-top: 10px;
    border-radius: 17px;
    padding: 11px 15px;
    gap: 16px;
  }

  .price-tail > div,
  .price-tail > a {
    padding-left: 16px;
  }

  .price-note {
    margin: 7px 4px 0;
  }

  .company-layout {
    gap: 54px;
  }

  .company-image > img {
    height: min(500px, 62svh);
    border-radius: 28px;
  }

  .company-lead {
    margin: 18px 0 23px;
    line-height: 1.75;
  }

  .company-copy dl > div {
    padding: 9px 0;
  }

  .contact-heading {
    max-width: 760px;
  }

  .contact.section {
    padding: 20px 0;
  }

  .contact-heading h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.18;
  }

  .contact-heading > p:last-child {
    margin-top: 9px;
  }

  .contact-content {
    display: grid;
    align-items: stretch;
    margin-top: 17px;
    grid-template-columns: 0.63fr 1.37fr;
    gap: 14px;
  }

  .contact-methods {
    align-self: start;
    margin-top: 0;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 9px;
  }

  .contact-card,
  .contact-card--phone {
    min-height: 112px;
    grid-column: auto;
    border-radius: 20px;
    padding: 16px 18px;
  }

  .contact-card--line {
    min-height: 148px;
    padding-right: 116px;
  }

  .contact-card--line > img {
    right: 15px;
    bottom: 15px;
    width: 85px;
    height: 85px;
    border-width: 5px;
  }

  .contact-card h3 {
    font-size: 1.05rem;
  }

  .contact-card--phone > strong {
    font-size: 1rem;
  }

  .mail-form {
    margin-top: 0;
    border-radius: 24px;
    padding: 22px 24px;
  }

  .form-heading {
    margin-bottom: 15px;
  }

  .form-heading h3 {
    font-size: 1.45rem;
  }

  .form-grid {
    gap: 10px 13px;
  }

  .form-grid label {
    gap: 5px;
  }

  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    min-height: 43px;
    border-radius: 10px;
    padding: 9px 11px;
  }

  .form-grid textarea {
    min-height: 80px;
  }

  .form-submit {
    min-height: 49px;
    margin-top: 14px;
  }
}

/* v34: 実績と無料相談の収益導線 */
.work-cases {
  border-top: 1px solid #e8edf3;
  border-bottom: 1px solid #e8edf3;
  padding: 58px 0;
  background: #fff;
}

.work-cases-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.work-cases-heading h2 {
  margin-top: 7px;
  color: #0a1c35;
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.work-cases-heading > p {
  max-width: 440px;
  margin: 0 0 2px;
  color: #718096;
  font-size: 0.84rem;
  line-height: 1.65;
}

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

.work-case-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(12, 37, 71, 0.1);
  border-radius: 18px;
  padding: 21px 22px;
  background: #fbfcfe;
  box-shadow: none;
}

.work-case-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(20, 162, 103, 0.55);
  content: "";
}

.work-case-card--blue::before {
  background: rgba(31, 99, 242, 0.55);
}

.work-case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #607087;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.work-case-top b {
  display: none;
}

.work-case-location {
  margin: 12px 0 3px;
  color: #167a53;
  font-size: 0.73rem;
  font-weight: 800;
}

.work-case-card--blue .work-case-location {
  color: #1f63f2;
}

.work-case-card h3 {
  margin: 0;
  color: #0a1c35;
  font-size: clamp(1.22rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.work-case-summary {
  min-height: 0;
  margin: 7px 0 14px;
  color: #415168;
  font-size: 0.84rem;
  line-height: 1.65;
}

.work-case-detail {
  border-top: 1px solid #e3e9f0;
  border-radius: 0;
  padding: 13px 0 0;
  background: transparent;
}

.work-case-card--blue .work-case-detail {
  background: transparent;
}

.work-case-detail strong,
.work-case-result span {
  color: #6b7789;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.work-case-detail ul {
  display: grid;
  gap: 5px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.work-case-detail li {
  position: relative;
  padding-left: 16px;
  color: #24364c;
  font-size: 0.78rem;
  font-weight: 650;
}

.work-case-detail li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #14a267;
  content: "";
}

.work-case-card--blue .work-case-detail li::before {
  background: #1f63f2;
}

.work-case-result {
  margin-top: 11px;
}

.work-case-result p {
  margin: 3px 0 0;
  color: #4c5c70;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.55;
}

.work-case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  color: #53677e;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.work-case-link:hover {
  color: #1f63f2;
}

.work-cases-note {
  margin: 12px 2px 0;
  color: #8a96a7;
  font-size: 0.68rem;
}

.consultation-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.consultation-menu article {
  display: flex;
  min-height: 218px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.consultation-menu article > span {
  color: #8fc2ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.consultation-menu h3 {
  margin: 8px 0 8px;
  font-size: 1.2rem;
}

.consultation-menu p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  line-height: 1.7;
}

.consultation-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

.consultation-menu a:hover {
  color: #8fc2ff;
}

@media (max-width: 820px) {
  .work-cases-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .work-cases-grid,
  .consultation-menu {
    grid-template-columns: 1fr;
  }

  .work-case-summary {
    min-height: 0;
  }

  .consultation-menu article {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .work-case-card {
    border-radius: 16px;
    padding: 19px 18px;
  }

  .work-case-top span {
    max-width: 75%;
  }

  .consultation-menu article {
    border-radius: 18px;
    padding: 19px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* v37: first-phase service, pricing, flow and FAQ update */
.button--secondary {
  border-color: #bfd0e9;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
}

.button--secondary:hover {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 14px 32px rgba(19, 43, 82, 0.12);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(30, 99, 242, 0.38);
  outline-offset: 3px;
}

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

.service-card,
.core-service {
  min-width: 0;
}

.service-body,
.core-service-body {
  min-width: 0;
}

.core-service-body > .service-problem,
.core-service-body > .service-support,
.service-body > .service-problem,
.service-body > .service-support {
  margin-top: 10px;
  line-height: 1.75;
}

.service-problem strong,
.service-support strong {
  display: block;
  margin-bottom: 1px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 900;
}

.core-service-body > .service-price,
.service-body > .service-price {
  margin-top: 17px;
  color: var(--blue-deep);
  font-size: 0.92rem;
  font-weight: 900;
}

.core-service-body .service-link,
.service-body .service-link {
  margin-top: 19px;
}

.service-card--maintenance {
  border-color: #bfd9ce;
  background: linear-gradient(180deg, #fff, #f5fbf8);
}

.service-card--maintenance .service-image > span {
  background: #167a53;
}

.service-card--maintenance .service-symbol > span {
  background: #e3f3eb;
  color: #167a53;
  font-weight: 900;
}

.service-card--maintenance .service-symbol small,
.service-card--maintenance .service-link,
.service-card--maintenance .service-price {
  color: #167a53;
}

.pricing-details {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pricing-detail {
  min-width: 0;
  border: 1px solid #dfe7f1;
  border-radius: 25px;
  background: #fff;
  padding: 25px;
  box-shadow: 0 10px 26px rgba(19, 43, 82, 0.055);
}

.pricing-detail--maintenance {
  grid-column: 1 / -1;
  border-color: #a9d2bd;
  background: linear-gradient(140deg, #f2fbf6, #fff 58%);
}

.pricing-detail header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.pricing-detail header > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: #e9f1ff;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
}

.pricing-detail header small {
  display: block;
  color: #75859c;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pricing-detail h3 {
  margin: 2px 0 0;
  color: var(--navy);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.pricing-lead {
  margin: -6px 0 17px;
  color: #167a53;
  font-weight: 850;
}

.pricing-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-list > li {
  display: grid;
  min-width: 0;
  align-items: center;
  border-top: 1px solid #e7edf4;
  padding: 12px 0;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
}

.pricing-list > li:last-child {
  border-bottom: 1px solid #e7edf4;
}

.pricing-list span {
  min-width: 0;
  color: #334860;
  font-size: 0.82rem;
  font-weight: 700;
}

.pricing-list span small {
  display: inline-block;
  margin-left: 5px;
  border-radius: 999px;
  background: #edf3fb;
  color: #5e718a;
  padding: 2px 7px;
  font-size: 0.64rem;
  font-weight: 850;
}

.pricing-list strong {
  color: var(--navy);
  font-size: 0.9rem;
  white-space: nowrap;
}

.pricing-list-recommended {
  margin-inline: -11px;
  border: 1px solid #b7cdf2 !important;
  border-radius: 14px;
  background: #f0f6ff;
  padding-inline: 11px !important;
}

.pricing-list-recommended span small {
  background: var(--blue);
  color: #fff;
}

.pricing-detail details {
  margin-top: 15px;
  border-radius: 15px;
  background: #f6f9fd;
  padding: 0 15px;
}

.pricing-detail summary {
  padding: 12px 25px 12px 0;
  color: #3d536e;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
}

.pricing-detail details > p,
.pricing-detail details > ul {
  margin: 0;
  border-top: 1px solid #dfe7f1;
  padding: 12px 0 14px;
  color: #53677f;
  font-size: 0.75rem;
  line-height: 1.75;
}

.pricing-detail details > p + p {
  border-top: 0;
  padding-top: 0;
}

.pricing-check-list {
  display: grid;
  gap: 5px;
  padding-left: 20px !important;
}

.pricing-small-note {
  margin: 14px 0 0;
  color: #617188;
  font-size: 0.7rem;
  line-height: 1.75;
}

.pricing-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 17px;
  border: 1px solid #c2d3ee;
  border-radius: 999px;
  color: var(--blue-deep);
  padding: 0 17px;
  font-size: 0.76rem;
  font-weight: 900;
}

.pricing-cta:hover {
  border-color: var(--blue);
  background: #f0f6ff;
}

.maintenance-combination {
  display: grid;
  align-items: center;
  margin-top: 18px;
  border: 1px solid #b7cfef;
  border-radius: 25px;
  background: linear-gradient(135deg, #eef5ff, #fff 62%);
  padding: 25px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
}

.maintenance-combination .section-label {
  margin-bottom: 7px;
  font-size: 0.62rem;
}

.maintenance-combination h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.5;
}

.maintenance-combination > div > p:last-child {
  margin: 8px 0 0;
  color: #60718b;
  font-size: 0.75rem;
  line-height: 1.7;
}

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

.maintenance-combination-grid article {
  position: relative;
  min-width: 0;
  border: 1px solid #d3deed;
  border-radius: 18px;
  background: #fff;
  padding: 18px;
}

.maintenance-combination-grid article > span {
  display: inline-block;
  border-radius: 999px;
  background: #edf2f8;
  color: #60718b;
  padding: 4px 8px;
  font-size: 0.62rem;
  font-weight: 900;
}

.maintenance-combination-grid .is-recommended {
  border-color: var(--blue);
  box-shadow: 0 10px 24px rgba(30, 99, 242, 0.1);
}

.maintenance-combination-grid .is-recommended > span {
  background: var(--blue);
  color: #fff;
}

.maintenance-combination-grid h4 {
  margin: 8px 0 5px;
  color: var(--navy);
}

.maintenance-combination-grid p {
  margin: 0;
  color: #50627b;
  font-size: 0.78rem;
  line-height: 1.7;
}

.maintenance-combination-grid strong {
  color: var(--blue-deep);
}

.request-flow {
  background: #f7faff;
}

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

.request-flow-list li {
  min-width: 0;
  border: 1px solid #dce6f3;
  border-radius: 22px;
  background: #fff;
  padding: 23px;
  box-shadow: 0 10px 28px rgba(19, 43, 82, 0.055);
}

.request-flow-list li > span {
  display: block;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.request-flow-list h3 {
  margin: 6px 0;
  color: var(--navy);
  font-size: 1rem;
}

.request-flow-list p {
  margin: 0;
  color: #60718b;
  font-size: 0.78rem;
  line-height: 1.7;
}

.faq {
  background: #fff;
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.35fr);
  gap: 68px;
}

.faq-list {
  border-top: 1px solid #dce6f3;
}

.faq-list details {
  border-bottom: 1px solid #dce6f3;
}

.faq-list summary {
  position: relative;
  padding: 19px 42px 19px 0;
  color: var(--navy);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.65;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #eaf2ff;
  color: var(--blue);
  content: "+";
  font-size: 1rem;
  line-height: 21px;
  text-align: center;
}

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

.faq-list p {
  margin: -3px 0 19px;
  color: #586b83;
  font-size: 0.82rem;
  line-height: 1.85;
}

.form-grid label > span small {
  margin-left: 4px;
  color: #7b899b;
  font-size: 0.68rem;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .pricing-details {
    grid-template-columns: 1fr;
  }

  .pricing-detail--maintenance {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .service-card:last-child {
    grid-column: auto;
  }

  .maintenance-combination,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    gap: 35px;
  }

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

@media (max-width: 680px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .core-service-body > .service-problem,
  .core-service-body > .service-support,
  .service-body > .service-problem,
  .service-body > .service-support {
    font-size: 0.82rem;
  }

  .pricing-details {
    margin-top: 17px;
    gap: 12px;
  }

  .pricing-detail,
  .maintenance-combination {
    border-radius: 19px;
    padding: 19px 17px;
  }

  .pricing-detail header {
    align-items: flex-start;
  }

  .pricing-list > li {
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
    gap: 3px;
  }

  .pricing-list strong {
    white-space: normal;
  }

  .pricing-list-recommended {
    margin-inline: -7px;
    padding-inline: 7px !important;
  }

  .pricing-cta {
    width: 100%;
  }

  .maintenance-combination-grid,
  .request-flow-list {
    grid-template-columns: 1fr;
  }

  .request-flow-list {
    margin-top: 34px;
    gap: 10px;
  }

  .request-flow-list li {
    border-radius: 18px;
    padding: 19px;
  }

  .faq-list summary {
    padding-right: 38px;
    font-size: 0.84rem;
  }

  .faq-list p {
    font-size: 0.78rem;
  }
}
