:root {
  --page-max: 1440px;
  --content-max: 1280px;
  --ink: #21242e;
  --muted: #727782;
  --border: #e0e3e8;
  --accent: #5d00ff;
  --accent-deep: #3e36b2;
  --accent-soft: #a6b2d9;
  --signal: #fef200;
  --surface: #ffffff;
  --surface-soft: #f7f8fb;
  --shadow-accent: 0 16px 34px rgba(93, 0, 255, 0.18);
  --accent-grad: linear-gradient(135deg, #5d00ff 0%, #3e36b2 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

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

.site-shell {
  max-width: var(--page-max);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  width: 54px;
  height: auto;
  flex: 0 0 auto;
}

.brand__text {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.brand__name {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.brand__en {
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.primary-nav a,
.footer-nav a {
  transition: color 180ms ease;
}

.primary-nav a:hover,
.footer-nav a:hover {
  color: var(--accent);
}

.primary-nav .is-active {
  color: var(--accent-deep);
}

.lang-switch {
  display: grid;
  min-width: 54px;
  min-height: 30px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  transition: border-color 180ms ease, color 180ms ease;
}

.lang-switch:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lang-switch--mobile {
  min-width: 44px;
  min-height: 38px;
  font-size: 11px;
}

.linkedin {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 3px;
  background: #2c6cb7;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.linkedin--mobile {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  font-size: 14px;
}

.mobile-nav {
  position: relative;
}

.mobile-nav summary {
  display: flex;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  list-style: none;
}

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

.mobile-nav summary span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: min(82vw, 320px);
  gap: 2px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 46px rgba(33, 36, 46, 0.12);
}

.mobile-nav nav a {
  padding: 13px 14px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.mobile-nav nav a:hover {
  background: var(--surface-soft);
  color: var(--accent);
}

.hero__grid {
  align-items: start;
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-top: 34px;
}

.hero__title {
  margin: 0;
  color: var(--accent-deep);
  font-size: clamp(38px, 10.2vw, 54px);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.34;
}

.hero__title span {
  display: inline-block;
}

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

.hero__lead {
  width: min(100%, 34rem);
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  overflow-wrap: anywhere;
}

.hero__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  width: min(100%, 320px);
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

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

.button--primary {
  background: var(--accent-grad);
  box-shadow: var(--shadow-accent);
  color: #ffffff;
}

.button--secondary {
  border: 1px solid var(--accent-deep);
  color: var(--accent-deep);
}

.button--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero__media {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  aspect-ratio: 10 / 7;
  overflow: hidden;
  background: var(--surface-soft);
}

.media-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media .media-fill {
  object-position: 53% center;
}

.trust-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  min-height: 86px;
  padding: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.trust-item__icon,
.trust-item__icon svg {
  width: 48px;
  height: 48px;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  color: var(--accent-deep);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.trust-item small {
  margin-top: 4px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.section-rule {
  position: relative;
}

.section-rule::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 40px), var(--content-max));
  height: 1px;
  content: "";
  background: var(--border);
  transform: translateX(-50%);
}

.section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 5.8vw, 32px);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.section-heading p {
  margin: 0 0 4px;
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.mission-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0;
  background: #ffffff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.mission-card:hover {
  border-color: rgba(93, 0, 255, 0.24);
  box-shadow: 0 18px 50px rgba(33, 36, 46, 0.08);
  transform: translateY(-2px);
}

.mission-card__media {
  aspect-ratio: 8 / 5;
  overflow: hidden;
  background: var(--surface-soft);
}

.mission-card__body {
  padding: 28px 24px 30px;
  text-align: center;
}

.mission-card__body h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 5vw, 24px);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.accent-line {
  display: flex;
  width: 56px;
  height: 3px;
  margin: 18px auto 0;
}

.accent-line::before,
.accent-line::after {
  width: 50%;
  content: "";
}

.accent-line::before {
  background: var(--signal);
}

.accent-line::after {
  background: var(--accent);
}

.mission-card__body p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  overflow-wrap: anywhere;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0;
  background: #ffffff;
}

.service-card__media {
  min-width: 0;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  background: var(--surface-soft);
}

.service-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 22px 18px;
  text-align: center;
}

.service-card__body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.service-card__body p {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.product-grid {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-panel {
  position: relative;
  display: flex;
  min-height: 360px;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(24, 42, 62, 0.92) 0%, rgba(24, 42, 62, 0.72) 42%, rgba(24, 42, 62, 0.2) 100%),
    url("./assets/c.png");
  background-position: right center;
  background-size: cover;
}

.about-panel__content {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  padding: 42px 32px;
  color: #ffffff;
}

.about-panel__content h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.about-panel__en {
  margin: 18px 0 0;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.36em;
  line-height: 1.2;
}

.about-panel__lead {
  margin: 34px 0 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.9;
}

.button--about {
  width: fit-content;
  min-width: 180px;
  margin-top: 34px;
  padding: 0 30px;
  background: var(--accent-grad);
  box-shadow: var(--shadow-accent);
  color: #ffffff;
}

.contact-panel {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px 40px;
  background: var(--accent-grad);
  color: #ffffff;
}

.contact-panel h2 {
  margin: 0;
  font-size: clamp(34px, 8vw, 40px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.15;
}

.contact-panel p {
  margin: 28px 0 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

.button--contact {
  width: fit-content;
  min-width: 190px;
  padding: 0 30px;
  background: #ffffff;
  color: var(--accent);
}

.button--contact:hover {
  opacity: 0.94;
}

.footer {
  background: #ffffff;
}

.footer-brand {
  display: flex;
  align-items: end;
  gap: 20px;
}

.footer-brand img {
  width: 68px;
  height: auto;
  flex: 0 0 auto;
}

.footer-brand__name {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 800;
  line-height: 1.2;
}

.footer-brand__en {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.footer__description {
  margin: 26px 0 0;
  color: rgba(114, 119, 130, 0.76);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
}

.footer-licenses {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.footer-licenses h3,
.footer-nav h3 {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.footer-licenses h3 span,
.footer-nav h3 span {
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.footer-licenses p {
  margin: 6px 0 0;
  color: rgba(114, 119, 130, 0.76);
  font-size: 12px;
  line-height: 1.8;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 22px;
}

.footer-nav section {
  min-width: 0;
}

.footer-nav h3 {
  padding: 0 4px 10px;
  border-bottom: 1px solid var(--border);
  font-family: "Figtree", sans-serif;
  font-weight: 600;
}

.footer-nav a {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 42px;
}

.footer-bottom small {
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.service-page {
  overflow: hidden;
}

.service-hero {
  position: relative;
  min-height: 292px;
  padding: 45px 0 50px;
  overflow: hidden;
}

.service-hero__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--content-max));
  margin: 0 auto;
}

.accent-line--left {
  margin: 0 0 54px;
}

.service-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 7vw, 60px);
  font-weight: 500;
  letter-spacing: 0.093em;
  line-height: 0.94;
}

.service-hero p {
  margin: 28px 0 0;
  color: var(--accent-soft);
  font-size: clamp(17px, 3vw, 20px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.6;
}

.service-hero__mark {
  position: absolute;
  top: 0;
  right: 0;
  width: 567px;
  height: 280px;
  background: url("./assets/title-mark.svg") right top / contain no-repeat;
}

.service-detail {
  position: relative;
  display: grid;
  width: min(calc(100% - 40px), var(--content-max));
  min-height: 560px;
  margin: 0 auto 170px;
  grid-template-columns: minmax(0, 733px) minmax(0, 1fr);
  column-gap: 80px;
  align-items: center;
}

.service-detail::before {
  position: absolute;
  z-index: 0;
  width: 704px;
  height: 384px;
  content: "";
  background: rgba(166, 178, 217, 0.1);
}

.service-detail--image-left::before {
  bottom: 0;
  left: -80px;
}

.service-detail--image-right {
  grid-template-columns: minmax(0, 463px) minmax(0, 733px);
  column-gap: 84px;
}

.service-detail--image-right::before {
  right: -80px;
  bottom: 0;
}

.service-detail__media {
  position: relative;
  z-index: 1;
  aspect-ratio: 733 / 480;
  overflow: hidden;
  background: var(--surface-soft);
}

.service-detail__content {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.service-detail__meta {
  position: relative;
  min-height: 160px;
  margin-bottom: -12px;
}

.service-detail__meta strong {
  position: absolute;
  right: 0;
  top: 0;
  color: rgba(166, 178, 217, 0.28);
  font-size: clamp(96px, 12vw, 160px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.service-detail__meta span {
  position: absolute;
  right: 166px;
  top: 79px;
  color: var(--accent-soft);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.2;
  white-space: nowrap;
}

.service-detail--image-right .service-detail__meta strong {
  right: auto;
  left: 0;
}

.service-detail--image-right .service-detail__meta span {
  right: auto;
  left: 166px;
}

.service-detail h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(31px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.service-detail__content > p {
  max-width: 452px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.service-features {
  display: grid;
  width: min(100%, 410px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
}

.service-features article {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 18px;
  padding: 0 22px;
  text-align: center;
}

.service-features article + article {
  border-left: 1px solid var(--border);
}

.service-features svg {
  width: 56px;
  height: 56px;
}

.icon-main,
.icon-accent {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.icon-main {
  stroke: var(--accent-deep);
}

.icon-accent {
  stroke: var(--signal);
}

.icon-text {
  fill: var(--accent-deep);
  font-family: "Figtree", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.service-features h3 {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.breadcrumb {
  display: flex;
  width: min(calc(100% - 40px), var(--content-max));
  align-items: center;
  gap: 16px;
  margin: -28px auto 0;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  color: rgba(114, 119, 130, 0.7);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.breadcrumb a {
  transition: color 180ms ease;
}

.breadcrumb a:hover,
.breadcrumb span:last-child {
  color: var(--accent-deep);
}

.contact-page {
  overflow: hidden;
}

.contact-form-section {
  width: min(calc(100% - 40px), var(--content-max));
  margin: 62px auto 142px;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 843px);
  gap: 76px;
  align-items: start;
}

.contact-note {
  margin: 15px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.contact-note span,
.form-row label span {
  color: #d82222;
}

.contact-form {
  --form-label-track: 220px;
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 20px;
}

.form-row {
  display: grid;
  min-width: 0;
  grid-template-columns: 188px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.form-row label {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

.form-row input,
.form-row textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  background: rgba(166, 178, 217, 0.1);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.form-row input {
  min-height: 60px;
  padding: 16px 28px;
}

.form-row textarea {
  min-height: 256px;
  padding: 21px 28px;
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--accent-soft);
  opacity: 1;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(93, 0, 255, 0.34);
  background: rgba(166, 178, 217, 0.14);
  box-shadow: 0 0 0 4px rgba(93, 0, 255, 0.06);
}

.form-row--textarea {
  align-items: start;
}

.form-row--textarea label {
  padding-top: 19px;
}

.form-actions {
  display: flex;
  width: calc(100% - var(--form-label-track));
  margin-left: var(--form-label-track);
  justify-content: center;
  padding-top: 30px;
}

.form-submit {
  display: inline-flex;
  width: min(100%, 288px);
  min-height: 72px;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent-grad);
  color: #ffffff;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.6em;
  line-height: 1;
  text-indent: 0.6em;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.form-submit:hover {
  border-color: var(--accent);
  background: #ffffff;
  color: var(--accent);
  transform: translateY(-1px);
}

.form-submit:active {
  transform: translateY(0);
}

.breadcrumb--contact {
  margin-top: 0;
}

.contact-figma-page {
  overflow: hidden;
}

.contact-figma-section {
  width: min(calc(100% - 40px), var(--content-max));
  margin: 62px auto 142px;
}

.contact-figma-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 843px);
  gap: 76px;
  align-items: start;
}

.figma-static-panel,
.figma-static-form {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 20px;
}

.figma-static-row {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: 188px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.figma-static-row--textarea {
  align-items: start;
}

.figma-static-label {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 60px;
  align-items: center;
  justify-content: flex-start;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

.figma-static-row--textarea .figma-static-label {
  min-height: 256px;
  align-items: flex-start;
  padding-top: 19px;
}

.figma-static-label span,
.figma-static-sample-caption span {
  color: #d82222;
}

.figma-static-field {
  display: flex;
  width: 100%;
  min-width: 0;
  height: 60px;
  min-height: 60px;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 28px;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: rgba(166, 178, 217, 0.1);
  color: var(--accent-soft);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.figma-static-field--textarea {
  height: 256px;
  min-height: 256px;
  align-items: flex-start;
  padding-top: 21px;
}

.figma-static-value {
  display: block;
  width: 100%;
  min-width: 0;
  color: inherit;
  line-height: inherit;
}

.figma-static-field--focused {
  border-color: rgba(93, 0, 255, 0.34);
  background-color: rgba(166, 178, 217, 0.14);
}

.figma-static-field--focused .figma-static-value--filled {
  color: var(--ink);
}

.figma-static-field--error {
  border-color: rgba(188, 82, 103, 0.45);
  background-color: rgba(246, 236, 239, 0.8);
}

.figma-static-actions {
  display: flex;
  width: calc(100% - 220px);
  margin-left: 220px;
  justify-content: center;
  padding-top: 30px;
}

.figma-static-submit {
  display: inline-flex;
  width: min(100%, 288px);
  height: 72px;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent-grad);
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.6em;
  line-height: 1;
  text-indent: 0.6em;
}

.figma-static-samples {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 18px;
}

.figma-static-sample {
  display: grid;
  min-width: 0;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background-color: #ffffff;
}

.figma-static-sample-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.figma-static-sample-body {
  display: grid;
  gap: 10px;
}

.figma-static-sample-caption {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.figma-static-error {
  margin: 0;
  color: #b35a6d;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

@media (min-width: 480px) {
  .hero__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 640px) {
  .footer-licenses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .brand__mark {
    width: 60px;
  }

  .brand__name {
    font-size: 16px;
  }

  .brand__en {
    font-size: 10px;
  }

  .hero__copy {
    padding-top: 54px;
  }

  .hero__media {
    aspect-ratio: 16 / 10;
  }

  .mission-card__body {
    padding: 34px 22px 38px;
  }

  .footer-nav {
    grid-template-columns: repeat(4, minmax(116px, 1fr));
  }
}

@media (min-width: 1024px) {
  .brand__mark {
    width: 45px;
  }

  .brand__name {
    font-size: 16px;
    line-height: 1;
  }

  .hero__copy {
    padding-top: 132px;
  }

  .hero__title {
    width: 820px;
    font-size: 48px;
    letter-spacing: 0.3em;
    line-height: 1.5;
  }

  .hero__title-on-image {
    color: #ffffff;
    text-shadow: 0 1px 16px rgba(16, 34, 52, 0.16);
  }

  .hero__lead {
    max-width: 350px;
    margin-top: 26px;
    font-size: 15px;
  }

  .hero__actions {
    width: 276px;
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .hero__media {
    width: 923px;
    max-width: none;
    margin-right: 0;
    margin-left: -103px;
    margin-top: 46px;
    aspect-ratio: 923 / 560;
  }

  .trust-item {
    min-height: 112px;
    border-left: 1px solid var(--border);
    border-radius: 0;
    padding: 28px 78px;
  }

  .trust-item:last-child {
    border-right: 1px solid var(--border);
  }

  .section-rule::before {
    width: min(100%, var(--content-max));
  }

  .section-heading h2 {
    font-size: 32px;
    letter-spacing: 0.2em;
  }

  .section-heading p {
    font-size: 16px;
    letter-spacing: 0.2em;
  }

  .mission-card__body {
    min-height: 260px;
    padding: 58px 36px 54px;
  }

  .mission-card__body p {
    font-size: 15px;
  }

  .service-card {
    grid-template-columns: 256px minmax(0, 1fr);
    min-height: 160px;
  }

  .service-card__body h3 {
    font-size: 18px;
  }

  .service-card__body p {
    font-size: 15px;
  }

  .about-panel {
    aspect-ratio: 842 / 320;
    min-height: 320px;
    background-size: cover;
  }

  .about-panel__content {
    padding: 44px 48px;
  }

  .footer-nav {
    grid-template-columns: 144px 144px 176px 176px;
    gap: 32px;
  }

  .product-grid {
    gap: 20px;
  }
}

@media (max-width: 1199px) {
  .contact-form-layout {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 48px;
  }

  .contact-figma-layout {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 28px;
  }

  .figma-static-row {
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 28px;
  }

  .contact-form {
    --form-label-track: 196px;
  }

  .figma-static-actions {
    width: calc(100% - 196px);
    margin-left: 196px;
  }

  .service-detail {
    column-gap: 48px;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .service-detail--image-right {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .service-detail__meta span {
    right: 130px;
  }

  .service-detail--image-right .service-detail__meta span {
    left: 130px;
  }
}

@media (max-width: 1023px) {
  .contact-form-section {
    margin: 44px auto 96px;
  }

  .contact-figma-section {
    margin: 44px auto 96px;
  }

  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-figma-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-note {
    margin-top: 0;
  }

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

  .figma-static-row {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .contact-form {
    --form-label-track: 0px;
  }

  .form-row--textarea label {
    padding-top: 0;
  }

  .figma-static-label {
    min-height: 0;
  }

  .figma-static-row--textarea .figma-static-label {
    min-height: 0;
    padding-top: 0;
  }

  .form-actions {
    width: min(100%, calc(100vw - 40px));
    margin-left: 0;
    justify-content: center;
  }

  .figma-static-actions {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

  .figma-static-samples {
    grid-template-columns: 1fr;
  }

  .service-hero {
    min-height: 260px;
    padding: 45px 0 54px;
  }

  .service-hero__mark {
    right: -180px;
  }

  .service-detail,
  .service-detail--image-right {
    min-height: 0;
    margin-bottom: 92px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-detail--image-right .service-detail__media {
    order: -1;
  }

  .service-detail::before {
    width: 75%;
    height: 260px;
  }

  .service-detail--image-left::before,
  .service-detail--image-right::before {
    right: auto;
    bottom: auto;
    left: -20px;
    top: 170px;
  }

  .service-detail__content {
    align-self: auto;
    padding-inline: 0;
    max-width: 100%;
  }

  .service-detail__meta {
    min-height: 116px;
    margin-bottom: -6px;
  }

  .service-detail__meta strong,
  .service-detail--image-right .service-detail__meta strong {
    left: 0;
    right: auto;
  }

  .service-detail__meta span,
  .service-detail--image-right .service-detail__meta span {
    left: 136px;
    right: auto;
    top: 56px;
  }

  .service-detail__content > p {
    max-width: 620px;
  }

  .breadcrumb {
    margin-top: -22px;
  }
}

@media (max-width: 767px) {
  .contact-form-section {
    margin: 34px auto 76px;
  }

  .contact-figma-section {
    margin: 34px auto 76px;
  }

  .contact-form {
    gap: 18px;
  }

  .figma-static-form {
    gap: 18px;
  }

  .form-row label,
  .contact-note {
    font-size: 15px;
  }

  .figma-static-label,
  .figma-static-sample-title,
  .figma-static-sample-caption {
    font-size: 15px;
  }

  .form-row input {
    min-height: 56px;
    padding: 15px 18px;
  }

  .form-row textarea {
    min-height: 220px;
    padding: 17px 18px;
  }

  .figma-static-field {
    height: 56px;
    min-height: 56px;
    padding: 15px 18px;
    font-size: 15px;
  }

  .figma-static-field--textarea {
    height: 220px;
    min-height: 220px;
    padding: 17px 18px;
  }

  .form-actions {
    display: flex;
    width: 100%;
    margin-left: 0;
    justify-content: center;
    padding-top: 16px;
  }

  .form-submit {
    position: static;
    right: auto;
    width: min(250px, 100%);
    min-height: 56px;
    margin-inline: auto;
    font-size: 15px;
  }

  .figma-static-actions {
    padding-top: 16px;
  }

  .figma-static-submit {
    width: min(250px, 100%);
    height: 56px;
    min-height: 56px;
    font-size: 15px;
  }

  .figma-static-sample {
    padding: 18px;
  }

  .service-hero {
    min-height: 200px;
    padding: 36px 0 42px;
  }

  .service-hero__mark {
    top: 24px;
    right: -150px;
    width: 330px;
    height: 163px;
  }

  .accent-line--left {
    margin-bottom: 30px;
  }

  .service-hero h1 {
    font-size: clamp(35px, 9.2vw, 38px);
    letter-spacing: 0.045em;
    line-height: 1.08;
  }

  .service-hero p {
    margin-top: 14px;
    font-size: 14px;
    letter-spacing: 0.18em;
  }

  .service-detail,
  .service-detail--image-right {
    width: min(calc(100% - 40px), var(--content-max));
    margin-bottom: 76px;
    gap: 28px;
  }

  .service-detail::before {
    top: 112px;
    height: 188px;
  }

  .service-detail__media {
    aspect-ratio: 16 / 10;
  }

  .service-detail__meta {
    min-height: 92px;
  }

  .service-detail__meta strong {
    font-size: 88px;
  }

  .service-detail__meta span,
  .service-detail--image-right .service-detail__meta span {
    left: 104px;
    top: 38px;
    font-size: 13px;
    letter-spacing: 0.18em;
  }

  .service-detail h2 {
    font-size: 28px;
  }

  .service-detail__content > p {
    max-width: 100%;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.9;
  }

  .service-features {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 32px;
  }

  .service-features article {
    grid-template-columns: 46px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    text-align: left;
  }

  .service-features article + article {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .service-features svg {
    width: 46px;
    height: 46px;
  }

  .service-features h3 {
    font-size: 13px;
    word-break: break-word;
  }

  .breadcrumb {
    font-size: 14px;
  }

  .hero__title {
    font-size: 35px;
    letter-spacing: 0.02em;
    line-height: 1.38;
  }

  .hero__lead {
    max-width: 350px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.85;
  }

  .hero__actions {
    gap: 12px;
    margin-top: 26px;
  }

  .button {
    min-height: 48px;
    font-size: 13px;
  }

  .trust-strip {
    gap: 0;
  }

  .trust-item {
    min-height: 92px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 10px;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--border);
  }

  .trust-item__icon,
  .trust-item__icon svg {
    width: 42px;
    height: 42px;
  }

  .trust-item strong {
    font-size: 14px;
    line-height: 1.45;
  }

  .trust-item small {
    font-size: 11px;
    line-height: 1.55;
  }

  .mission-card__body p {
    max-width: 310px;
    margin-right: auto;
    margin-left: auto;
  }

  .section-heading {
    display: grid;
    gap: 7px;
  }

  .section-heading h2 {
    font-size: 29px;
    letter-spacing: 0.055em;
    line-height: 1.35;
  }

  .section-heading p {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-align: left;
  }

  .mission-card__body {
    padding: 30px 22px 34px;
  }

  .mission-card__body h3 {
    font-size: 21px;
    line-height: 1.45;
  }

  .mission-card__body p {
    font-size: 13px;
    line-height: 1.9;
  }

  .product-grid {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-right: auto;
    margin-left: auto;
    gap: 12px;
  }

  .service-card__body {
    min-height: 84px;
    padding: 13px 8px;
  }

  .service-card__body h3 {
    font-size: 13px;
    line-height: 1.42;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .service-card__body p {
    font-size: 10px;
    line-height: 1.6;
  }

  .about-panel__content h2 {
    font-size: 28px;
  }

  .about-panel__en {
    font-size: 15px;
    letter-spacing: 0.22em;
  }

  .contact-panel h2 {
    font-size: 34px;
    letter-spacing: 0.16em;
  }
}

@media (max-width: 479px) {
  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand__mark {
    width: 44px;
  }

  .brand__name {
    font-size: 11px;
  }

  .brand__en {
    display: none;
  }

  .lang-switch--mobile {
    display: none !important;
  }

  .linkedin--mobile {
    display: grid !important;
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .mobile-nav summary {
    width: 36px;
    height: 36px;
  }

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

  .service-card__media {
    min-height: auto;
  }

  .about-panel__content,
  .contact-panel {
    padding: 34px 26px;
  }

  .button--about,
  .button--contact {
    width: 100%;
  }

}
