:root {
  font-family:
    "HarmonyOS Sans SC", "MiSans", "PingFang SC", "Microsoft YaHei",
    system-ui, -apple-system, sans-serif;
  color: #f5f8ff;
  background: #020915;
  font-synthesis: none;
  --bg: #020915;
  --bg-soft: #061225;
  --surface: rgba(10, 27, 52, 0.72);
  --surface-strong: #0a1930;
  --line: rgba(126, 166, 226, 0.16);
  --line-strong: rgba(95, 145, 226, 0.34);
  --text: #f5f8ff;
  --muted: #9aaac4;
  --blue: #2d6bff;
  --blue-bright: #5a94ff;
  --blue-soft: #8bb2ff;
  --lime: #8ee341;
  --container: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 15%, rgba(32, 99, 255, 0.12), transparent 28%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 96px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 78px 0;
  scroll-margin-top: 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(154, 225, 62, 0.52);
  content: "";
  flex: 0 0 auto;
  animation: eyebrowPulse 2.2s ease-out infinite;
}

.section-heading {
  max-width: 780px;
}

.section-heading--center {
  margin-inline: 0;
  text-align: left;
}

.section-heading--center .eyebrow {
  justify-content: flex-start;
}

.section-heading h2,
.ai-copy h2,
.why-copy h2,
.contact-copy h2 {
  margin: 18px 0 20px;
  font-size: clamp(36px, 3.1vw, 56px);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.section-heading p,
.ai-copy > p,
.why-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.section-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.section-topline .section-heading {
  flex: 1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid rgba(124, 166, 235, 0.38);
  background: transparent;
  color: #dbe7ff;
  cursor: pointer;
  font-weight: 650;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  color: var(--blue-soft);
  border-color: var(--blue-soft);
}

.text-link svg {
  width: 18px;
  height: 18px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(118, 148, 198, 0.14);
  background: rgba(2, 9, 21, 0.84);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 72px), 1560px);
  height: 78px;
  margin-inline: auto;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 202px;
  height: auto;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(24px, 2.5vw, 46px);
}

.desktop-nav a {
  position: relative;
  color: #d8e0ee;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  height: 44px;
  margin-left: 38px;
  padding: 0 20px;
  border: 1px solid rgba(99, 147, 255, 0.5);
  border-radius: 10px;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  box-shadow: 0 12px 32px rgba(39, 96, 255, 0.22);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.header-cta svg {
  width: 16px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 720px;
  padding: 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #020a18;
}

.hero-grid-bg {
  position: absolute;
  right: -5%;
  bottom: -26%;
  left: -5%;
  height: 58%;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(95, 140, 220, 0.36) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 140, 220, 0.36) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, #000 30%, transparent 96%);
  transform: perspective(640px) rotateX(58deg);
  transform-origin: center bottom;
}

.hero-glow {
  position: absolute;
  top: 18%;
  right: 5%;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 104, 255, 0.18), transparent 67%);
  filter: blur(12px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100svh;
  min-height: 720px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 10px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 690px;
  padding: 24px 0 64px;
  transform: translateY(-54px);
}

.hero h1 {
  margin: 24px 0 26px;
  font-size: clamp(60px, 5.15vw, 92px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  perspective: 800px;
}

.hero-title-line {
  display: block;
  width: fit-content;
  opacity: 0;
  transform: translateY(34px) rotateX(-7deg);
  transform-origin: left bottom;
  animation: heroTitleReveal 820ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title-line--first {
  animation-delay: 130ms;
}

.hero-title-line--second {
  margin-top: 18px;
  color: #3f7cff;
  font-style: normal;
  background: linear-gradient(120deg, #ffffff 0%, #d6e8ff 30%, #7fb6ff 65%, #2a8bff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    heroTitleReveal 820ms 260ms cubic-bezier(0.16, 1, 0.3, 1) forwards,
    heroTitleShimmer 6s 1.05s linear infinite;
}

.hero-lead {
  max-width: 660px;
  margin: 0;
  color: #b7c3d7;
  font-size: 17px;
  line-height: 1.85;
}

.hero-tags {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 28px;
  padding: 14px 18px;
  border: 1px solid rgba(117, 153, 210, 0.24);
  border-radius: 8px;
  align-items: center;
  background: rgba(4, 15, 32, 0.56);
}

.hero-tags span {
  color: #cbd6e8;
  font-size: 14px;
  white-space: nowrap;
}

.hero-tags span:not(:last-child)::after {
  margin: 0 15px;
  color: rgba(158, 181, 219, 0.35);
  content: "│";
}

.hero-contact {
  display: grid;
  width: min(100%, 600px);
  margin-top: 28px;
  padding: 5px;
  border: 1px solid rgba(99, 151, 245, 0.38);
  border-radius: 12px;
  grid-template-columns: minmax(210px, 1fr) auto;
  background: rgba(4, 17, 38, 0.82);
  box-shadow:
    0 20px 52px rgba(0, 10, 32, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.hero-contact:focus-within {
  border-color: rgba(98, 158, 255, 0.76);
  box-shadow:
    0 22px 58px rgba(13, 64, 162, 0.26),
    0 0 0 3px rgba(50, 112, 255, 0.1);
}

.hero-phone {
  display: flex;
  min-width: 0;
  padding: 0 15px;
  align-items: center;
  gap: 11px;
}

.hero-phone svg {
  width: 20px;
  height: 20px;
  color: #72a4ff;
  flex: 0 0 auto;
}

.hero-phone input {
  width: 100%;
  height: 52px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #eef5ff;
  font-size: 14px;
}

.hero-phone input::placeholder {
  color: #7184a1;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 27px;
  border-radius: 9px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  height: 19px;
}

.button--primary {
  border: 1px solid #3d79ff;
  background: linear-gradient(135deg, #356fff, #1b5dff);
  box-shadow:
    0 16px 38px rgba(33, 91, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: white;
}

.button--secondary {
  border: 1px solid rgba(186, 208, 246, 0.45);
  background: rgba(4, 13, 28, 0.72);
  color: #f2f6ff;
}

.button--secondary:hover {
  border-color: rgba(139, 178, 255, 0.85);
  background: rgba(22, 45, 82, 0.58);
}

.hero-metrics {
  display: flex;
  margin-top: 34px;
  align-items: center;
}

.metric {
  display: flex;
  min-width: 150px;
  align-items: center;
  gap: 12px;
}

.metric + .metric {
  margin-left: 24px;
  padding-left: 24px;
  border-left: 1px solid rgba(128, 160, 210, 0.25);
}

.metric-icon {
  display: grid;
  width: 39px;
  height: 39px;
  border: 1px solid rgba(77, 135, 255, 0.34);
  border-radius: 9px;
  place-items: center;
  color: #68a0ff;
  background: rgba(18, 48, 92, 0.46);
  box-shadow: inset 0 0 18px rgba(41, 104, 230, 0.08);
  flex: 0 0 auto;
}

.metric-icon svg {
  width: 23px;
  height: 23px;
}

.metric > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.metric strong {
  font-size: 23px;
  letter-spacing: -0.025em;
}

.metric > div span {
  color: #9bacbf;
  font-size: 14px;
}

.hero-visual {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-scene-frame {
  position: absolute;
  top: 78px;
  left: 50%;
  width: max(100%, calc((100svh - 78px) * 1.5));
  aspect-ratio: 3 / 2;
  transform: translateX(-50%);
}

.hero-visual::before {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 58%;
  background: linear-gradient(90deg, #020a18 0%, rgba(2, 10, 24, 0.96) 45%, rgba(2, 10, 24, 0.36) 78%, transparent 100%);
  content: "";
}

.hero-visual::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 28%;
  background: linear-gradient(to top, #020a18 0%, rgba(2, 10, 24, 0.2) 62%, transparent 100%);
  content: "";
}

.hero-scene {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.002);
  transform-origin: center top;
  animation: heroImageBreath 11s ease-in-out infinite alternate;
}

.npc-status,
.float-label {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(91, 169, 255, 0.74);
  background: rgba(7, 39, 84, 0.82);
  box-shadow:
    0 12px 36px rgba(20, 92, 229, 0.24),
    0 0 22px rgba(50, 130, 255, 0.12),
    inset 0 0 26px rgba(60, 130, 255, 0.1),
    inset 0 1px 0 rgba(206, 232, 255, 0.18);
  backdrop-filter: blur(10px);
}

.npc-status {
  top: 14%;
  right: 10%;
  display: flex;
  padding: 9px 13px;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  color: #d5e6ff;
  font-size: 14px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(142, 227, 65, 0.75);
}

.float-label {
  --float-delay: 0s;
  display: flex;
  min-width: 166px;
  min-height: 54px;
  padding: 12px 17px;
  border-radius: 12px;
  align-items: center;
  gap: 10px;
  color: #ecf5ff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  overflow: hidden;
  animation: holoFloat 4.8s var(--float-delay) ease-in-out infinite;
}

.float-label::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(110deg, transparent 18%, rgba(122, 190, 255, 0.18) 50%, transparent 82%);
  content: "";
  transform: translateX(-120%);
  animation: holoScan 4.6s var(--float-delay) ease-in-out infinite;
}

.float-label svg {
  position: relative;
  z-index: 1;
  width: 21px;
  height: 21px;
  padding: 3px;
  border: 1px solid rgba(131, 193, 255, 0.55);
  border-radius: 50%;
  color: #b8dbff;
  box-sizing: content-box;
}

.float-label--one {
  --float-delay: 0s;
  top: 24%;
  right: 18%;
}

.float-label--two {
  --float-delay: -1.2s;
  top: 39%;
  right: 24%;
}

.float-label--three {
  --float-delay: -2.4s;
  top: 54%;
  right: 28%;
}

.float-label--four {
  --float-delay: -3.6s;
  top: 69%;
  right: 23%;
}

.hero-scroll {
  position: absolute;
  z-index: 5;
  bottom: 22px;
  left: 50%;
  display: flex;
  border: 0;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.22em;
  opacity: 0.92;
  transition: none;
  transform: translateX(-50%);
  animation: scrollHint 2.2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 18px;
  height: 18px;
}

@keyframes heroTitleReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes heroTitleShimmer {
  0% { background-position: 0 0; }
  100% { background-position: 200% 0; }
}

@keyframes heroImageBreath {
  from {
    transform: scale(1.002);
  }
  to {
    transform: scale(1.012);
  }
}

@keyframes eyebrowPulse {
  0%,
  18% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(154, 225, 62, 0.5), 0 0 10px rgba(154, 225, 62, 0.5);
  }
  72%,
  100% {
    opacity: 0.72;
    box-shadow: 0 0 0 8px rgba(154, 225, 62, 0), 0 0 5px rgba(154, 225, 62, 0.18);
  }
}

@keyframes holoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    box-shadow: 0 12px 36px rgba(20, 92, 229, 0.18), inset 0 0 26px rgba(60, 130, 255, 0.06);
  }
  50% {
    transform: translate3d(0, -7px, 0);
    box-shadow: 0 18px 44px rgba(20, 92, 229, 0.28), inset 0 0 32px rgba(60, 130, 255, 0.11);
  }
}

@keyframes holoScan {
  0%,
  58% {
    transform: translateX(-120%);
  }
  82%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes scrollHint {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 6px);
  }
}

.value-section {
  padding-top: 78px;
  background:
    radial-gradient(circle at 50% 62%, rgba(53, 116, 218, 0.2), transparent 48%),
    linear-gradient(180deg, #0a1b34, #07152a);
}

.benefit-grid {
  position: relative;
  display: grid;
  margin-top: 68px;
  border-top: 1px solid rgba(102, 151, 231, 0.24);
  border-bottom: 2px solid #356fff;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 28px 70px rgba(0, 8, 24, 0.24);
}

.benefit-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: brightness(1.24) saturate(1.08) contrast(1.02);
  transform: scale(1.012);
  transform-origin: center bottom;
  transition: filter 320ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.benefit-item::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2, 10, 24, 0) 16%, rgba(2, 10, 24, 0.08) 44%, rgba(2, 8, 19, 0.82) 100%);
  content: "";
}

.benefit-item:not(:last-child)::before {
  position: absolute;
  z-index: 3;
  top: 0;
  right: -3px;
  width: 8px;
  height: 90%;
  background: url("./assets/value-scene-divider.png") center / 8px 100% no-repeat;
  content: "";
  pointer-events: none;
}

.benefit-item {
  position: relative;
  display: grid;
  min-height: 540px;
  padding: 0 34px 44px;
  align-content: end;
  grid-template-rows: 68px 60px 76px;
  justify-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  transition:
    background-color 260ms ease,
    box-shadow 260ms ease;
}

.benefit-index {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(196, 221, 255, 0.34);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.benefit-icon-shell {
  display: grid;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(205, 226, 255, 0.48);
  border-radius: 50%;
  place-items: center;
  background: rgba(3, 18, 40, 0.56);
  box-shadow:
    0 12px 32px rgba(0, 8, 24, 0.3),
    inset 0 0 20px rgba(68, 137, 255, 0.1);
  backdrop-filter: blur(8px);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.benefit-icon {
  width: 31px;
  height: 31px;
  color: #f1f6ff;
}

.benefit-item h3 {
  margin: 0;
  align-self: center;
  font-size: 22px;
  text-shadow: 0 3px 18px rgba(0, 4, 14, 0.82);
  transition: color 260ms ease, transform 260ms ease;
}

.benefit-item p {
  max-width: 240px;
  margin: 0;
  align-self: start;
  color: #aebbd0;
  font-size: 14px;
  line-height: 1.78;
  text-shadow: 0 2px 14px rgba(0, 4, 14, 0.9);
  transition: color 260ms ease;
}

.benefit-item:hover,
.benefit-item:focus {
  background-color: rgba(39, 100, 205, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(116, 172, 255, 0.24),
    inset 0 -70px 80px rgba(23, 77, 174, 0.12);
  outline: none;
}

.benefit-item:hover .benefit-media,
.benefit-item:focus .benefit-media {
  filter: brightness(1.32) saturate(1.12) contrast(1.03);
  transform: scale(1.035);
}

.benefit-item:focus-visible {
  outline: 2px solid rgba(137, 184, 255, 0.74);
  outline-offset: -3px;
}

.benefit-item:hover .benefit-icon-shell,
.benefit-item:focus .benefit-icon-shell {
  border-color: rgba(220, 235, 255, 0.82);
  box-shadow:
    0 18px 42px rgba(0, 13, 42, 0.42),
    0 0 28px rgba(74, 142, 255, 0.28),
    inset 0 0 22px rgba(91, 151, 255, 0.18);
  transform: translateY(-7px) scale(1.035);
}

.benefit-item:hover h3,
.benefit-item:focus h3 {
  color: #fff;
  transform: translateY(-2px);
}

.benefit-item:hover p,
.benefit-item:focus p {
  color: #c8d5e8;
}

.services-section {
  background: #030a16;
}

.services-section .section-heading {
  max-width: 1100px;
  margin-bottom: 56px;
}

.services-section .section-heading h2 {
  font-size: clamp(34px, 3vw, 52px);
  white-space: nowrap;
}

.service-list {
  border-top: 1px solid var(--line-strong);
}

.service-row {
  position: relative;
  display: grid;
  height: 260px;
  min-height: 260px;
  padding: 0 0 0 26px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  grid-template-columns: 94px minmax(0, 1fr) 48%;
  gap: 0;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(8, 26, 54, 0.52), rgba(3, 10, 22, 0.16));
  transition: background 220ms ease, border-color 220ms ease;
}

.service-row:hover {
  border-bottom-color: rgba(91, 154, 255, 0.48);
  background: linear-gradient(90deg, rgba(27, 75, 157, 0.22), rgba(3, 10, 22, 0.1));
}

.service-no {
  color: #4b8eff;
  font-size: clamp(42px, 4vw, 68px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  text-shadow: 0 0 24px rgba(47, 117, 238, 0.22);
}

.service-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 28px 54px 28px 0;
}

.service-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-title svg {
  width: 34px;
  height: 34px;
  color: var(--blue-bright);
  flex: 0 0 auto;
}

.service-title h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.35;
}

.service-copy > p {
  max-width: 620px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  margin-top: 18px;
  gap: 8px;
}

.service-visual {
  position: relative;
  z-index: 1;
  height: 100%;
  min-width: 0;
  min-height: 260px;
  margin-left: 0;
  overflow: hidden;
  background: #061327;
}

.service-visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, #041022 0%, rgba(4, 16, 34, 0.9) 8%, rgba(4, 16, 34, 0.52) 18%, transparent 34%),
    linear-gradient(180deg, rgba(5, 19, 41, 0.04), rgba(2, 8, 18, 0.2));
  content: "";
  pointer-events: none;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(1.06);
  transform: scale(1.005);
  transition: filter 320ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-row:hover .service-visual img {
  filter: brightness(1.08) saturate(1.14);
  transform: scale(1.045);
}

.service-visual--generated img {
  transform: scale(1.3);
  transform-origin: right center;
}

.service-row:hover .service-visual--generated img {
  transform: scale(1.34);
}

.service-chips span {
  padding: 8px 11px;
  border: 1px solid rgba(123, 155, 208, 0.18);
  border-radius: 6px;
  background: rgba(13, 31, 58, 0.48);
  color: #b9c8dc;
  font-size: 14px;
}

.ai-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 62%, rgba(53, 116, 218, 0.2), transparent 48%),
    linear-gradient(180deg, #0a1b34, #07152a);
}

.ai-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
}

.ai-workflow {
  min-width: 0;
}

.ai-copy h2 {
  max-width: none;
  font-size: clamp(36px, 2.8vw, 46px);
}

.ai-title-line {
  display: block;
}

.ai-title-line--first {
  white-space: nowrap;
}

.check-list {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}

.check-list li {
  display: flex;
  color: #c9d5e7;
  font-size: 14px;
  line-height: 1.5;
  align-items: flex-start;
  gap: 10px;
}

.check-list svg {
  width: 19px;
  height: 19px;
  color: var(--blue-bright);
  flex: 0 0 auto;
}

.check-list--workflow {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid rgba(113, 157, 225, 0.18);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 24px;
}

.ai-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.flow-node {
  position: relative;
  min-height: 218px;
  padding: 26px 18px 24px;
  border: 1px solid rgba(113, 157, 225, 0.2);
  border-radius: 15px;
  background: rgba(8, 25, 51, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.flow-node > svg:not(.flow-arrow) {
  width: 36px;
  height: 36px;
  color: var(--blue-bright);
}

.flow-index {
  position: absolute;
  top: 20px;
  right: 18px;
  color: rgba(132, 164, 213, 0.38);
  font-size: 14px;
}

.flow-node h3 {
  margin: 22px 0 10px;
  font-size: 16px;
  line-height: 1.45;
}

.flow-node p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.flow-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -27px;
  width: 32px;
  height: 32px;
  padding: 7px;
  border: 1px solid rgba(168, 204, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  background: #2d6bff;
  box-shadow:
    0 0 0 5px rgba(45, 107, 255, 0.13),
    0 0 22px rgba(71, 132, 255, 0.62);
  transform: translateY(-50%);
}

.industry-section {
  background: #020914;
}

.industry-section .section-heading {
  max-width: none;
}

.industry-section .section-heading h2 {
  white-space: nowrap;
}

.industry-tabs {
  display: flex;
  margin-top: 58px;
  border: 1px solid var(--line);
  border-radius: 10px 10px 0 0;
  overflow-x: auto;
  background: rgba(8, 21, 42, 0.76);
}

.industry-tabs button {
  min-width: 150px;
  min-height: 58px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #aab8ce;
  cursor: pointer;
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
}

.industry-tabs button.active {
  background: var(--blue);
  color: white;
}

.industry-panel {
  display: grid;
  min-height: 560px;
  border: 1px solid var(--line);
  border-top: 0;
  grid-template-columns: 1.05fr 0.95fr;
  background: #071326;
}

.industry-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.industry-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, #071326);
  content: "";
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.industry-overlay {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 30px;
  display: flex;
  padding: 13px 17px;
  border: 1px solid rgba(143, 182, 242, 0.32);
  border-radius: 8px;
  align-items: center;
  gap: 11px;
  background: rgba(3, 15, 33, 0.75);
  backdrop-filter: blur(12px);
}

.industry-overlay svg {
  width: 26px;
  height: 26px;
  color: var(--blue-bright);
}

.industry-overlay span {
  font-size: 14px;
  letter-spacing: 0.11em;
}

.industry-detail {
  padding: 54px 56px;
}

.industry-titleline > span {
  color: var(--blue-soft);
  font-size: 14px;
  letter-spacing: 0.13em;
}

.industry-titleline h3 {
  margin: 12px 0 30px;
  font-size: 34px;
}

.industry-detail dl {
  margin: 0;
}

.industry-detail dl > div {
  padding: 19px 0;
  border-top: 1px solid var(--line);
}

.industry-detail dt {
  margin-bottom: 9px;
  color: #7fa8ec;
  font-size: 14px;
  font-weight: 750;
}

.industry-detail dd {
  margin: 0;
  color: #b6c2d5;
  font-size: 14px;
  line-height: 1.7;
}

.delivery-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.delivery-list span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.delivery-list svg {
  width: 15px;
  color: var(--lime);
}

.industry-detail .button {
  margin-top: 30px;
  font-size: 14px;
}

.cases-section {
  background: #061124;
}

.cases-section .section-heading {
  max-width: 920px;
}

.case-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 22px;
}

.case-project-card {
  position: relative;
  display: block;
  min-width: 0;
  border: 1px solid rgba(111, 158, 231, 0.2);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(7, 21, 42, 0.86);
  box-shadow: 0 18px 48px rgba(0, 6, 20, 0.2);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.case-project-card:hover,
.case-project-card:focus-visible {
  border-color: rgba(106, 162, 255, 0.62);
  box-shadow:
    0 24px 58px rgba(0, 8, 26, 0.34),
    0 0 0 1px rgba(79, 137, 240, 0.12);
  outline: none;
  transform: translateY(-5px);
}

.case-project-card figure {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: #061327;
}

.case-project-card figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 12, 27, 0.58), transparent 48%);
  content: "";
}

.case-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 320ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.case-project-card:hover img,
.case-project-card:focus-visible img {
  filter: brightness(1.08) saturate(1.08);
  transform: scale(1.045);
}

.case-project-index {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 14px;
  color: rgba(226, 238, 255, 0.7);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.case-project-card > div {
  display: grid;
  min-height: 84px;
  padding: 18px 20px;
  align-items: center;
  grid-template-columns: 1fr 22px;
  gap: 18px;
}

.case-project-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
}

.case-project-card > div svg {
  width: 20px;
  height: 20px;
  color: #79a7ff;
  transition: transform 220ms ease;
}

.case-project-card:hover > div svg,
.case-project-card:focus-visible > div svg {
  transform: translateX(4px);
}

.cases-all-link svg {
  animation: casesArrowNudge 1.7s ease-in-out infinite;
}

@keyframes casesArrowNudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

.featured-case {
  display: grid;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  background: #07152a;
}

.featured-case-image {
  position: relative;
  min-height: 590px;
}

.featured-case-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 65%, #07152a);
  content: "";
}

.featured-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-badge {
  position: absolute;
  z-index: 2;
  top: 26px;
  left: 26px;
  padding: 8px 12px;
  border: 1px solid rgba(94, 151, 255, 0.45);
  border-radius: 999px;
  background: rgba(6, 24, 55, 0.82);
  color: #a7c4ff;
  font-size: 14px;
}

.featured-case-copy {
  display: flex;
  padding: 62px 58px 62px 36px;
  flex-direction: column;
  justify-content: center;
}

.featured-case-copy h3 {
  margin: 20px 0;
  font-size: 38px;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.featured-case-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.case-tags {
  display: flex;
  margin: 28px 0 32px;
  flex-wrap: wrap;
  gap: 8px;
}

.featured-case-copy .button {
  width: fit-content;
}

.related-label {
  display: flex;
  margin: 72px 0 24px;
  align-items: baseline;
  gap: 22px;
}

.related-label span {
  color: #dce6f7;
  font-size: 20px;
  font-weight: 750;
}

.related-label p {
  margin: 0;
  color: #7f90aa;
  font-size: 14px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.case-card {
  position: relative;
  min-height: 380px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #071326;
}

.case-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 9, 21, 0.98) 10%, rgba(3, 10, 23, 0.16) 75%);
  content: "";
}

.case-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.case-card:hover > img {
  transform: scale(1.04);
}

.case-card-copy {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.case-card-copy > span {
  color: var(--blue-soft);
  font-size: 14px;
}

.case-card-copy h3 {
  min-height: 52px;
  margin: 8px 0 18px;
  font-size: 19px;
  line-height: 1.42;
}

.case-card-copy button {
  display: flex;
  padding: 0;
  border: 0;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #aebbd0;
  cursor: pointer;
  font-size: 14px;
}

.case-card-copy button svg {
  width: 15px;
}

.tech-section {
  background: #030b18;
}

.tech-section .section-heading,
.pricing-section .section-heading {
  max-width: none;
}

.tech-section .section-heading h2,
.pricing-section .section-heading h2 {
  white-space: nowrap;
}

.tech-grid {
  display: grid;
  margin-top: 58px;
  border: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
}

.tech-group {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 320px;
  padding: 28px 24px 26px;
  border: 1px solid rgba(111, 158, 231, 0.28);
  border-radius: 18px;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(14, 43, 86, 0.8), rgba(5, 20, 43, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 22px 52px rgba(0, 7, 23, 0.26);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.tech-group:not(:last-child) {
  border-right: 1px solid rgba(111, 158, 231, 0.28);
}

.tech-group:hover {
  border-color: rgba(105, 163, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 62px rgba(0, 10, 32, 0.38),
    0 0 34px rgba(48, 112, 235, 0.12);
  transform: translateY(-5px);
}

.tech-group > svg {
  width: 88px;
  height: 88px;
  padding: 20px;
  border: 1px solid rgba(106, 164, 255, 0.48);
  border-radius: 26px;
  color: #7faaff;
  background:
    linear-gradient(145deg, rgba(39, 103, 213, 0.48), rgba(8, 34, 72, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 30px rgba(46, 112, 239, 0.2);
}

.tech-group h3 {
  margin: 22px 0 14px;
  font-size: 22px;
  line-height: 1.4;
}

.tech-group div {
  display: flex;
  max-width: 230px;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 6px;
  text-align: left;
}

.tech-group span {
  display: flex;
  padding: 0;
  border: 0;
  align-items: center;
  gap: 9px;
  color: #aebdd3;
  font-size: 14px;
  line-height: 1.5;
}

.tech-group span::before {
  width: 6px;
  height: 6px;
  border: 1px solid rgba(151, 191, 255, 0.72);
  border-radius: 2px;
  background: rgba(75, 133, 244, 0.48);
  box-shadow: 0 0 8px rgba(73, 135, 255, 0.45);
  content: "";
  flex: 0 0 auto;
}

.support-levels {
  display: flex;
  margin-top: 28px;
  align-items: center;
  gap: 28px;
}

.support-levels > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bdc9da;
  font-size: 14px;
}

.support-levels svg {
  width: 18px;
  color: var(--blue-bright);
}

.support-levels p {
  margin: 0 0 0 auto;
  color: #73829a;
  font-size: 14px;
}

.process-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 45%, rgba(31, 96, 226, 0.11), transparent 38%),
    #051024;
}

.process-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.process-step {
  position: relative;
  min-width: 0;
  min-height: 274px;
  padding: 30px 24px;
  border: 1px solid rgba(113, 157, 225, 0.22);
  border-radius: 14px;
  background: rgba(8, 25, 51, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.process-no {
  position: absolute;
  top: 30px;
  right: 30px;
  color: rgba(112, 148, 204, 0.34);
  font-size: 14px;
  letter-spacing: 0.1em;
}

.process-icon {
  display: grid;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(85, 143, 241, 0.35);
  border-radius: 12px;
  place-items: center;
  background: rgba(36, 94, 196, 0.12);
}

.process-icon svg {
  width: 29px;
  height: 29px;
  color: var(--blue-bright);
}

.process-step h3 {
  margin: 30px 0 14px;
  font-size: 19px;
  line-height: 1.45;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.process-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -27px;
  width: 32px;
  height: 32px;
  padding: 7px;
  border: 1px solid rgba(168, 204, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  background: #2d6bff;
  box-shadow:
    0 0 0 5px rgba(45, 107, 255, 0.13),
    0 0 22px rgba(71, 132, 255, 0.62);
  transform: translateY(-50%);
}

.why-section {
  background:
    linear-gradient(90deg, rgba(5, 16, 36, 0.96), rgba(4, 15, 34, 0.72)),
    url("./assets/industry-training.png") center / cover;
}

.why-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.why-copy .button {
  margin-top: 38px;
}

.why-points {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.why-points article {
  position: relative;
  min-height: 218px;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(4, 16, 35, 0.78);
  backdrop-filter: blur(12px);
}

.why-points article > svg {
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  color: #75a3ff;
}

.why-points strong {
  display: block;
  color: #74a1ff;
  font-size: 27px;
}

.why-points p {
  margin: 8px 0 0;
  color: #b6c3d6;
  font-size: 14px;
  line-height: 1.65;
}

.pricing-section {
  background: #030a16;
}

.pricing-factors {
  display: grid;
  margin-top: 62px;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.pricing-factors > div {
  position: relative;
  min-width: 0;
  min-height: 274px;
  padding: 30px 24px;
  border: 1px solid rgba(113, 157, 225, 0.22);
  border-radius: 14px;
  background: rgba(8, 25, 51, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.pricing-factors > div > span {
  position: absolute;
  top: 30px;
  right: 30px;
  color: rgba(112, 148, 204, 0.34);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-shadow: none;
}

.pricing-factors svg {
  width: 52px;
  height: 52px;
  padding: 11px;
  border: 1px solid rgba(85, 143, 241, 0.35);
  border-radius: 12px;
  color: var(--blue-bright);
  background: rgba(36, 94, 196, 0.12);
}

.pricing-factors h3 {
  margin: 30px 0 14px;
  font-size: 16px;
  line-height: 1.45;
  white-space: nowrap;
}

.pricing-factors p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.pricing-cta {
  display: flex;
  margin-top: 28px;
  padding: 34px 38px;
  border: 1px solid rgba(88, 143, 233, 0.28);
  border-radius: 12px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(90deg, rgba(22, 66, 145, 0.26), rgba(8, 27, 58, 0.32));
}

.pricing-cta h3 {
  margin: 0 0 9px;
  font-size: 22px;
}

.pricing-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-section {
  border-top: 1px solid var(--line);
  background: #061226;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-contact {
  display: flex;
  margin-top: 44px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  align-items: center;
  gap: 18px;
  background: rgba(9, 26, 51, 0.72);
}

.faq-contact > svg {
  width: 32px;
  height: 32px;
  color: var(--blue-bright);
}

.faq-contact div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.faq-contact span {
  color: var(--muted);
  font-size: 14px;
}

.faq-contact a {
  font-size: 19px;
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item > button {
  display: grid;
  width: 100%;
  min-height: 86px;
  padding: 22px 0;
  border: 0;
  align-items: center;
  grid-template-columns: 46px 1fr 28px;
  gap: 14px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  font-weight: 650;
}

.faq-item > button > span {
  color: #507aba;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.faq-item > button > svg {
  width: 20px;
  color: #7890b5;
  transition: transform 200ms ease;
}

.faq-item.open > button > svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  padding: 0 42px 0 60px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  overflow: hidden;
  transition: padding 220ms ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 28px;
}

.contact-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 30%, rgba(34, 104, 255, 0.18), transparent 32%),
    #020914;
}

.contact-section::before {
  position: absolute;
  right: -8%;
  bottom: -45%;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(87, 139, 227, 0.16);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 80px rgba(55, 108, 203, 0.03),
    0 0 0 160px rgba(55, 108, 203, 0.025);
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 100px;
}

.contact-copy {
  padding-top: 0;
}

.contact-copy ul {
  display: grid;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  gap: 14px;
}

.contact-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bdc9da;
  font-size: 14px;
}

.contact-copy li svg {
  width: 19px;
  color: var(--blue-bright);
}

.contact-info {
  display: grid;
  margin-top: 52px;
  gap: 14px;
}

.contact-info a,
.contact-info span {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #9aabc2;
  font-size: 14px;
  line-height: 1.55;
}

.contact-info svg {
  width: 18px;
  height: 18px;
  color: #6d9df3;
  flex: 0 0 auto;
}

.contact-form {
  position: relative;
  padding: 40px;
  border: 1px solid rgba(112, 158, 232, 0.26);
  border-radius: 15px;
  background: rgba(7, 23, 48, 0.86);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.form-heading {
  margin-bottom: 30px;
}

.form-heading span {
  color: #6e9cec;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.form-heading h3 {
  margin: 8px 0 0;
  font-size: 27px;
}

.contact-form label {
  display: grid;
  margin-bottom: 18px;
  color: #b9c5d7;
  font-size: 14px;
  gap: 9px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(116, 151, 207, 0.2);
  border-radius: 8px;
  outline: 0;
  background: rgba(2, 11, 25, 0.68);
  color: #eef4ff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 116px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #66768f;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #4f87f1;
  box-shadow: 0 0 0 3px rgba(58, 113, 230, 0.14);
}

.contact-form option {
  background: #07152a;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.submit-button {
  width: 100%;
}

.form-note {
  margin: 12px 0 0;
  color: #677892;
  font-size: 14px;
  text-align: center;
}

.success-message {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  padding: 15px 18px;
  border: 1px solid rgba(115, 198, 100, 0.35);
  border-radius: 10px;
  align-items: center;
  gap: 12px;
  background: #0d2a25;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.success-message > svg {
  width: 26px;
  height: 26px;
  color: var(--lime);
}

.success-message div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.success-message strong {
  font-size: 14px;
}

.success-message span {
  color: #a8beb2;
  font-size: 14px;
}

main > section.section:nth-of-type(even) {
  background:
    radial-gradient(circle at 50% 62%, rgba(53, 116, 218, 0.2), transparent 48%),
    linear-gradient(180deg, #0a1b34, #07152a);
}

@media (max-width: 1280px) {
  .container {
    width: min(calc(100% - 64px), var(--container));
  }

  .desktop-nav {
    gap: 24px;
  }

  .header-cta {
    margin-left: 24px;
  }

  .hero h1 {
    font-size: clamp(58px, 5.3vw, 76px);
  }

  .hero-tags span:not(:last-child)::after {
    margin: 0 10px;
  }

  .service-row {
    grid-template-columns: 72px minmax(0, 1fr) 46%;
  }

  .pricing-factors {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1180px) {
  .ai-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 9px;
    place-items: center;
    background: rgba(10, 27, 51, 0.72);
  }

  .menu-toggle svg {
    width: 23px;
    height: 23px;
  }

  .mobile-nav {
    display: grid;
    padding: 12px 24px 20px;
    border-top: 1px solid var(--line);
    background: #040d1c;
  }

  .mobile-nav button {
    display: flex;
    min-height: 48px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
    justify-content: space-between;
    background: transparent;
    color: #d2dbea;
  }

  .mobile-nav svg {
    width: 17px;
  }

  .hero {
    height: auto;
    min-height: auto;
  }

  .hero-inner {
    height: auto;
    min-height: 860px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 730px;
    padding: 100px 0 0;
    transform: none;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    height: auto;
    margin: 0;
    opacity: 0.72;
  }

  .hero-scene-frame {
    top: 0;
    width: max(100%, calc(100svh * 1.5));
  }

  .hero-scene {
    transform: none;
    animation: none;
  }

  .hero-visual::before {
    width: 100%;
    background: linear-gradient(90deg, rgba(2, 10, 24, 0.98), rgba(2, 10, 24, 0.7) 70%, rgba(2, 10, 24, 0.38));
  }

  .float-label {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .benefit-grid,
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-grid {
    gap: 22px;
  }

  .benefit-item:nth-of-type(2) {
    border-right: 0;
  }

  .benefit-item:nth-of-type(2)::before {
    display: none;
  }

  .benefit-item:nth-of-type(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .service-row {
    height: auto;
    min-height: 0;
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .service-visual {
    height: 320px;
    min-height: 320px;
    margin-left: 0;
    grid-column: 1 / -1;
  }

  .tech-group,
  .tech-group:nth-child(2),
  .tech-group:nth-child(-n+2) {
    border: 1px solid rgba(111, 158, 231, 0.28);
  }

  .ai-layout,
  .industry-panel,
  .featured-case,
  .why-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .industry-image,
  .featured-case-image {
    min-height: 480px;
  }

  .industry-image::after,
  .featured-case-image::after {
    background: linear-gradient(to top, #071326, transparent 35%);
  }

  .featured-case-copy {
    padding: 48px;
  }

  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-copy {
    max-width: 680px;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  .container,
  .header-inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .brand img {
    width: 168px;
  }

  .header-inner {
    height: 68px;
  }

  .section-heading h2,
  .ai-copy h2,
  .why-copy h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .section-topline {
    display: block;
    margin-bottom: 44px;
  }

  .section-topline .text-link {
    margin-top: 26px;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-copy {
    padding: 68px 0 30px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(48px, 14vw, 68px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-tags {
    padding: 12px 14px;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .hero-tags span:not(:last-child)::after {
    display: none;
  }

  .hero-contact {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-phone {
    border-bottom: 1px solid rgba(99, 151, 245, 0.2);
  }

  .hero-metrics {
    justify-content: space-between;
  }

  .metric {
    min-width: 0;
    gap: 7px;
  }

  .metric + .metric {
    margin-left: 8px;
    padding-left: 8px;
  }

  .metric-icon {
    width: 32px;
    height: 32px;
    border-radius: 7px;
  }

  .metric-icon svg {
    width: 19px;
    height: 19px;
  }

  .metric strong {
    font-size: 18px;
  }

  .metric > div span {
    display: block;
    margin: 1px 0 0;
    font-size: 14px;
  }

  .hero-visual {
    height: auto;
    margin: 0;
  }

  .float-label {
    min-width: auto;
    padding: 10px 12px;
    font-size: 14px;
  }

  .float-label svg {
    width: 17px;
  }

  .benefit-grid,
  .tech-grid,
  .process-grid,
  .why-points,
  .case-grid,
  .pricing-factors {
    grid-template-columns: 1fr;
  }

  .benefit-item,
  .benefit-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tech-group,
  .tech-group:not(:last-child) {
    min-height: 290px;
    border: 1px solid rgba(111, 158, 231, 0.28);
  }

  .benefit-item::before {
    display: none !important;
  }

  .benefit-item {
    min-height: 420px;
    padding-top: 220px;
  }

  .service-row {
    display: grid;
    height: auto;
    min-height: 0;
    padding: 26px 0 0;
    grid-template-columns: 48px 1fr;
    gap: 18px 14px;
  }

  .service-copy {
    padding: 0 16px 28px 0;
    grid-column: 2;
  }

  .service-title {
    align-items: flex-start;
  }

  .service-title svg {
    display: none;
  }

  .service-title h3 {
    font-size: 21px;
  }

  .service-no {
    padding-left: 4px;
    font-size: 36px;
  }

  .service-visual {
    height: 230px;
    min-height: 230px;
    grid-column: 1 / -1;
  }

  .service-visual::before {
    background: linear-gradient(180deg, #041022 0%, rgba(4, 16, 34, 0.7) 16%, transparent 38%);
  }

  .services-section .section-heading h2 {
    white-space: normal;
  }

  .industry-section .section-heading h2 {
    white-space: normal;
  }

  .tech-section .section-heading h2,
  .pricing-section .section-heading h2 {
    white-space: normal;
  }

  .check-list,
  .ai-flow {
    grid-template-columns: 1fr;
  }

  .ai-title-line--first {
    white-space: normal;
  }

  .flow-arrow {
    display: none;
  }

  .process-arrow {
    display: none;
  }

  .industry-tabs {
    margin-right: -16px;
  }

  .industry-panel {
    min-height: 0;
  }

  .case-project-grid {
    grid-template-columns: 1fr;
  }

  .industry-image,
  .featured-case-image {
    min-height: 350px;
  }

  .industry-detail,
  .featured-case-copy {
    padding: 34px 24px;
  }

  .industry-titleline h3,
  .featured-case-copy h3 {
    font-size: 28px;
  }

  .related-label {
    display: block;
  }

  .related-label p {
    margin-top: 10px;
  }

  .case-card {
    min-height: 350px;
  }

  .support-levels {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .support-levels p {
    margin-left: 0;
  }

  .pricing-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-item > button {
    grid-template-columns: 36px 1fr 24px;
    font-size: 15px;
  }

  .faq-answer p {
    padding-left: 50px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .floating-consult {
    right: 16px;
    bottom: 16px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .floating-consult span {
    display: none;
  }
}

@media (min-width: 1025px) and (max-height: 820px) {
  .hero-copy {
    padding-bottom: 46px;
    transform: translateY(-18px) scale(0.88);
    transform-origin: left center;
  }

  .hero-scroll {
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
