:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --bg-soft: #edf2f6;
  --panel: rgba(255, 255, 255, 0.74);
  --panel-solid: #ffffff;
  --text: #11151a;
  --muted: #596573;
  --line: rgba(17, 21, 26, 0.14);
  --cyan: #00c8b2;
  --coral: #ff4365;
  --violet: #684bff;
  --amber: #e1a800;
  --green: #21c45a;
  --ink: #11151a;
  --max: 1620px;
  --radius: 8px;
  --header: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(17, 21, 26, 0.055) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(rgba(17, 21, 26, 0.045) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(135deg, #f9fbff 0%, #f2f7f8 48%, #ffffff 100%);
  color: var(--text);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 360;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

#signal-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: transparent;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(17,21,26,0.04) 3px 3px),
    repeating-linear-gradient(90deg, transparent 0 6px, rgba(17,21,26,0.028) 7px 7px);
  mix-blend-mode: multiply;
}

.section-band {
  position: relative;
  padding: clamp(64px, 5vw, 78px) max(24px, calc((100vw - var(--max)) / 2)) clamp(68px, 5.5vw, 84px);
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: min(var(--max), calc(100% - 32px));
  height: var(--header);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(12px, 1.4vw, 22px);
  padding: 14px 16px;
  border: 1px solid rgba(17, 21, 26, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(17, 21, 26, 0.08);
  transform: translateX(-50%);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-compact {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 200, 178, 0.34);
  transform: translateX(-50%) translateY(-4px);
}

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

.brand img {
  width: 146px;
  max-height: 45px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(17, 21, 26, 0.1));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.45vw, 26px);
  color: #46515d;
  font-size: 14px;
  font-weight: 520;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

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

.main-nav .is-current {
  color: var(--ink);
}

.main-nav .is-current::after {
  transform: scaleX(1);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 5px 12px 5px 6px;
  border: 1px solid rgba(17, 21, 26, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(0, 200, 178, 0.11), rgba(255, 255, 255, 0.84) 55%, rgba(255, 67, 101, 0.07));
  white-space: nowrap;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.header-phone:hover,
.header-phone:focus-visible {
  border-color: rgba(0, 169, 149, 0.48);
  box-shadow: 0 12px 30px rgba(0, 169, 149, 0.13);
  transform: translateY(-2px);
}

.header-phone-icon {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--ink);
}

.header-phone-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(0, 169, 149, 0.28);
  border-radius: 50%;
  animation: headerPhonePulse 2.4s ease-out infinite;
}

.header-phone-icon svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.8;
}

.header-phone-copy {
  display: grid;
  gap: 1px;
}

.header-phone-copy small {
  color: #75818b;
  font-size: 8px;
  font-weight: 780;
  line-height: 1;
  text-transform: uppercase;
}

.header-phone-copy strong {
  font-size: 13px;
  font-weight: 680;
  line-height: 1.2;
}

@keyframes headerPhonePulse {
  0% { opacity: 0.65; transform: scale(0.86); }
  75%, 100% { opacity: 0; transform: scale(1.25); }
}

.language-switch {
  position: relative;
}

.language-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 21, 26, 0.04);
}

.language-current {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 68px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
}

.language-current span {
  font-size: 12px;
  font-weight: 800;
}

.language-current svg {
  width: 15px;
  height: 15px;
  transition: transform 180ms ease;
}

.lang-button,
.menu-toggle {
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.lang-button {
  display: grid;
  min-width: 38px;
  min-height: 34px;
  place-items: center;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.lang-button.active {
  color: #ffffff;
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 200ms ease;
}

.hero {
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(164px, 14vh, 190px);
  padding-bottom: 24px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(0, 200, 178, 0.16), transparent 30%),
    linear-gradient(280deg, rgba(255, 67, 101, 0.13), transparent 32%),
    linear-gradient(180deg, transparent 0 72%, rgba(246, 248, 251, 0.92) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  width: 100%;
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title,
.section-head h2,
.contact-copy h2 {
  min-width: 0;
  margin: 0;
  color: var(--text);
  font-family: "Geologica", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-weight: 230;
  line-height: 1.04;
}

.hero-title {
  max-width: 1040px;
  font-size: clamp(44px, 4.5vw, 84px);
}

.hero-text {
  max-width: 650px;
  margin: 20px 0 0;
  color: #3e4a56;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 680;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button.primary {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ink), #26303a);
  box-shadow: 0 18px 48px rgba(17, 21, 26, 0.22);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.72);
}

.command-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.command-ribbon span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(17, 21, 26, 0.12);
  border-radius: var(--radius);
  color: #26303a;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.8);
}

.command-ribbon i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(0, 200, 178, 0.1);
}

.command-ribbon span:nth-child(2) i {
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 67, 101, 0.1);
}

.command-ribbon span:nth-child(3) i {
  background: var(--violet);
  box-shadow: 0 0 0 5px rgba(104, 75, 255, 0.1);
}

.command-ribbon b {
  font-size: 12px;
  font-weight: 620;
}

.button.full {
  width: 100%;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 132px));
  gap: 12px;
  margin-top: 24px;
}

.signal-row span {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(17, 21, 26, 0.07);
}

.signal-row strong {
  color: var(--amber);
  font-size: 24px;
  line-height: 1;
}

.signal-row small {
  color: var(--muted);
  font-size: 12px;
}

.mission-control {
  position: relative;
  min-height: 450px;
  padding: 18px;
  border: 1px solid rgba(17, 21, 26, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.56)),
    rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62), 0 34px 120px rgba(17, 21, 26, 0.14);
  overflow: hidden;
}

.mission-control::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 18px;
  width: 172px;
  height: 4px;
  background: linear-gradient(90deg, var(--ink), var(--cyan));
  clip-path: polygon(0 0, 100% 0, calc(100% - 54px) 100%, 0 100%);
}

.mission-control::after {
  content: "";
  position: absolute;
  inset: 56px 18px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 178, 0.85), transparent);
}

.mission-control::after {
  inset: auto 18px 114px;
  background: linear-gradient(90deg, transparent, rgba(255, 67, 101, 0.58), transparent);
}

.console-top,
.console-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.console-top {
  color: var(--muted);
  font-size: 12px;
  font-weight: 680;
  text-transform: uppercase;
}

.console-dots {
  display: flex;
  gap: 6px;
}

.console-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.console-dots i:nth-child(2) {
  background: var(--amber);
}

.console-dots i:nth-child(3) {
  background: var(--cyan);
}

.orbital-map {
  position: relative;
  height: 252px;
  margin-top: 36px;
  border: 1px solid rgba(17, 21, 26, 0.08);
  background:
    linear-gradient(90deg, rgba(17,21,26,0.06) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(rgba(17,21,26,0.045) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(135deg, rgba(0, 200, 178, 0.12), rgba(255, 255, 255, 0.64));
  overflow: hidden;
}

.map-ring {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(0, 200, 178, 0.44);
  transform: translate(-50%, -50%);
  animation: rotate 18s linear infinite;
}

.map-ring.one {
  width: 200px;
  height: 200px;
}

.map-ring.two {
  width: 130px;
  height: 130px;
  border-color: rgba(104, 75, 255, 0.46);
  transform: translate(-50%, -50%) rotate(34deg);
  animation-duration: 13s;
  animation-direction: reverse;
}

.map-ring.three {
  width: 270px;
  height: 84px;
  border-color: rgba(225, 168, 0, 0.42);
  transform: translate(-50%, -50%) rotate(-18deg);
  animation-duration: 22s;
}

.map-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 24px currentColor;
}

.map-node.alpha {
  top: 28%;
  left: 28%;
  color: var(--cyan);
}

.map-node.beta {
  top: 62%;
  left: 67%;
  color: var(--coral);
  background: var(--coral);
}

.map-node.gamma {
  top: 42%;
  left: 74%;
  color: var(--amber);
  background: var(--amber);
}

.scan-line {
  position: absolute;
  inset: 0 auto 0 0;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(48, 242, 207, 0.18), transparent);
  animation: scan 4.2s ease-in-out infinite;
}

.console-grid {
  gap: 10px;
  margin-top: 14px;
}

.console-cell {
  flex: 1;
  min-height: 72px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.console-cell.wide {
  flex: 1.35;
}

.console-cell span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.console-cell strong {
  font-size: 26px;
}

.bar-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 21, 26, 0.1);
}

.bar-track i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--cyan), var(--amber));
}

.terminal-line {
  min-height: 28px;
  margin: 18px 0 0;
  color: #0f8f45;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.terminal-line b {
  display: inline-block;
  width: 8px;
  height: 1em;
  margin-left: 4px;
  background: #0f8f45;
  vertical-align: -2px;
  animation: blink 900ms steps(1) infinite;
}

.hero-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 34px;
  padding: 12px;
  border: 1px solid rgba(17, 21, 26, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 200, 178, 0.14), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(255, 67, 101, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(17,21,26,0.04) 1px, transparent 1px) 0 0 / 64px 64px,
    rgba(255, 255, 255, 0.58);
  box-shadow: 0 22px 70px rgba(17, 21, 26, 0.07);
  overflow: hidden;
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
}

.hero-strip::before,
.hero-strip::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-strip::before {
  inset: 0;
  background: linear-gradient(105deg, transparent 0 38%, rgba(255, 255, 255, 0.72) 48%, transparent 58% 100%);
  transform: translateX(-100%);
  animation: stripGlide 7s ease-in-out infinite;
}

.hero-strip::after {
  left: 18px;
  right: 18px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 178, 0.72), rgba(104, 75, 255, 0.45), transparent);
}

.capability-card {
  --accent: var(--cyan);
  position: relative;
  z-index: 1;
  min-height: 92px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(17, 21, 26, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.56)),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 18%, transparent), transparent 58%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.capability-card::before {
  content: "";
  position: absolute;
  inset: auto 12px 12px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.76;
  transform: translateX(-42%);
  animation: signalRun 3.8s ease-in-out infinite;
}

.capability-card::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 12%, transparent), 0 0 24px var(--accent);
  animation: pulseNode 2.2s ease-in-out infinite;
}

.capability-card:hover {
  border-color: color-mix(in srgb, var(--accent) 44%, rgba(17, 21, 26, 0.12));
  box-shadow: 0 20px 54px color-mix(in srgb, var(--accent) 18%, transparent);
  transform: translateY(-4px);
}

.capability-card strong {
  min-width: 0;
  color: var(--text);
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 760;
  letter-spacing: 0;
}

.capability-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, rgba(17, 21, 26, 0.12));
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--accent) 18%, transparent) 0 26%, transparent 27%),
    rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.36);
}

.capability-icon::before,
.capability-icon::after,
.capability-icon i,
.capability-icon i::before,
.capability-icon i::after {
  content: "";
  position: absolute;
  display: block;
}

.capability-icon::before {
  inset: 8px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0.72;
}

.capability-icon::after {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  top: 3px;
  left: 50%;
  box-shadow: 0 0 18px var(--accent);
  transform-origin: 0 18px;
  animation: orbitDot 4.8s linear infinite;
}

.capability-card.frontend {
  --accent: var(--violet);
}

.capability-card.backend {
  --accent: var(--amber);
}

.capability-card.seo {
  --accent: var(--green);
}

.capability-card.ads {
  --accent: var(--coral);
}

.capability-card.support {
  --accent: #2a75ff;
}

.capability-card.ux .capability-icon i {
  inset: 13px 10px;
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.capability-card.ux .capability-icon i::before,
.capability-card.ux .capability-icon i::after {
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.capability-card.ux .capability-icon i::before {
  left: 2px;
}

.capability-card.ux .capability-icon i::after {
  right: 2px;
}

.capability-card.frontend .capability-icon i {
  inset: 13px 11px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
}

.capability-card.frontend .capability-icon i::after {
  right: -10px;
  bottom: -10px;
  width: 14px;
  height: 2px;
  background: var(--accent);
  transform: rotate(-90deg);
}

.capability-card.backend .capability-icon i {
  left: 11px;
  right: 11px;
  top: 10px;
  height: 7px;
  border: 1px solid var(--accent);
  box-shadow: 0 9px 0 -1px rgba(255, 255, 255, 0.82), 0 9px 0 0 var(--accent), 0 18px 0 -1px rgba(255, 255, 255, 0.82), 0 18px 0 0 var(--accent);
}

.capability-card.seo .capability-icon i {
  left: 11px;
  top: 11px;
  width: 15px;
  height: 15px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.capability-card.seo .capability-icon i::after {
  width: 12px;
  height: 2px;
  right: -9px;
  bottom: -5px;
  background: var(--accent);
  transform: rotate(45deg);
}

.capability-card.ads .capability-icon i {
  inset: 10px 10px 10px 17px;
  border: 2px solid var(--accent);
  border-left: 0;
  border-radius: 0 16px 16px 0;
}

.capability-card.ads .capability-icon i::before {
  left: -8px;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--accent);
}

.capability-card.support .capability-icon i {
  left: 12px;
  top: 12px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.capability-card.support .capability-icon i::before,
.capability-card.support .capability-icon i::after {
  background: var(--accent);
}

.capability-card.support .capability-icon i::before {
  left: 7px;
  top: -7px;
  width: 2px;
  height: 30px;
}

.capability-card.support .capability-icon i::after {
  left: -7px;
  top: 7px;
  width: 30px;
  height: 2px;
}

.stats {
  padding-top: 36px;
  padding-bottom: 36px;
  background: #eef3f8;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 86px);
  width: 100%;
  padding: clamp(42px, 6vw, 78px) clamp(28px, 5vw, 70px);
  border: 1px solid rgba(17, 21, 26, 0.05);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(17,21,26,0.04) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(rgba(17,21,26,0.03) 1px, transparent 1px) 0 0 / 58px 58px,
    #eef3f8;
}

.stat-item {
  display: grid;
  gap: 18px;
  color: #18316e;
}

.stat-item strong {
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(42px, 4.4vw, 76px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0;
}

.stat-item span {
  max-width: 210px;
  color: #18316e;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  gap: 16px;
  min-width: 0;
  max-width: min(780px, 100%);
  margin-bottom: clamp(30px, 3vw, 40px);
}

.section-head h2,
.contact-copy h2 {
  font-size: clamp(34px, 5.3vw, 72px);
}

.section-head p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.services {
  padding-bottom: clamp(42px, 4vw, 56px);
  background:
    linear-gradient(180deg, rgba(246, 248, 251, 0.12), rgba(255, 255, 255, 0.92)),
    linear-gradient(90deg, rgba(0, 200, 178, 0.08), transparent 48%, rgba(255, 67, 101, 0.06));
}

.service-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.timeline-item,
.case-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(17, 21, 26, 0.08);
}

.service-card {
  position: relative;
  min-height: 235px;
  padding: 28px;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,21,26,0.04) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(rgba(17,21,26,0.035) 1px, transparent 1px) 0 0 / 34px 34px;
  opacity: 0.42;
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 28px 22px 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--coral), var(--amber));
  transform: scaleX(0.36);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 200, 178, 0.4);
  background: rgba(255, 255, 255, 0.94);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-index {
  color: var(--amber);
  font-size: 13px;
  font-weight: 720;
  position: relative;
}

.service-card h3,
.timeline-item h3,
.case-card h3 {
  position: relative;
  margin: 26px 0 12px;
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 360;
  line-height: 1.15;
}

.service-card p,
.timeline-item p,
.case-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.service-more {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.service-more::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(17, 21, 26, 0.18);
  border-radius: 50%;
  color: var(--cyan);
  transition: transform 220ms ease, color 220ms ease, background 220ms ease;
}

.service-card:hover .service-more::after {
  color: #ffffff;
  background: var(--ink);
  transform: rotate(90deg);
}

.service-card-mark {
  --service-accent: var(--cyan);
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 1;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--service-accent) 46%, transparent);
  border-radius: 50%;
  color: var(--service-accent);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px color-mix(in srgb, var(--service-accent) 12%, transparent);
  transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 280ms ease;
}

.service-card-mark::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px dashed color-mix(in srgb, var(--service-accent) 38%, transparent);
  border-radius: 50%;
  animation: serviceMarkOrbit 14s linear infinite;
}

.service-card-mark::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--service-accent);
  box-shadow: 26px 20px 0 color-mix(in srgb, var(--service-accent) 52%, transparent);
  transform: translate(-29px, -22px);
}

.service-card-mark svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.35;
}

.service-card:hover .service-card-mark {
  color: #ffffff;
  background: var(--service-accent);
  box-shadow: 0 18px 42px color-mix(in srgb, var(--service-accent) 24%, transparent);
  transform: rotate(8deg) scale(1.05);
}

.mark-shop { --service-accent: #00a995; }
.mark-corporation { --service-accent: #2678e8; }
.mark-information { --service-accent: #159a45; }
.mark-custom { --service-accent: #684bff; }
.mark-landing { --service-accent: #e63358; }
.mark-advertising { --service-accent: #c18b00; }
.mark-support { --service-accent: #00a995; }
.mark-ai { --service-accent: #684bff; }
.mark-crm { --service-accent: #c18b00; }
.mark-modules { --service-accent: #684bff; }

@keyframes serviceMarkOrbit {
  to { transform: rotate(360deg); }
}

.method {
  padding-top: clamp(42px, 4vw, 60px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(237, 242, 246, 0.72));
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--ink), var(--cyan), var(--violet), var(--coral), var(--amber));
}

.timeline-item {
  position: relative;
  padding: 76px 24px 28px;
  min-height: 250px;
}

.timeline-item span {
  position: absolute;
  top: 0;
  left: 24px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #ffffff;
  background: var(--ink);
  font-weight: 680;
}

.clients {
  background: #ffffff;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
}

.client-logo-card {
  position: relative;
  --client-fill-a: var(--client-accent, 0, 200, 178);
  --client-fill-b: 17, 21, 26;
  display: grid;
  place-items: center;
  min-height: 148px;
  padding: 26px;
  border: 1px solid rgba(17, 21, 26, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(239, 245, 249, 0.72));
  box-shadow: none;
  isolation: isolate;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.client-logo-card::before,
.client-logo-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.client-logo-card::before {
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.24), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(255, 255, 255, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(var(--client-fill-a), 0.98), rgba(var(--client-fill-b), 0.96));
  opacity: 0;
  transition: opacity 220ms ease;
}

.client-logo-card::after {
  inset: 10px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 22px 22px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 220ms ease, transform 320ms ease;
}

.client-logo-card img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(82%, 235px);
  max-height: 72px;
  object-fit: contain;
  filter: grayscale(1) saturate(0) contrast(0) brightness(0.68);
  opacity: 0.68;
  transform: translateY(0) scale(0.96);
  transition: filter 260ms ease, opacity 220ms ease, transform 220ms ease;
}

.client-logo-card.logo-wide img {
  max-width: min(88%, 265px);
}

.client-logo-card.logo-extra-wide img {
  max-width: 96%;
}

.client-logo-card.logo-icon img {
  max-width: 96px;
  max-height: 88px;
}

.client-logo-card:nth-child(1) {
  --client-accent: 229, 0, 19;
  --client-fill-a: 129, 0, 12;
  --client-fill-b: 22, 24, 38;
}

.client-logo-card:nth-child(2) {
  --client-accent: 230, 54, 32;
  --client-fill-a: 114, 18, 22;
  --client-fill-b: 20, 26, 42;
}

.client-logo-card:nth-child(3) {
  --client-accent: 28, 55, 64;
  --client-fill-a: 18, 18, 18;
  --client-fill-b: 68, 75, 82;
}

.client-logo-card:nth-child(4) {
  --client-accent: 36, 177, 226;
  --client-fill-a: 6, 86, 136;
  --client-fill-b: 8, 36, 58;
}

.client-logo-card:nth-child(5) {
  --client-accent: 45, 145, 142;
  --client-fill-a: 224, 255, 250;
  --client-fill-b: 142, 218, 212;
}

.client-logo-card:nth-child(6) {
  --client-accent: 130, 31, 140;
  --client-fill-a: 82, 14, 92;
  --client-fill-b: 28, 18, 50;
}

.client-logo-card:nth-child(7) {
  --client-accent: 17, 21, 26;
  --client-fill-a: 236, 246, 248;
  --client-fill-b: 172, 205, 212;
}

.client-logo-card:nth-child(8) {
  --client-accent: 205, 0, 18;
  --client-fill-a: 23, 82, 53;
  --client-fill-b: 145, 25, 24;
}

.client-logo-card:nth-child(9) {
  --client-accent: 86, 99, 170;
  --client-fill-a: 38, 47, 112;
  --client-fill-b: 102, 55, 62;
}

.client-logo-card:nth-child(10) {
  --client-accent: 0, 161, 218;
  --client-fill-a: 5, 48, 78;
  --client-fill-b: 0, 136, 176;
}

.client-logo-card:nth-child(11) {
  --client-accent: 255, 197, 28;
  --client-fill-a: 22, 38, 82;
  --client-fill-b: 190, 142, 18;
}

.client-logo-card:nth-child(12) {
  --client-accent: 34, 34, 34;
  --client-fill-a: 237, 246, 242;
  --client-fill-b: 184, 210, 204;
}

.client-logo-card:hover {
  border-color: rgba(var(--client-accent, 0, 200, 178), 0.34);
  background: rgb(var(--client-fill-a));
  box-shadow: 0 26px 72px rgba(var(--client-accent, 0, 200, 178), 0.2), 0 0 0 1px rgba(255, 255, 255, 0.32) inset;
  transform: translateY(-5px);
}

.client-logo-card:hover::before {
  opacity: 1;
}

.client-logo-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.client-logo-card:hover img {
  filter: grayscale(0) saturate(1.05) contrast(1.03) brightness(1) drop-shadow(0 12px 18px rgba(0, 0, 0, 0.18));
  opacity: 1;
  transform: translateY(-3px) scale(1);
}

.cases {
  background:
    linear-gradient(180deg, rgba(237, 242, 246, 0.72), rgba(246, 248, 251, 0.96)),
    linear-gradient(90deg, rgba(104, 75, 255, 0.08), transparent 52%, rgba(0, 200, 178, 0.08));
}

.portfolio {
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 200, 178, 0.22), transparent 26%),
    radial-gradient(circle at 8% 88%, rgba(104, 75, 255, 0.2), transparent 28%),
    #18316e;
  overflow: hidden;
}

.portfolio::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px) 0 0 / 84px 84px;
  pointer-events: none;
}

.portfolio-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(34px, 3.6vw, 46px);
}

.portfolio-head h2 {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(34px, 5.3vw, 72px);
  font-weight: 360;
  line-height: 1.04;
}

.portfolio .eyebrow {
  color: #22f0d4;
}

.portfolio-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  color: #ffffff;
  font-weight: 800;
}

.portfolio-link::first-letter {
  color: #22f0d4;
}

.portfolio-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.portfolio-card {
  position: relative;
  min-width: 0;
}

.project-shot {
  position: relative;
  display: block;
  height: clamp(300px, 28vw, 450px);
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 76% 24%, rgba(34, 240, 212, 0.18), transparent 28%),
    radial-gradient(circle at 16% 82%, rgba(104, 75, 255, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #071222;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  transform-style: preserve-3d;
}

.project-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.42) 50%, transparent 58% 100%);
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity 220ms ease, transform 520ms ease;
  pointer-events: none;
}

.project-shot::before {
  content: "";
  position: absolute;
  inset: 12% 8% auto;
  height: 42%;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px) 0 0 / 34px 34px;
  opacity: 0.48;
  transform: skewY(-8deg);
  pointer-events: none;
}

.portfolio-card:hover .project-shot::after {
  opacity: 1;
  transform: translateX(60%);
}

.mockup-stage {
  position: absolute;
  inset: 0;
  display: block;
  perspective: 1200px;
}

.device,
.device-screen,
.mockup-image {
  display: block;
}

.device {
  position: absolute;
  z-index: 1;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.32));
  transition: transform 420ms ease, filter 420ms ease;
}

.device-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #101820;
}

.mockup-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background: #f6f8fb;
}

.laptop {
  left: 13%;
  right: 4%;
  top: 16%;
  height: 55%;
  border: 10px solid #0a0d11;
  border-bottom-width: 18px;
  border-radius: 12px 12px 6px 6px;
  background: #0a0d11;
  transform: rotateX(5deg) rotateY(-13deg) rotateZ(-4deg);
  transform-origin: 50% 100%;
}

.laptop::before {
  content: "";
  position: absolute;
  left: 43%;
  right: 43%;
  bottom: -13px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  z-index: 2;
}

.laptop::after {
  content: "";
  position: absolute;
  left: -9%;
  right: -11%;
  bottom: -37px;
  height: 22px;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(180deg, #d8dde4, #7d8793 64%, #2e343d);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.3);
  transform: perspective(500px) rotateX(58deg);
  transform-origin: top;
}

.laptop .device-screen {
  border-radius: 4px;
}

.phone {
  left: 3%;
  bottom: 10%;
  width: 25%;
  height: 56%;
  padding: 10px 6px 8px;
  border: 6px solid #0b0e13;
  border-radius: 24px;
  background: #0b0e13;
  transform: rotateX(2deg) rotateY(18deg) rotateZ(-7deg);
}

.phone .device-screen {
  inset: 10px 6px 8px;
  border-radius: 15px;
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 7px;
  left: 50%;
  width: 28%;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transform: translateX(-50%);
}

.portfolio-card:nth-child(3n + 2) .project-shot {
  background:
    radial-gradient(circle at 82% 18%, rgba(225, 168, 0, 0.16), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(34, 240, 212, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    #11151a;
}

.portfolio-card:nth-child(3n + 2) .laptop {
  left: 7%;
  right: 10%;
  transform: rotateX(5deg) rotateY(12deg) rotateZ(3deg);
}

.portfolio-card:nth-child(3n + 2) .phone {
  left: auto;
  right: 4%;
  transform: rotateX(2deg) rotateY(-18deg) rotateZ(7deg);
}

.portfolio-card:nth-child(3n) .project-shot {
  background:
    radial-gradient(circle at 70% 28%, rgba(255, 67, 101, 0.2), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(34, 240, 212, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
    #0f1820;
}

.portfolio-card:nth-child(3n) .phone {
  left: 6%;
  width: 24%;
  transform: rotateX(2deg) rotateY(16deg) rotateZ(-4deg);
}

.portfolio-card:hover .laptop {
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.4));
  transform: rotateX(5deg) rotateY(-9deg) rotateZ(-2deg) translateY(-4px);
}

.portfolio-card:nth-child(3n + 2):hover .laptop {
  transform: rotateX(5deg) rotateY(9deg) rotateZ(2deg) translateY(-4px);
}

.portfolio-card:hover .phone {
  filter: drop-shadow(0 32px 34px rgba(0, 0, 0, 0.42));
  transform: rotateX(2deg) rotateY(12deg) rotateZ(-4deg) translateY(-8px);
}

.portfolio-card:nth-child(3n + 2):hover .phone {
  transform: rotateX(2deg) rotateY(-12deg) rotateZ(4deg) translateY(-8px);
}

.portfolio-card:nth-child(3n):hover .phone {
  transform: rotateX(2deg) rotateY(12deg) rotateZ(-2deg) translateY(-8px);
}

.portfolio-card h3 {
  margin: 22px 0 12px;
  color: #ffffff;
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(20px, 1.8vw, 31px);
  font-weight: 430;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.portfolio-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.portfolio-card i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 8px 2px;
  background: #22f0d4;
}

.case-card {
  min-height: 430px;
  padding: 14px;
  overflow: hidden;
}

.case-card h3,
.case-card p,
.case-card span {
  margin-left: 12px;
  margin-right: 12px;
}

.case-card span {
  display: inline-flex;
  margin-top: 20px;
  color: var(--green);
  font-weight: 900;
}

.case-visual {
  height: 210px;
  border: 1px solid rgba(17, 21, 26, 0.08);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(17,21,26,0.07) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(rgba(17,21,26,0.055) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(135deg, rgba(0,200,178,0.2), rgba(255,67,101,0.12), rgba(255,255,255,0.72));
  position: relative;
  overflow: hidden;
}

.case-visual::before,
.case-visual::after {
  content: "";
  position: absolute;
  border: 1px solid currentColor;
  color: var(--cyan);
}

.case-visual::before {
  inset: 42px 34px;
  background: rgba(255, 255, 255, 0.5);
}

.case-visual::after {
  width: 46%;
  height: 32%;
  right: 26px;
  bottom: 28px;
  color: var(--coral);
}

.case-visual.corporate {
  background:
    linear-gradient(90deg, rgba(17,21,26,0.07) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(rgba(17,21,26,0.055) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(135deg, rgba(104,75,255,0.18), rgba(0,200,178,0.1), rgba(255,255,255,0.74));
}

.case-visual.campaign {
  background:
    linear-gradient(90deg, rgba(17,21,26,0.07) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(rgba(17,21,26,0.055) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(135deg, rgba(225,168,0,0.18), rgba(255,67,101,0.14), rgba(255,255,255,0.72));
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.68fr);
  align-items: start;
  gap: clamp(24px, 6vw, 86px);
  background:
    linear-gradient(180deg, rgba(246, 248, 251, 0.96), rgba(255, 255, 255, 0.98)),
    linear-gradient(90deg, rgba(0,200,178,0.1), transparent);
}

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

.contact-copy p:not(.eyebrow) {
  margin-top: 24px;
}

.contact-channels {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.contact-channels a {
  color: var(--cyan);
  font-weight: 680;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
}

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

.contact-form label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  outline: none;
}

.contact-form input {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 122px;
  padding: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 200, 178, 0.68);
  box-shadow: 0 0 0 3px rgba(0, 200, 178, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.site-footer {
  position: relative;
  isolation: isolate;
  padding: clamp(64px, 6vw, 92px) max(24px, calc((100vw - var(--max)) / 2)) 36px;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 200, 178, 0.16), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(255, 67, 101, 0.1), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 84px 84px,
    #17316f;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(0, 200, 178, 0.12), transparent 36%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 112px;
  width: min(420px, 34vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 178, 0.92), rgba(255, 255, 255, 0.55));
  opacity: 0.8;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.18fr) repeat(4, minmax(150px, 1fr));
  gap: clamp(30px, 4vw, 76px);
  align-items: start;
}

.footer-brand,
.footer-column,
.footer-address {
  display: grid;
  align-content: start;
}

.footer-logo {
  display: inline-flex;
  width: max-content;
  padding: 0;
}

.footer-logo img {
  width: 166px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.18));
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-logo:hover img {
  opacity: 0.82;
  transform: translateY(-2px);
}

.footer-tagline {
  margin: 22px 0 0;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-address {
  gap: 10px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.65;
}

.footer-address a,
.footer-column a,
.footer-brief {
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.footer-address a:hover,
.footer-column a:hover,
.footer-brief:hover {
  color: #33f2d5;
}

.footer-brief {
  width: max-content;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 1px dashed rgba(51, 242, 213, 0.8);
  color: #ffffff;
  font-weight: 720;
}

.footer-brief:hover {
  border-color: #ffffff;
  transform: translateX(4px);
}

.footer-column {
  gap: 14px;
}

.footer-column h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(18px, 1.25vw, 21px);
  line-height: 1.18;
  font-weight: 760;
}

.footer-column a {
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 520;
}

.footer-column a:hover {
  transform: translateX(5px);
}

.footer-bottom {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: clamp(48px, 5vw, 72px);
  padding: 18px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
}

.footer-socials,
.footer-badges {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials a,
.footer-badges span {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #ffffff;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0;
}

.footer-socials a {
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.footer-socials a:hover {
  border-color: rgba(51, 242, 213, 0.8);
  background: #33f2d5;
  color: #17316f;
  transform: translateY(-3px);
}

.footer-badges {
  justify-content: flex-end;
}

.footer-badges span {
  color: #33f2d5;
  background: rgba(51, 242, 213, 0.08);
}

/* Inner service pages */
.inner-page {
  background:
    linear-gradient(90deg, rgba(17, 21, 26, 0.045) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(rgba(17, 21, 26, 0.04) 1px, transparent 1px) 0 0 / 96px 96px,
    #f8fafc;
}

.inner-page .main-nav .is-current {
  color: var(--ink);
}

.inner-page .main-nav .is-current::after {
  transform: scaleX(1);
}

.inner-hero {
  min-height: 92svh;
  padding-top: 154px;
  padding-bottom: 42px;
  overflow: hidden;
}

.inner-breadcrumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 42px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
}

.inner-breadcrumb a {
  color: var(--cyan);
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(38px, 6vw, 94px);
}

.inner-hero-copy {
  max-width: 760px;
}

.inner-title,
.detail-intro h2,
.inner-contact h2,
.catalog-row h2 {
  margin: 0;
  font-family: "Geologica", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-weight: 230;
  letter-spacing: 0;
}

.inner-title {
  max-width: 860px;
  font-size: 72px;
  line-height: 1.02;
}

.inner-lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: #46515d;
  font-size: 19px;
  line-height: 1.65;
}

.product-showcase {
  position: relative;
  min-width: 0;
  height: 570px;
  perspective: 1400px;
}

.product-showcase::before {
  content: "";
  position: absolute;
  inset: 8% 4% 4% 10%;
  border: 1px solid rgba(0, 200, 178, 0.22);
  background:
    linear-gradient(90deg, rgba(17, 21, 26, 0.055) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(17, 21, 26, 0.045) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(135deg, rgba(0, 200, 178, 0.13), rgba(104, 75, 255, 0.08), rgba(255, 255, 255, 0.82));
  transform: rotate(-2deg);
}

.showcase-browser {
  position: absolute;
  top: 9%;
  right: 1%;
  width: 88%;
  height: 74%;
  border: 8px solid #171c22;
  border-bottom-width: 18px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 34px 74px rgba(17, 21, 26, 0.22);
  overflow: hidden;
  transform: rotateY(-7deg) rotateX(2deg) rotateZ(-1.8deg);
  transform-style: preserve-3d;
  animation: showcaseFloat 6s ease-in-out infinite;
}

.showcase-browser img {
  width: 100%;
  height: calc(100% - 30px);
  object-fit: cover;
  object-position: center top;
}

.showcase-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 10px;
  color: #7b8792;
  background: #ffffff;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.showcase-chrome i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.showcase-chrome i:nth-child(2) { background: var(--amber); }
.showcase-chrome i:nth-child(3) { background: var(--cyan); }
.showcase-chrome span { margin-left: auto; }

.showcase-phone {
  position: absolute;
  left: 1%;
  bottom: 4%;
  z-index: 2;
  width: 26%;
  height: 49%;
  border: 7px solid #171c22;
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0 26px 54px rgba(17, 21, 26, 0.26);
  overflow: hidden;
  transform: rotate(4deg);
}

.showcase-phone::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  z-index: 2;
  width: 34%;
  height: 5px;
  border-radius: 4px;
  background: #171c22;
  transform: translateX(-50%);
}

.showcase-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 17% top;
}

.corporation-showcase .showcase-phone img {
  object-position: center top;
}

.showcase-status {
  position: absolute;
  right: 5%;
  bottom: 3%;
  z-index: 3;
  padding: 8px 10px;
  color: #ffffff;
  background: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

.detail-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-metrics span {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.detail-metrics span:last-child { border-right: 0; }
.detail-metrics strong { color: #17316f; font-size: 22px; font-weight: 480; }
.detail-metrics small { color: var(--muted); font-size: 11px; font-weight: 720; text-transform: uppercase; }

.detail-overview {
  background: #ffffff;
}

.detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(28px, 7vw, 120px);
  margin-bottom: 48px;
}

.detail-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.detail-intro h2 {
  max-width: 880px;
  font-size: 58px;
  line-height: 1.05;
}

.detail-intro > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-item {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 250, 252, 0.68);
  transition: color 220ms ease, background 220ms ease;
}

.feature-item:hover {
  color: #ffffff;
  background: #17316f;
}

.feature-item > span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.feature-item h3 {
  margin: 54px 0 14px;
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 460;
  line-height: 1.2;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  transition: color 220ms ease;
}

.feature-item:hover p { color: rgba(255, 255, 255, 0.74); }

.tech-stack {
  background:
    linear-gradient(90deg, rgba(17, 21, 26, 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(17, 21, 26, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(135deg, #eef5f6, #ffffff 68%);
}

.stack-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stack-lane {
  --stack-accent: 0, 200, 178;
  display: grid;
  grid-template-columns: minmax(170px, 0.38fr) minmax(0, 1fr);
  gap: 26px;
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.stack-lane:nth-child(2) { --stack-accent: 104, 75, 255; }
.stack-lane:nth-child(3) { --stack-accent: 255, 67, 101; }
.stack-lane:nth-child(4) { --stack-accent: 225, 168, 0; }

.stack-lane:hover {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 4px 0 0 rgb(var(--stack-accent));
}

.stack-lane header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.stack-lane-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid rgba(var(--stack-accent), 0.32);
  border-radius: 50%;
  color: rgb(var(--stack-accent));
  background: rgba(var(--stack-accent), 0.08);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.stack-lane:hover .stack-lane-icon {
  color: #ffffff;
  background: rgb(var(--stack-accent));
  transform: rotate(-8deg) scale(1.06);
}

.stack-lane-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.6;
}

.stack-lane header small {
  display: block;
  margin-bottom: 8px;
  color: rgb(var(--stack-accent));
  font-size: 10px;
  font-weight: 820;
}

.stack-lane h3 {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 560;
  line-height: 1.25;
}

.tech-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 8px 12px;
}

.tech-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 5px 8px 5px 5px;
  border-bottom: 1px solid rgba(17, 21, 26, 0.1);
  color: #3e4a56;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.tech-item:hover {
  color: var(--ink);
  border-color: rgba(var(--stack-accent), 0.65);
  transform: translateX(4px);
}

.tech-item i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  color: rgb(var(--stack-accent));
  background: rgba(var(--stack-accent), 0.1);
  font-size: 10px;
  font-style: normal;
  font-weight: 840;
}

.tech-item b {
  min-width: 0;
  font-size: 12px;
  font-weight: 720;
  overflow-wrap: anywhere;
}

.detail-process {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 80px 80px,
    #101820;
}

.detail-process .detail-intro { grid-template-columns: 1fr; max-width: 900px; }
.detail-process .detail-intro h2 { color: #ffffff; }
.detail-process .eyebrow { color: #33f2d5; }

.detail-process .detail-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

.workflow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
}

.workflow-rail::before,
.workflow-rail::after {
  content: "";
  position: absolute;
  top: 31px;
  left: 0;
  height: 2px;
}

.workflow-rail::before {
  right: 0;
  background: rgba(255, 255, 255, 0.16);
}

.workflow-rail::after {
  width: 22%;
  background: linear-gradient(90deg, transparent, #33f2d5, #ffffff, transparent);
  filter: drop-shadow(0 0 7px rgba(51, 242, 213, 0.9));
  animation: workflowScan 4.8s linear infinite;
}

.workflow-step {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 286px;
  padding: 0 18px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.workflow-step:first-child { padding-left: 0; }
.workflow-step:last-child { padding-right: 0; border-right: 0; }

.workflow-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(51, 242, 213, 0.55);
  border-radius: 50%;
  color: #33f2d5;
  background: #101820;
  box-shadow: 0 0 0 9px rgba(16, 24, 32, 0.9);
  animation: workflowPulse 4.8s ease-in-out infinite;
}

.workflow-step:nth-child(2) .workflow-icon { animation-delay: 0.8s; }
.workflow-step:nth-child(3) .workflow-icon { animation-delay: 1.6s; }
.workflow-step:nth-child(4) .workflow-icon { animation-delay: 2.4s; }
.workflow-step:nth-child(5) .workflow-icon { animation-delay: 3.2s; }
.workflow-step:nth-child(6) .workflow-icon { animation-delay: 4s; }

.workflow-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.65;
}

.workflow-step > div {
  margin-top: 30px;
}

.workflow-step b {
  color: #33f2d5;
  font-size: 11px;
  font-weight: 820;
}

.workflow-step h3 {
  margin: 12px 0 12px;
  color: #ffffff;
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 560;
  line-height: 1.25;
}

.workflow-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.65;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process-track li {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.process-track li:last-child { border-right: 0; }
.process-track li::before { content: ""; position: absolute; top: -3px; left: 24px; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 8px rgba(0, 200, 178, 0.13); }
.process-track b { color: #33f2d5; font-size: 13px; }
.process-track span { max-width: 230px; font-size: 18px; line-height: 1.45; }

.integration-band { background: linear-gradient(135deg, #edf5f5, #ffffff 62%); }
.integration-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.integration-list span { display: grid; place-items: center; min-height: 92px; padding: 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #52606c; font-size: 12px; font-weight: 800; transition: color 180ms ease, background 180ms ease; }
.integration-list span:hover { color: #ffffff; background: var(--cyan); }

.inner-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  align-items: end;
  gap: 24px 70px;
  background: #ffffff;
}

.inner-contact .eyebrow { grid-column: 1 / -1; margin: 0; }
.inner-contact h2 { max-width: 920px; font-size: 62px; line-height: 1.04; }
.inner-contact > p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.inner-contact .button { width: max-content; }

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(38px, 7vw, 110px);
  min-height: 88svh;
  padding-top: 156px;
}

.catalog-hero-copy { max-width: 780px; }
.catalog-hero-copy .inner-lead { margin-bottom: 28px; }
.catalog-hero-copy .button { width: max-content; }

.services-mosaic {
  position: relative;
  height: 580px;
}

.services-mosaic::before {
  content: "";
  position: absolute;
  inset: 6% 4% 9% 4%;
  border: 1px solid rgba(104, 75, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(17, 21, 26, 0.05) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(rgba(17, 21, 26, 0.045) 1px, transparent 1px) 0 0 / 36px 36px,
    rgba(255, 255, 255, 0.68);
}

.services-mosaic figure {
  position: absolute;
  margin: 0;
  border: 7px solid #ffffff;
  box-shadow: 0 28px 70px rgba(17, 21, 26, 0.18);
  overflow: hidden;
}

.services-mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic-main { top: 8%; left: 0; width: 78%; height: 68%; transform: rotate(-3deg); }
.mosaic-side { right: 0; bottom: 3%; width: 48%; height: 54%; transform: rotate(4deg); }
.mosaic-label { position: absolute; left: 7%; bottom: 7%; z-index: 3; padding: 10px 12px; color: #ffffff; background: var(--ink); font-size: 10px; font-weight: 800; }

.catalog-directory { padding-top: 28px; background: #ffffff; }

.catalog-row {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) minmax(178px, 0.24fr) auto;
  align-items: center;
  gap: clamp(20px, 3.2vw, 52px);
  min-height: 190px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 110px;
  transition: padding 220ms ease, background 220ms ease;
}

.catalog-row:last-child { border-bottom: 1px solid var(--line); }
.catalog-row:hover { padding-right: 24px; padding-left: 24px; background: #f0f5f7; }
.catalog-index { color: var(--cyan); font-size: 13px; font-weight: 800; }
.catalog-row h2 { font-size: 38px; line-height: 1.1; }
.catalog-row p { max-width: 760px; margin: 12px 0; color: var(--muted); line-height: 1.65; }
.catalog-row small { color: #83909b; font-size: 10px; font-weight: 800; }
.catalog-price {
  position: relative;
  display: grid;
  align-content: center;
  gap: 7px;
  min-width: 178px;
  min-height: 70px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}
.catalog-price::before {
  content: "";
  position: absolute;
  top: 9px;
  left: -2px;
  width: 3px;
  height: 18px;
  background: linear-gradient(var(--coral), var(--amber), var(--cyan));
  opacity: 0.72;
}
.catalog-price small {
  color: #83909b;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}
.catalog-price strong {
  font-family: "Geologica", sans-serif;
  font-size: 18px;
  font-weight: 360;
  line-height: 1.28;
  transition: color 220ms ease;
}
.catalog-price.is-stacked { gap: 5px; }
.catalog-price.is-stacked strong { font-size: 13px; font-weight: 480; }
.catalog-row:hover .catalog-price strong { color: #007f72; }
.catalog-row > a { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.catalog-row > a::after { content: "+"; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; color: var(--cyan); transition: transform 220ms ease, color 220ms ease, background 220ms ease; }
.catalog-row:hover > a::after { color: #ffffff; background: var(--ink); transform: rotate(90deg); }

/* AI service */
.ai-service-card {
  grid-column: 1 / -1;
  min-height: 280px;
  padding-right: min(36%, 520px);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.96) 0 62%, rgba(0, 200, 178, 0.1)),
    var(--panel);
}

.ai-service-card h3 {
  max-width: 680px;
  font-size: 32px;
}

.ai-service-card p { max-width: 760px; }

.ai-card-mark {
  position: absolute;
  top: 50%;
  right: clamp(36px, 8vw, 130px);
  color: transparent;
  font-family: "Geologica", "Manrope", sans-serif;
  font-size: 150px;
  font-weight: 180;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(0, 200, 178, 0.58);
  transform: translateY(-50%);
  transition: color 260ms ease, transform 260ms ease, -webkit-text-stroke 260ms ease;
}

.ai-service-card:hover .ai-card-mark {
  color: rgba(0, 200, 178, 0.1);
  -webkit-text-stroke-color: var(--cyan);
  transform: translateY(-50%) scale(1.05);
}

.catalog-row-ai {
  background: linear-gradient(90deg, rgba(0, 200, 178, 0.07), transparent 64%);
}

.ai-hero {
  background: linear-gradient(120deg, rgba(0, 200, 178, 0.055), transparent 44%, rgba(255, 67, 101, 0.035));
}

.ai-hero .inner-title { font-size: 66px; }

.ai-showcase {
  position: relative;
  min-width: 0;
  height: 570px;
  perspective: 1200px;
}

.ai-showcase::before {
  content: "";
  position: absolute;
  inset: 5% 2% 3% 8%;
  border: 1px solid rgba(0, 200, 178, 0.2);
  background:
    linear-gradient(90deg, rgba(17, 21, 26, 0.05) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(rgba(17, 21, 26, 0.045) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(135deg, rgba(0, 200, 178, 0.11), rgba(255, 255, 255, 0.78));
  transform: rotate(-1.5deg);
}

.ai-console {
  position: absolute;
  inset: 8% 1% 8% 4%;
  display: grid;
  grid-template-rows: 46px minmax(0, 1fr) 50px;
  border: 1px solid rgba(17, 21, 26, 0.2);
  border-radius: 8px;
  background: rgba(250, 252, 253, 0.96);
  box-shadow: 0 34px 74px rgba(17, 21, 26, 0.2);
  overflow: hidden;
  transform: rotateY(-5deg) rotateX(1deg) rotateZ(1deg);
  transform-style: preserve-3d;
  animation: showcaseFloat 6s ease-in-out infinite;
}

.ai-console-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: #75808a;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.ai-console-head > span { display: flex; gap: 6px; }
.ai-console-head i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.ai-console-head i:nth-child(2) { background: var(--amber); }
.ai-console-head i:nth-child(3) { background: var(--cyan); }
.ai-console-head em { justify-self: end; color: var(--cyan); font-size: inherit; font-style: normal; }

.ai-flow-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(108px, 1fr) minmax(150px, 0.9fr) minmax(108px, 1fr);
  align-items: center;
  gap: 26px;
  padding: 34px;
}

.ai-flow-map::before,
.ai-flow-map::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 31%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  background-size: 200% 100%;
  animation: aiSignal 2.4s linear infinite;
}

.ai-flow-map::before { left: 18%; }
.ai-flow-map::after { right: 18%; animation-delay: 1.2s; }

.ai-node-column {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.ai-node {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 13px;
  border: 1px solid rgba(17, 21, 26, 0.14);
  border-radius: 6px;
  color: #4f5b67;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 21, 26, 0.06);
  font-size: 10px;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.ai-node svg { width: 18px; height: 18px; color: var(--cyan); stroke-width: 1.7; }
.ai-actions .ai-node svg { color: var(--coral); }
.ai-node:hover { color: var(--ink); border-color: rgba(0, 200, 178, 0.5); transform: translateX(4px); }
.ai-actions .ai-node:hover { transform: translateX(-4px); }

.ai-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  width: 168px;
  height: 168px;
  justify-self: center;
  border: 1px solid rgba(0, 200, 178, 0.36);
  border-radius: 50%;
  color: #ffffff;
  background: #111b24;
  box-shadow: 0 0 0 14px rgba(0, 200, 178, 0.07), 0 22px 48px rgba(17, 21, 26, 0.22);
}

.ai-core-orbit {
  position: absolute;
  inset: -12px;
  border: 1px dashed rgba(0, 200, 178, 0.56);
  border-radius: 50%;
  animation: aiOrbit 11s linear infinite;
}

.ai-core-orbit::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 23px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 16px rgba(255, 67, 101, 0.72);
}

.ai-core-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 10px; color: #33f2d5; }
.ai-core-icon svg { width: 40px; height: 40px; stroke-width: 1.25; }
.ai-core > b { font-size: 12px; }
.ai-core > small { margin-top: 6px; color: rgba(255, 255, 255, 0.52); font-size: 8px; }

.ai-live-log {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-top: 1px solid var(--line);
  color: #67737e;
  background: rgba(237, 243, 246, 0.78);
  font-size: 10px;
}

.ai-live-log span { color: var(--cyan); font-weight: 800; }
.ai-live-log p { margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ai-live-log b { color: var(--ink); }

.ai-showcase-status {
  position: absolute;
  right: 0;
  bottom: 3%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  color: #ffffff;
  background: var(--coral);
  font-size: 9px;
  font-weight: 800;
}

.ai-showcase-status svg { width: 15px; height: 15px; }

.ai-usecases {
  background:
    linear-gradient(90deg, rgba(17, 21, 26, 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(17, 21, 26, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    #edf6f6;
}

.ai-usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.ai-usecase {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 20px;
  min-height: 180px;
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 200ms ease, background 200ms ease;
}

.ai-usecase:nth-child(odd) { border-right: 1px solid var(--line); }
.ai-usecase:nth-child(even) { padding-left: 28px; }
.ai-usecase:hover { padding-right: 20px; padding-left: 8px; background: rgba(255, 255, 255, 0.65); }
.ai-usecase:nth-child(even):hover { padding-left: 36px; }
.ai-usecase > span { display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid rgba(0, 200, 178, 0.34); border-radius: 50%; color: var(--cyan); background: rgba(255, 255, 255, 0.68); }
.ai-usecase svg { width: 22px; height: 22px; stroke-width: 1.6; }
.ai-usecase h3 { margin: 2px 0 12px; font-size: 20px; font-weight: 560; }
.ai-usecase p { margin: 0; color: var(--muted); line-height: 1.65; }
.ai-usecase > b { color: rgba(17, 21, 26, 0.2); font-size: 12px; }

.ai-guardrails {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 80px 80px,
    #17316f;
}

.ai-guardrails .detail-intro h2 { color: #ffffff; }
.ai-guardrails .detail-intro > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.67); }
.ai-guardrails .eyebrow { color: #33f2d5; }

.guardrail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.guardrail-item {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.guardrail-item:last-child { border-right: 0; }
.guardrail-item > span { display: grid; place-items: center; width: 50px; height: 50px; border: 1px solid rgba(51, 242, 213, 0.5); border-radius: 50%; color: #33f2d5; transition: color 180ms ease, background 180ms ease, transform 180ms ease; }
.guardrail-item:hover > span { color: #17316f; background: #33f2d5; transform: rotate(-7deg); }
.guardrail-item svg { width: 22px; height: 22px; stroke-width: 1.65; }
.guardrail-item h3 { margin: 46px 0 14px; font-size: 19px; font-weight: 560; }
.guardrail-item p { margin: 0; color: rgba(255, 255, 255, 0.64); font-size: 14px; line-height: 1.65; }

@keyframes aiSignal {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

@keyframes aiOrbit { to { transform: rotate(360deg); } }

/* CRM and marketplace integrations */
.crm-service-card {
  grid-column: 1 / -1;
  min-height: 280px;
  padding-right: min(36%, 520px);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.96) 0 60%, rgba(225, 168, 0, 0.1)),
    var(--panel);
}

.crm-service-card h3 { max-width: 680px; font-size: 32px; }
.crm-service-card p { max-width: 760px; }

.crm-card-mark {
  position: absolute;
  top: 50%;
  right: clamp(48px, 9vw, 145px);
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(225, 168, 0, 0.38);
  border-radius: 50%;
  color: var(--amber);
  background: rgba(225, 168, 0, 0.06);
  transform: translateY(-50%);
  transition: color 240ms ease, background 240ms ease, transform 240ms ease;
}

.crm-card-mark::before,
.crm-card-mark::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(225, 168, 0, 0.34);
  border-radius: 50%;
}

.crm-card-mark::before { inset: -16px; }
.crm-card-mark::after { inset: 22px; }
.crm-card-mark svg { width: 48px; height: 48px; stroke-width: 1.25; }
.crm-service-card:hover .crm-card-mark { color: #ffffff; background: var(--amber); transform: translateY(-50%) rotate(12deg) scale(1.04); }

.support-service-card {
  grid-column: 1 / -1;
  min-height: 290px;
  padding-right: 220px;
  background: linear-gradient(125deg, rgba(0, 200, 178, 0.09), rgba(255, 255, 255, 0.86) 52%, rgba(255, 67, 101, 0.07));
}

.support-service-card h3 { max-width: 680px; font-size: 32px; }
.support-service-card p { max-width: 780px; }
.support-card-mark { position: absolute; top: 50%; right: 76px; display: grid; place-items: center; width: 106px; height: 106px; border: 1px solid rgba(0, 200, 178, 0.35); border-radius: 50%; color: var(--cyan); background: rgba(255, 255, 255, 0.78); transform: translateY(-50%); transition: color 220ms ease, background 220ms ease, transform 300ms ease; }
.support-card-mark::before { content: ""; position: absolute; inset: -16px; border: 1px dashed rgba(255, 67, 101, 0.34); border-radius: 50%; animation: crmRotate 12s linear infinite reverse; }
.support-card-mark svg { width: 45px; height: 45px; stroke-width: 1.25; }
.support-service-card:hover .support-card-mark { color: #ffffff; background: var(--coral); transform: translateY(-50%) rotate(-10deg) scale(1.04); }
.catalog-row-crm { background: linear-gradient(90deg, rgba(225, 168, 0, 0.08), transparent 64%); }

.crm-hero { background: linear-gradient(125deg, rgba(225, 168, 0, 0.055), transparent 42%, rgba(0, 200, 178, 0.055)); }
.crm-hero .inner-title { font-size: 64px; }

.crm-showcase {
  position: relative;
  min-width: 0;
  height: 570px;
  perspective: 1400px;
}

.crm-showcase::before {
  content: "";
  position: absolute;
  inset: 5% 3% 2% 7%;
  border: 1px solid rgba(225, 168, 0, 0.22);
  background:
    linear-gradient(90deg, rgba(17, 21, 26, 0.05) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(rgba(17, 21, 26, 0.045) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(135deg, rgba(225, 168, 0, 0.1), rgba(255, 255, 255, 0.84));
  transform: rotate(-1.5deg);
}

.crm-window {
  position: absolute;
  inset: 8% 1% 8% 4%;
  display: grid;
  grid-template-rows: 46px minmax(0, 1fr);
  border: 1px solid rgba(17, 21, 26, 0.2);
  border-radius: 8px;
  background: #f9fbfc;
  box-shadow: 0 34px 74px rgba(17, 21, 26, 0.2);
  overflow: hidden;
  transform: rotateY(-5deg) rotateX(1deg) rotateZ(1deg);
  animation: showcaseFloat 6.4s ease-in-out infinite;
}

.crm-window-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: #75808a;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.crm-window-head > span { display: flex; gap: 6px; }
.crm-window-head i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.crm-window-head i:nth-child(2) { background: var(--amber); }
.crm-window-head i:nth-child(3) { background: var(--cyan); }
.crm-window-head em { justify-self: end; color: var(--cyan); font-size: inherit; font-style: normal; }

.crm-ui { display: grid; grid-template-columns: 62px minmax(0, 1fr); min-height: 0; }
.crm-ui-nav { display: grid; align-content: start; justify-items: center; gap: 11px; padding: 18px 10px; border-right: 1px solid var(--line); background: #15212a; }
.crm-ui-nav span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 6px; color: rgba(255, 255, 255, 0.44); }
.crm-ui-nav span.active { color: #15212a; background: #33f2d5; }
.crm-ui-nav svg { width: 18px; height: 18px; stroke-width: 1.6; }

.crm-ui-main { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; min-width: 0; padding: 22px; }
.crm-ui-title { display: flex; justify-content: space-between; align-items: start; gap: 14px; }
.crm-ui-title div { display: grid; gap: 5px; }
.crm-ui-title small { color: var(--cyan); font-size: 8px; font-weight: 800; }
.crm-ui-title strong { font-size: 17px; font-weight: 540; }
.crm-ui-title > span { display: inline-flex; align-items: center; gap: 6px; padding: 6px 8px; border: 1px solid rgba(0, 200, 178, 0.24); border-radius: 4px; color: #64717c; font-size: 8px; font-weight: 800; }
.crm-ui-title > span i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(0, 200, 178, 0.09); animation: crmBlink 1.8s ease-in-out infinite; }

.crm-sync-map { position: relative; display: grid; grid-template-columns: 1fr 150px 1fr; align-items: center; gap: 24px; min-height: 0; }
.crm-sync-map::before { content: ""; position: absolute; top: 50%; left: 13%; right: 13%; height: 1px; background: linear-gradient(90deg, transparent, var(--amber), var(--cyan), transparent); background-size: 200% 100%; animation: aiSignal 2.8s linear infinite; }
.crm-sync-side { position: relative; z-index: 1; display: grid; gap: 10px; }
.crm-sync-side span { display: grid; gap: 3px; padding: 10px 12px; border-left: 2px solid var(--amber); background: #ffffff; box-shadow: 0 8px 22px rgba(17, 21, 26, 0.06); }
.crm-sync-side.right span { border-right: 2px solid var(--cyan); border-left: 0; text-align: right; }
.crm-sync-side b { font-size: 10px; }
.crm-sync-side small { color: #82909b; font-size: 7px; }

.crm-sync-core { position: relative; z-index: 2; display: grid; place-items: center; align-content: center; width: 150px; height: 150px; border-radius: 50%; color: #ffffff; background: #15212a; box-shadow: 0 0 0 13px rgba(225, 168, 0, 0.08), 0 20px 46px rgba(17, 21, 26, 0.2); }
.crm-sync-core > svg { width: 36px; height: 36px; margin-bottom: 10px; color: #33f2d5; stroke-width: 1.35; animation: crmRotate 8s linear infinite; }
.crm-sync-core b { font-size: 10px; }
.crm-sync-core small { margin-top: 6px; color: rgba(255, 255, 255, 0.5); font-size: 6px; }
.crm-sync-orbit { position: absolute; inset: -10px; border: 1px dashed rgba(225, 168, 0, 0.6); border-radius: 50%; animation: aiOrbit 12s linear infinite; }
.crm-sync-orbit::after { content: ""; position: absolute; top: 12px; left: 22px; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 14px rgba(225, 168, 0, 0.8); }

.crm-ui-events { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.crm-ui-events span { display: grid; grid-template-columns: 20px minmax(0, 1fr) auto; align-items: center; gap: 6px; padding: 12px 9px; border-right: 1px solid var(--line); }
.crm-ui-events span:last-child { border-right: 0; }
.crm-ui-events svg { width: 15px; height: 15px; color: var(--cyan); }
.crm-ui-events b { min-width: 0; font-size: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.crm-ui-events small { color: var(--cyan); font-size: 7px; }
.crm-showcase-status { position: absolute; right: 0; bottom: 3%; z-index: 3; display: flex; align-items: center; gap: 7px; padding: 10px 12px; color: #ffffff; background: var(--amber); font-size: 9px; font-weight: 800; }
.crm-showcase-status svg { width: 15px; height: 15px; }

.crm-architecture {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 80px 80px,
    #111b24;
}

.crm-architecture .detail-intro h2 { color: #ffffff; }
.crm-architecture .detail-intro > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.64); }
.crm-architecture .eyebrow { color: #33f2d5; }

.crm-architecture-map { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 240px minmax(0, 1fr); align-items: center; gap: clamp(30px, 5vw, 90px); min-height: 370px; padding: 38px 0; border-top: 1px solid rgba(255, 255, 255, 0.15); border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.crm-architecture-map::before { content: ""; position: absolute; top: 50%; left: 15%; right: 15%; height: 1px; background: linear-gradient(90deg, transparent, #33f2d5, #ffffff, var(--amber), transparent); background-size: 200% 100%; animation: aiSignal 3.6s linear infinite; }
.crm-data-source { position: relative; z-index: 1; display: grid; gap: 12px; }
.crm-data-source span { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 0 13px; align-items: center; min-height: 68px; padding: 11px 16px; border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.045); }
.crm-data-source svg { grid-row: 1 / 3; width: 22px; height: 22px; color: #33f2d5; stroke-width: 1.6; }
.crm-data-source b { font-size: 12px; }
.crm-data-source small { color: rgba(255, 255, 255, 0.42); font-size: 7px; }
.crm-data-source.output span { text-align: right; grid-template-columns: minmax(0, 1fr) 42px; }
.crm-data-source.output svg { grid-column: 2; }
.crm-data-source.output b, .crm-data-source.output small { grid-column: 1; }
.crm-data-source.output svg { color: var(--amber); }

.crm-engine { position: relative; z-index: 2; display: grid; place-items: center; align-content: center; width: 220px; height: 220px; justify-self: center; border: 1px solid rgba(51, 242, 213, 0.48); border-radius: 50%; background: #172530; box-shadow: 0 0 0 18px rgba(51, 242, 213, 0.04), 0 30px 70px rgba(0, 0, 0, 0.28); }
.crm-engine > svg { width: 48px; height: 48px; margin-bottom: 15px; color: #33f2d5; stroke-width: 1.15; }
.crm-engine strong { font-size: 12px; }
.crm-engine small { margin-top: 7px; color: rgba(255, 255, 255, 0.42); font-size: 7px; }
.crm-engine-ring { position: absolute; border-radius: 50%; }
.crm-engine-ring.one { inset: -14px; border: 1px dashed rgba(225, 168, 0, 0.52); animation: aiOrbit 15s linear infinite; }
.crm-engine-ring.two { inset: 23px; border: 1px dotted rgba(51, 242, 213, 0.38); animation: aiOrbit 10s linear infinite reverse; }

.crm-architecture-notes { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.crm-architecture-notes article { min-height: 220px; padding: 28px; border-right: 1px solid rgba(255, 255, 255, 0.12); }
.crm-architecture-notes article:last-child { border-right: 0; }
.crm-architecture-notes b { color: #33f2d5; font-size: 10px; }
.crm-architecture-notes h3 { margin: 38px 0 12px; font-size: 18px; font-weight: 560; }
.crm-architecture-notes p { margin: 0; color: rgba(255, 255, 255, 0.57); font-size: 13px; line-height: 1.65; }

.crm-data { background: #ffffff; }
.crm-data-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.crm-data-item { min-height: 310px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(248, 250, 252, 0.7); transition: background 200ms ease, transform 200ms ease; }
.crm-data-item:hover { background: #eef7f6; transform: translateY(-5px); }
.crm-data-item > span { display: flex; justify-content: space-between; align-items: center; color: var(--cyan); font-size: 10px; font-weight: 800; }
.crm-data-item > span svg { width: 27px; height: 27px; stroke-width: 1.5; }
.crm-data-item h3 { margin: 62px 0 14px; font-size: 20px; font-weight: 560; }
.crm-data-item p { margin: 0; color: var(--muted); line-height: 1.65; }
.crm-data-item small { display: block; margin-top: 24px; color: #8b969f; font-size: 8px; font-weight: 800; }

.crm-cycle {
  background:
    linear-gradient(90deg, rgba(17, 21, 26, 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(17, 21, 26, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    #eef5f6;
}

.crm-cycle-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.crm-cycle-flow { padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.66); }
.crm-cycle-flow > header { display: flex; align-items: center; gap: 18px; min-height: 78px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.crm-cycle-flow > header > span { display: grid; place-items: center; width: 58px; height: 58px; flex: 0 0 58px; border: 1px solid rgba(0, 200, 178, 0.38); border-radius: 50%; color: var(--cyan); background: rgba(0, 200, 178, 0.07); }
.crm-cycle-flow.inbound > header > span { color: var(--amber); border-color: rgba(225, 168, 0, 0.4); background: rgba(225, 168, 0, 0.08); }
.crm-cycle-flow header svg { width: 25px; height: 25px; stroke-width: 1.5; }
.crm-cycle-flow header small { color: var(--cyan); font-size: 8px; font-weight: 820; }
.crm-cycle-flow.inbound header small { color: var(--amber); }
.crm-cycle-flow header h3 { margin: 7px 0 0; font-size: 20px; font-weight: 560; }
.crm-cycle-flow ol { margin: 0; padding: 0; list-style: none; }
.crm-cycle-flow li { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.crm-cycle-flow li:last-child { border-bottom: 0; }
.crm-cycle-flow li > b { color: var(--cyan); font-size: 10px; }
.crm-cycle-flow.inbound li > b { color: var(--amber); }
.crm-cycle-flow h4 { margin: 0 0 8px; font-size: 15px; font-weight: 650; }
.crm-cycle-flow li p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.marketplace-band { background: linear-gradient(140deg, #edf3f6, #ffffff 58%); }
.marketplace-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.marketplace-card { --market-color: 0, 200, 178; position: relative; display: grid; grid-template-rows: 1fr auto auto; min-width: 0; min-height: 190px; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.7); overflow: hidden; transition: color 220ms ease, background 220ms ease, transform 220ms ease; }
.marketplace-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(var(--market-color), 0.18), rgba(var(--market-color), 0.04)); opacity: 0; transition: opacity 220ms ease; }
.marketplace-card:hover { z-index: 2; background: #ffffff; transform: translateY(-5px); }
.marketplace-card:hover::before { opacity: 1; }
.marketplace-logo { position: relative; z-index: 1; display: grid; place-items: center; min-height: 92px; padding: 14px; filter: grayscale(1); opacity: 0.58; transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease; }
.marketplace-card:hover .marketplace-logo { filter: grayscale(0); opacity: 1; transform: scale(1.04); }
.marketplace-logo img { width: 100%; max-width: 145px; max-height: 52px; object-fit: contain; }
.market-rozetka .marketplace-logo img { max-width: 156px; }
.market-epicentr .marketplace-logo img { max-width: 162px; }
.market-olx .marketplace-logo img { max-width: 88px; max-height: 60px; }
.market-temu .marketplace-logo img { max-width: 112px; }
.market-amazon .marketplace-logo img { max-width: 128px; }
.marketplace-card > small { position: relative; z-index: 1; min-height: 28px; color: #7d8993; font-size: 7px; font-weight: 800; line-height: 1.5; }
.marketplace-card > span { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; color: #66727d; font-size: 8px; font-weight: 800; }
.marketplace-card > span i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(0, 200, 178, 0.1); }
.market-rozetka { --market-color: 0, 166, 81; }
.market-prom { --market-color: 123, 71, 201; }
.market-epicentr { --market-color: 240, 48, 53; }
.market-olx { --market-color: 0, 210, 190; }
.market-hotline { --market-color: 246, 130, 32; }
.market-trendyol { --market-color: 246, 116, 35; }
.market-temu { --market-color: 255, 79, 0; }
.market-emag { --market-color: 29, 87, 166; }
.market-ebay { --market-color: 229, 50, 56; }
.market-amazon { --market-color: 255, 153, 0; }
.marketplace-logo > b { font-family: Arial, sans-serif; letter-spacing: 0; white-space: nowrap; }
.brand-hotline { color: #f37321; font-size: 25px; font-style: italic; }
.brand-hotline span { color: #1c77bc; }

.crm-proof-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 28px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.crm-proof { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 24px; min-height: 310px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.76); }
.crm-proof > span { display: grid; place-items: center; width: 66px; height: 66px; border: 1px solid rgba(0, 200, 178, 0.34); border-radius: 50%; color: var(--cyan); background: rgba(0, 200, 178, 0.07); }
.crm-proof-new > span { color: var(--amber); border-color: rgba(225, 168, 0, 0.38); background: rgba(225, 168, 0, 0.08); }
.crm-proof svg { width: 28px; height: 28px; stroke-width: 1.4; }
.crm-proof .eyebrow { margin: 4px 0 25px; }
.crm-proof h3 { margin: 0 0 16px; font-family: "Geologica", "Manrope", sans-serif; font-size: 29px; font-weight: 260; line-height: 1.15; }
.crm-proof p:not(.eyebrow) { margin: 0; color: var(--muted); line-height: 1.7; }

.crm-reliability {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 80px 80px,
    #17316f;
}
.crm-reliability .detail-intro h2 { color: #ffffff; }
.crm-reliability .detail-intro > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.66); }
.crm-reliability .eyebrow { color: #33f2d5; }

@keyframes crmBlink { 50% { opacity: 0.35; } }
@keyframes crmRotate { to { transform: rotate(360deg); } }

.catalog-system { background: linear-gradient(135deg, rgba(104, 75, 255, 0.1), rgba(0, 200, 178, 0.1), #ffffff); }
.system-track { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto; align-items: center; gap: 14px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.system-track span { font-size: 11px; font-weight: 800; }
.system-track i { height: 1px; background: linear-gradient(90deg, var(--cyan), var(--violet)); }

@keyframes showcaseFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@keyframes workflowScan {
  from { transform: translateX(-120%); }
  to { transform: translateX(460%); }
}

@keyframes workflowPulse {
  0%, 70%, 100% {
    color: #33f2d5;
    border-color: rgba(51, 242, 213, 0.42);
    box-shadow: 0 0 0 9px rgba(16, 24, 32, 0.9);
    transform: scale(1);
  }
  82% {
    color: #101820;
    border-color: #ffffff;
    background: #ffffff;
    box-shadow: 0 0 0 9px rgba(51, 242, 213, 0.14), 0 0 30px rgba(51, 242, 213, 0.38);
    transform: scale(1.08);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rotate {
  to {
    rotate: 360deg;
  }
}

@keyframes scan {
  0%, 100% {
    transform: translateX(-100%);
    opacity: 0.12;
  }
  45%, 60% {
    opacity: 1;
  }
  100% {
    transform: translateX(280%);
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes stripGlide {
  0%, 42% {
    transform: translateX(-105%);
  }
  70%, 100% {
    transform: translateX(105%);
  }
}

@keyframes signalRun {
  0%, 100% {
    transform: translateX(-42%);
  }
  50% {
    transform: translateX(42%);
  }
}

@keyframes pulseNode {
  0%, 100% {
    opacity: 0.62;
    transform: scale(0.82);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes orbitDot {
  to {
    transform: rotate(360deg);
  }
}

/* Support and growth service */
.support-hero {
  background: linear-gradient(125deg, rgba(0, 200, 178, 0.06), transparent 44%, rgba(255, 67, 101, 0.045));
}

.support-hero .inner-title { font-size: 62px; }

.support-control {
  position: relative;
  min-width: 0;
  height: 570px;
  perspective: 1400px;
}

.support-control::before {
  content: "";
  position: absolute;
  inset: 8% 2% 2% 8%;
  border: 1px solid rgba(0, 200, 178, 0.2);
  background:
    linear-gradient(90deg, rgba(17, 21, 26, 0.05) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(rgba(17, 21, 26, 0.045) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(145deg, rgba(0, 200, 178, 0.1), rgba(255, 255, 255, 0.76));
  transform: rotate(2deg);
}

.support-console {
  position: absolute;
  inset: 5% 2% 6% 0;
  z-index: 2;
  display: grid;
  grid-template-rows: 48px auto auto 1fr;
  border: 7px solid #17222b;
  border-radius: 8px;
  background: #f7fafb;
  box-shadow: 0 34px 76px rgba(17, 21, 26, 0.22);
  overflow: hidden;
  transform: rotateY(-5deg) rotateZ(-1deg);
  animation: showcaseFloat 6.5s ease-in-out infinite;
}

.support-console-head,
.landing-browser-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.74);
  background: #17222b;
  font-size: 8px;
  font-weight: 800;
}

.support-console-head > span,
.landing-browser-head > span { display: flex; gap: 6px; }
.support-console-head i,
.landing-browser-head i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.support-console-head i:nth-child(2),
.landing-browser-head i:nth-child(2) { background: var(--amber); }
.support-console-head i:nth-child(3),
.landing-browser-head i:nth-child(3) { background: var(--cyan); }
.support-console-head em,
.landing-browser-head em { justify-self: end; color: #33f2d5; font-style: normal; }

.support-health {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 22px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.health-score { display: flex; align-items: center; gap: 15px; }
.health-score > div { display: grid; gap: 4px; }
.health-score small,
.health-metrics small { color: #84919c; font-size: 7px; font-weight: 800; }
.health-score strong { font-size: 18px; font-weight: 540; }

.health-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border: 1px solid rgba(0, 200, 178, 0.4);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(0, 200, 178, 0.07);
  box-shadow: 0 0 0 9px rgba(0, 200, 178, 0.04);
}

.health-ring::after { content: ""; position: absolute; inset: -6px; border: 1px dashed rgba(0, 200, 178, 0.55); border-radius: 50%; animation: crmRotate 9s linear infinite; }
.health-ring svg { width: 28px; height: 28px; stroke-width: 1.5; }
.health-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.health-metrics span { display: grid; gap: 7px; min-height: 52px; padding: 8px 12px; border-left: 1px solid var(--line); }
.health-metrics b { font-size: 8px; font-weight: 800; }

.support-systems { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 18px 22px; border-bottom: 1px solid var(--line); }
.support-systems span { display: grid; justify-items: center; gap: 7px; padding: 13px 7px; border-right: 1px solid var(--line); }
.support-systems span:last-child { border-right: 0; }
.support-systems svg { width: 21px; height: 21px; color: var(--cyan); stroke-width: 1.5; }
.support-systems b { font-size: 8px; }
.support-systems small { color: #7e8a95; font-size: 6px; font-weight: 800; }

.support-ticket-stream { display: grid; align-content: center; padding: 8px 22px 16px; }
.support-ticket-stream span { display: grid; grid-template-columns: 8px 30px minmax(0, 1fr) auto; align-items: center; gap: 8px; min-height: 39px; border-bottom: 1px solid var(--line); font-size: 8px; }
.support-ticket-stream span:last-child { border-bottom: 0; }
.support-ticket-stream small { color: #6f7d89; }
.support-ticket-stream em { color: #7e8a95; font-size: 7px; font-style: normal; font-weight: 800; }
.priority { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(0, 200, 178, 0.1); }
.priority.urgent { background: var(--coral); box-shadow: 0 0 0 4px rgba(255, 67, 101, 0.1); animation: supportAlert 1.8s ease-in-out infinite; }
.priority.normal { background: var(--amber); box-shadow: 0 0 0 4px rgba(225, 168, 0, 0.1); }

.support-live {
  position: absolute;
  right: 0;
  bottom: 1%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  color: #ffffff;
  background: var(--coral);
  font-size: 8px;
  font-weight: 800;
}

.support-live svg { width: 15px; height: 15px; }

.support-scope-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.support-scope { position: relative; min-height: 300px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(248, 250, 252, 0.7); overflow: hidden; transition: color 220ms ease, background 220ms ease; }
.support-scope::after { content: ""; position: absolute; right: -35px; bottom: -35px; width: 110px; height: 110px; border: 1px solid rgba(0, 200, 178, 0.18); border-radius: 50%; transition: transform 280ms ease; }
.support-scope:hover { color: #ffffff; background: #17316f; }
.support-scope:hover::after { border-color: rgba(51, 242, 213, 0.5); transform: scale(1.35); }
.support-scope > span { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(0, 200, 178, 0.34); border-radius: 50%; color: var(--cyan); }
.support-scope svg { width: 21px; height: 21px; stroke-width: 1.55; }
.support-scope > b { position: absolute; top: 28px; right: 26px; color: rgba(17, 21, 26, 0.22); font-size: 10px; }
.support-scope:hover > b { color: rgba(255, 255, 255, 0.34); }
.support-scope h3 { margin: 48px 0 13px; font-size: 20px; font-weight: 560; }
.support-scope p { margin: 0; color: var(--muted); line-height: 1.65; transition: color 220ms ease; }
.support-scope:hover p { color: rgba(255, 255, 255, 0.72); }

.support-modes { background: linear-gradient(140deg, #edf4f6, #ffffff 64%); }
.support-mode-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.support-mode { display: grid; grid-template-rows: auto auto 1fr auto; min-height: 360px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.68); transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease; }
.support-mode:hover { z-index: 1; background: #ffffff; box-shadow: 0 22px 55px rgba(17, 21, 26, 0.1); transform: translateY(-7px); }
.support-mode header { display: flex; justify-content: space-between; align-items: center; }
.support-mode header > span { display: grid; place-items: center; width: 50px; height: 50px; border: 1px solid rgba(0, 200, 178, 0.34); border-radius: 50%; color: var(--cyan); transition: color 220ms ease, background 220ms ease, transform 220ms ease; }
.support-mode:hover header > span { color: #ffffff; background: var(--cyan); transform: rotate(-8deg); }
.support-mode svg { width: 22px; height: 22px; stroke-width: 1.55; }
.support-mode small { color: var(--cyan); font-size: 8px; font-weight: 820; }
.support-mode h3 { margin: 54px 0 15px; font-size: 22px; font-weight: 540; }
.support-mode p { margin: 0; color: var(--muted); line-height: 1.65; }
.support-mode > b { align-self: end; margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--line); color: #52606c; font-size: 10px; font-weight: 800; }

.support-sla { color: #ffffff; background: linear-gradient(135deg, #101820, #172b38); }
.support-sla .detail-intro h2 { color: #ffffff; }
.support-sla .eyebrow { color: #33f2d5; }
.support-sla .detail-intro > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.65); }
.sla-board { border-top: 1px solid rgba(255, 255, 255, 0.16); }
.sla-row { display: grid; grid-template-columns: 78px minmax(0, 1fr) minmax(150px, 0.27fr); align-items: center; gap: 28px; min-height: 150px; border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
.sla-row > span { display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid currentColor; border-radius: 50%; color: #33f2d5; font-size: 12px; font-weight: 820; }
.sla-row.critical > span { color: #ff718c; animation: supportAlert 2s ease-in-out infinite; }
.sla-row.high > span { color: #ffd45d; }
.sla-row small { color: rgba(255, 255, 255, 0.42); font-size: 8px; font-weight: 820; }
.sla-row h3 { margin: 9px 0; font-size: 20px; font-weight: 540; }
.sla-row p { max-width: 780px; margin: 0; color: rgba(255, 255, 255, 0.58); line-height: 1.6; }
.sla-row > b { justify-self: end; color: #33f2d5; font-size: 10px; text-align: right; }
.sla-assurances { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 28px; border: 1px solid rgba(255, 255, 255, 0.13); }
.sla-assurances span { display: flex; align-items: center; gap: 12px; min-height: 78px; padding: 18px; border-right: 1px solid rgba(255, 255, 255, 0.13); }
.sla-assurances span:last-child { border-right: 0; }
.sla-assurances svg { width: 20px; height: 20px; flex: 0 0 20px; color: #33f2d5; }
.sla-assurances b { font-size: 10px; font-weight: 720; }

.support-takeover { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.72fr); align-items: center; gap: clamp(44px, 8vw, 130px); background: #ffffff; }
.support-takeover-copy h2 { max-width: 850px; margin: 0; font-family: "Geologica", sans-serif; font-size: 58px; font-weight: 230; line-height: 1.05; }
.support-takeover-copy > p:not(.eyebrow) { max-width: 760px; margin: 26px 0 30px; color: var(--muted); font-size: 17px; line-height: 1.72; }
.takeover-checklist { border-top: 1px solid var(--line); }
.takeover-checklist span { display: grid; grid-template-columns: 42px minmax(0, 1fr); align-items: center; gap: 16px; min-height: 70px; border-bottom: 1px solid var(--line); }
.takeover-checklist i { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: #ffffff; background: var(--cyan); }
.takeover-checklist svg { width: 16px; height: 16px; stroke-width: 2; }
.takeover-checklist b { font-size: 13px; font-weight: 620; }

/* Landing page service */
.landing-hero { background: linear-gradient(130deg, rgba(255, 67, 101, 0.055), transparent 42%, rgba(225, 168, 0, 0.06)); }
.landing-hero .inner-title { font-size: 64px; }
.service-price-note {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(160px, auto) 1px minmax(180px, 1fr);
  align-items: center;
  gap: 16px;
  width: min(650px, 100%);
  min-height: 82px;
  margin-top: 26px;
  padding: 13px 20px 13px 16px;
  border: 1px solid rgba(17, 21, 26, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(17, 21, 26, 0.065);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.service-price-note::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(var(--coral), var(--amber), var(--cyan));
}
.service-price-note::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--coral), var(--amber), var(--cyan));
  animation: priceSignal 4.8s ease-in-out infinite;
}
.service-price-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 67, 101, 0.3);
  border-radius: 50%;
  color: var(--coral);
  background: rgba(255, 67, 101, 0.055);
}
.service-price-icon svg { width: 19px; height: 19px; stroke-width: 1.55; }
.service-price-main { display: grid; gap: 5px; }
.service-price-main small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}
.service-price-values { display: grid; gap: 4px; }
.service-price-main strong {
  display: block;
  font-family: "Geologica", sans-serif;
  font-size: 26px;
  font-weight: 330;
  line-height: 1;
  white-space: nowrap;
}
.service-price-note.is-stacked {
  grid-template-columns: 46px minmax(245px, auto) 1px minmax(180px, 1fr);
  width: min(720px, 100%);
}
.service-price-main.is-stacked strong {
  font-size: 13px;
  font-weight: 480;
  line-height: 1.35;
  white-space: normal;
}
.service-price-divider { width: 1px; height: 38px; background: var(--line); }
.service-price-note p { max-width: 230px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.landing-lab { position: relative; min-width: 0; height: 570px; perspective: 1500px; }
.landing-lab::before { content: ""; position: absolute; inset: 8% 4% 3% 7%; border: 1px solid rgba(255, 67, 101, 0.2); background: linear-gradient(90deg, rgba(17, 21, 26, 0.05) 1px, transparent 1px) 0 0 / 40px 40px, linear-gradient(rgba(17, 21, 26, 0.045) 1px, transparent 1px) 0 0 / 40px 40px, linear-gradient(145deg, rgba(255, 67, 101, 0.09), rgba(255, 255, 255, 0.78)); transform: rotate(-2deg); }
.landing-browser { position: absolute; inset: 4% 0 7% 2%; z-index: 2; display: grid; grid-template-rows: 48px minmax(0, 1fr); border: 7px solid #17222b; border-radius: 8px; background: #f6f8fa; box-shadow: 0 34px 76px rgba(17, 21, 26, 0.22); overflow: hidden; transform: rotateY(-5deg) rotateZ(1deg); animation: showcaseFloat 6.2s ease-in-out infinite; }
.landing-builder { display: grid; grid-template-columns: 50px minmax(0, 1fr) 150px; min-height: 0; }
.landing-tools { display: grid; align-content: start; justify-items: center; gap: 9px; padding: 16px 7px; color: rgba(255, 255, 255, 0.45); background: #17222b; }
.landing-tools span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 5px; }
.landing-tools span.active { color: #17222b; background: #33f2d5; }
.landing-tools svg { width: 16px; height: 16px; stroke-width: 1.6; }
.landing-canvas { min-width: 0; padding: 22px; }
.landing-mini-hero { position: relative; min-height: 230px; padding: 28px; color: #ffffff; background: linear-gradient(135deg, #17222b, #213f4c); overflow: hidden; }
.landing-mini-hero::after { content: ""; position: absolute; right: -34px; bottom: -60px; width: 210px; height: 210px; border: 1px solid rgba(51, 242, 213, 0.34); border-radius: 50%; box-shadow: 0 0 0 30px rgba(51, 242, 213, 0.035), 0 0 0 64px rgba(255, 67, 101, 0.035); }
.landing-mini-hero small { position: relative; z-index: 1; color: #33f2d5; font-size: 7px; font-weight: 800; }
.landing-mini-hero strong { position: relative; z-index: 1; display: block; max-width: 310px; margin-top: 18px; font-family: "Geologica", sans-serif; font-size: 27px; font-weight: 260; line-height: 1.08; }
.landing-mini-hero > i { display: block; width: 110px; height: 3px; margin: 18px 0; background: linear-gradient(90deg, var(--coral), var(--amber), var(--cyan)); }
.landing-mini-hero button { position: relative; z-index: 1; min-height: 35px; padding: 0 16px; border: 0; color: #17222b; background: #33f2d5; font-size: 7px; font-weight: 820; }
.landing-mini-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--line); border-top: 0; }
.landing-mini-proof span { display: grid; place-items: center; min-height: 48px; border-right: 1px solid var(--line); color: #687581; font-size: 7px; font-weight: 800; }
.landing-mini-proof span:last-child { border-right: 0; }
.landing-mini-content { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; margin-top: 14px; }
.landing-mini-content span { height: 60px; border: 1px solid var(--line); background: linear-gradient(150deg, #ffffff, #eef3f5); }
.landing-analytics { display: grid; align-content: start; gap: 12px; padding: 22px 14px; border-left: 1px solid var(--line); background: #ffffff; }
.landing-analytics > small { color: #7f8c97; font-size: 7px; font-weight: 820; }
.landing-analytics > strong { color: var(--cyan); font-size: 28px; font-weight: 350; }
.landing-chart { display: flex; align-items: end; gap: 5px; height: 100px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.landing-chart i { width: 18%; height: 30%; background: rgba(0, 200, 178, 0.18); animation: landingBars 3s ease-in-out infinite; }
.landing-chart i:nth-child(2) { height: 46%; animation-delay: 0.3s; }
.landing-chart i:nth-child(3) { height: 38%; animation-delay: 0.6s; }
.landing-chart i:nth-child(4) { height: 70%; animation-delay: 0.9s; }
.landing-chart i:nth-child(5) { height: 92%; background: var(--cyan); animation-delay: 1.2s; }
.landing-analytics > span { display: flex; justify-content: space-between; gap: 8px; padding-bottom: 9px; border-bottom: 1px solid var(--line); font-size: 7px; }
.landing-analytics > span b { color: #7f8c97; }
.landing-analytics > span em { color: var(--ink); font-style: normal; font-weight: 820; }
.landing-lead { position: absolute; right: 0; bottom: 1%; z-index: 4; display: grid; grid-template-columns: 28px auto; gap: 1px 9px; min-width: 150px; padding: 11px 13px; color: #ffffff; background: var(--coral); box-shadow: 0 16px 38px rgba(255, 67, 101, 0.25); animation: supportAlert 2.4s ease-in-out infinite; }
.landing-lead svg { grid-row: 1 / 3; align-self: center; width: 22px; height: 22px; }
.landing-lead b { font-size: 8px; }
.landing-lead small { color: rgba(255, 255, 255, 0.7); font-size: 6px; }

.conversion-path { color: #ffffff; background: linear-gradient(135deg, #111a22, #18303b); }
.conversion-path .detail-intro h2 { color: #ffffff; }
.conversion-path .eyebrow { color: #33f2d5; }
.conversion-path .detail-intro > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.65); }
.conversion-rail { position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; }
.conversion-rail::before { content: ""; position: absolute; top: 35px; left: 7%; right: 7%; height: 1px; background: linear-gradient(90deg, var(--coral), var(--amber), #33f2d5); }
.conversion-rail::after { content: ""; position: absolute; top: 32px; left: 0; width: 42px; height: 7px; background: #ffffff; filter: blur(3px); animation: conversionRun 4.5s linear infinite; }
.conversion-rail li { position: relative; z-index: 1; min-height: 260px; padding-right: 22px; border-right: 1px solid rgba(255, 255, 255, 0.11); }
.conversion-rail li:not(:first-child) { padding-left: 22px; }
.conversion-rail li:last-child { border-right: 0; }
.conversion-rail li > span { display: grid; place-items: center; width: 70px; height: 70px; border: 1px solid rgba(51, 242, 213, 0.5); border-radius: 50%; color: #33f2d5; background: #14232c; box-shadow: 0 0 0 9px #14232c; }
.conversion-rail svg { width: 25px; height: 25px; stroke-width: 1.55; }
.conversion-rail b { display: block; margin-top: 28px; color: #33f2d5; font-size: 9px; }
.conversion-rail h3 { margin: 10px 0; font-size: 19px; font-weight: 540; }
.conversion-rail p { margin: 0; color: rgba(255, 255, 255, 0.6); font-size: 13px; line-height: 1.6; }

.landing-types { background: linear-gradient(145deg, #eef4f6, #ffffff 60%); }
.landing-type-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.landing-type { min-height: 280px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.68); transition: background 220ms ease, transform 220ms ease; }
.landing-type:hover { z-index: 1; background: #ffffff; transform: translateY(-6px); }
.landing-type > span { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid rgba(255, 67, 101, 0.32); border-radius: 50%; color: var(--coral); transition: color 220ms ease, background 220ms ease, transform 220ms ease; }
.landing-type:hover > span { color: #ffffff; background: var(--coral); transform: rotate(8deg); }
.landing-type svg { width: 22px; height: 22px; stroke-width: 1.55; }
.landing-type small { display: block; margin-top: 38px; color: var(--coral); font-size: 8px; font-weight: 820; }
.landing-type h3 { margin: 10px 0 13px; font-size: 21px; font-weight: 540; }
.landing-type p { margin: 0; color: var(--muted); line-height: 1.65; }

.landing-launch { background: #ffffff; }
.launch-console { display: grid; grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr); border: 1px solid var(--line); background: #f4f7f8; }
.launch-score { display: grid; place-items: center; align-content: center; min-height: 420px; padding: 34px; color: #ffffff; background: #17222b; text-align: center; }
.launch-score > span { display: grid; place-items: center; width: 100px; height: 100px; margin-bottom: 24px; border: 1px solid rgba(51, 242, 213, 0.55); border-radius: 50%; color: #33f2d5; box-shadow: 0 0 0 14px rgba(51, 242, 213, 0.05); }
.launch-score svg { width: 40px; height: 40px; stroke-width: 1.35; }
.launch-score small { color: rgba(255, 255, 255, 0.45); font-size: 8px; font-weight: 820; }
.launch-score strong { margin: 10px 0; color: #33f2d5; font-size: 34px; font-weight: 320; }
.launch-score p { margin: 0; color: rgba(255, 255, 255, 0.62); font-size: 12px; }
.launch-checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-content: center; padding: 28px; }
.launch-checks span { display: grid; grid-template-columns: 36px minmax(0, 1fr) auto; align-items: center; gap: 12px; min-height: 88px; padding: 12px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.launch-checks span:nth-child(even) { border-right: 0; }
.launch-checks span:nth-last-child(-n + 2) { border-bottom: 0; }
.launch-checks i { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: #ffffff; background: var(--cyan); }
.launch-checks svg { width: 16px; height: 16px; }
.launch-checks b { font-size: 11px; font-weight: 650; }
.launch-checks small { color: var(--cyan); font-size: 7px; font-weight: 820; }

@keyframes supportAlert {
  0%, 100% { opacity: 0.72; transform: scale(0.94); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes landingBars {
  0%, 100% { transform: scaleY(0.82); transform-origin: bottom; opacity: 0.68; }
  50% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
}

@keyframes conversionRun {
  from { transform: translateX(0); }
  to { transform: translateX(1400px); }
}

@keyframes priceSignal {
  0%, 100% { opacity: 0.35; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(-195%); }
}

/* CMS module development */
.modules-hero {
  background: linear-gradient(128deg, rgba(104, 75, 255, 0.055), transparent 43%, rgba(0, 200, 178, 0.06));
}

.modules-hero .inner-title { font-size: 62px; }

.modules-other-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 680px;
  margin: 18px 0 0;
  color: #4d5b67;
  font-size: 13px;
  line-height: 1.55;
}

.modules-other-note > i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--violet);
}

.modules-other-note svg { width: 14px; height: 14px; }

.module-lab {
  position: relative;
  min-width: 0;
  height: 570px;
  perspective: 1400px;
}

.module-lab::before {
  content: "";
  position: absolute;
  inset: 8% 2% 2% 8%;
  border: 1px solid rgba(104, 75, 255, 0.2);
  background:
    linear-gradient(90deg, rgba(17, 21, 26, 0.05) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(rgba(17, 21, 26, 0.045) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(145deg, rgba(104, 75, 255, 0.09), rgba(255, 255, 255, 0.78));
  transform: rotate(2deg);
}

.module-lab-window {
  position: absolute;
  inset: 5% 2% 7% 0;
  z-index: 2;
  display: grid;
  grid-template-rows: 48px auto minmax(0, 1fr) auto;
  border: 7px solid #17222b;
  border-radius: 8px;
  background: #f7fafb;
  box-shadow: 0 34px 76px rgba(17, 21, 26, 0.22);
  overflow: hidden;
  transform: rotateY(-5deg) rotateZ(-1deg);
  animation: showcaseFloat 6.4s ease-in-out infinite;
}

.module-lab-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.74);
  background: #17222b;
  font-size: 8px;
  font-weight: 800;
}

.module-lab-head > span { display: flex; gap: 6px; }
.module-lab-head i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.module-lab-head i:nth-child(2) { background: var(--amber); }
.module-lab-head i:nth-child(3) { background: var(--cyan); }
.module-lab-head em { justify-self: end; color: #33f2d5; font-style: normal; }

.module-platforms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.module-platforms > span {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  align-items: center;
  gap: 2px 11px;
  min-height: 62px;
  padding: 8px 14px;
  border-right: 1px solid var(--line);
}

.module-platforms > span:last-child { border-right: 0; }
.module-platforms b { grid-row: 1 / 3; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 8px; color: #ffffff; background: var(--violet); font-size: 11px; }
.module-platforms .platform-opencart b { background: #21a9e1; }
.module-platforms .platform-presta b { background: #24262b; }
.module-platforms .platform-wordpress b { background: #28799e; }
.module-platforms small { align-self: end; font-size: 7px; font-weight: 840; }
.module-platforms > span > i { align-self: start; color: #84919c; font-size: 6px; font-style: normal; font-weight: 760; }

.module-build-flow {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(30px, 1fr) 132px minmax(30px, 1fr) 78px;
  align-items: center;
  gap: 13px;
  min-height: 0;
  padding: 20px 28px;
}

.module-build-flow > span {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #697783;
}

.module-build-flow > span svg { width: 26px; height: 26px; color: var(--violet); stroke-width: 1.4; }
.module-build-flow > span b { font-size: 7px; }

.module-flow-line {
  position: relative;
  display: block;
  height: 1px;
  overflow: hidden;
  background: rgba(104, 75, 255, 0.2);
}

.module-flow-line::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -20%;
  width: 34px;
  height: 5px;
  background: var(--violet);
  filter: blur(2px);
  animation: moduleSignal 2.4s linear infinite;
}

.module-flow-line.reverse::after { animation-direction: reverse; }

.module-build-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  color: #ffffff;
  background: #17222b;
  box-shadow: 0 0 0 11px rgba(104, 75, 255, 0.07), 0 18px 38px rgba(17, 21, 26, 0.19);
}

.module-build-core::before { content: ""; position: absolute; inset: -8px; border: 1px dashed rgba(0, 200, 178, 0.55); border-radius: 50%; animation: crmRotate 10s linear infinite; }
.module-build-core > i { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 6px; color: #33f2d5; }
.module-build-core svg { width: 34px; height: 34px; stroke-width: 1.3; }
.module-build-core strong { font-size: 9px; }
.module-build-core small { margin-top: 5px; color: rgba(255, 255, 255, 0.5); font-size: 6px; }

.module-output { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.module-output > span { display: grid; grid-template-columns: 28px minmax(0, 1fr); align-items: center; gap: 1px 8px; min-height: 62px; padding: 10px 14px; border-right: 1px solid var(--line); }
.module-output > span:last-child { border-right: 0; }
.module-output svg { grid-row: 1 / 3; width: 21px; height: 21px; color: var(--cyan); stroke-width: 1.5; }
.module-output b { align-self: end; font-size: 8px; }
.module-output small { align-self: start; color: #82909b; font-size: 6px; }

.module-estimate-chip {
  position: absolute;
  right: 0;
  bottom: 1%;
  z-index: 4;
  display: grid;
  grid-template-columns: 28px auto;
  gap: 1px 9px;
  min-width: 170px;
  padding: 11px 13px;
  color: #ffffff;
  background: var(--violet);
  box-shadow: 0 16px 38px rgba(104, 75, 255, 0.24);
}

.module-estimate-chip svg { grid-row: 1 / 3; align-self: center; width: 22px; height: 22px; }
.module-estimate-chip b { font-size: 9px; }
.module-estimate-chip small { color: rgba(255, 255, 255, 0.72); font-size: 7px; }

.module-promise { background: #ffffff; }
.module-promise-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.module-promise-card { min-height: 280px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(248, 250, 252, 0.68); transition: color 220ms ease, background 220ms ease, transform 220ms ease; }
.module-promise-card:hover { color: #ffffff; background: #17316f; transform: translateY(-5px); }
.module-promise-card > span { display: grid; place-items: center; width: 56px; height: 56px; border: 1px solid rgba(104, 75, 255, 0.34); border-radius: 50%; color: var(--violet); transition: color 220ms ease, background 220ms ease, transform 220ms ease; }
.module-promise-card:hover > span { color: #ffffff; background: var(--violet); transform: rotate(-8deg); }
.module-promise-card svg { width: 24px; height: 24px; stroke-width: 1.5; }
.module-promise-card h3 { margin: 52px 0 14px; font-size: 23px; font-weight: 520; }
.module-promise-card p { margin: 0; color: var(--muted); line-height: 1.68; transition: color 220ms ease; }
.module-promise-card:hover p { color: rgba(255, 255, 255, 0.72); }

.module-examples { background: linear-gradient(140deg, #edf3f6, #ffffff 62%); }
.module-example-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.module-example { position: relative; min-height: 295px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.68); overflow: hidden; transition: background 220ms ease, transform 220ms ease; }
.module-example:hover { z-index: 1; background: #ffffff; transform: translateY(-5px); }
.module-example > span { display: grid; place-items: center; width: 50px; height: 50px; border: 1px solid rgba(0, 200, 178, 0.34); border-radius: 50%; color: var(--cyan); transition: color 220ms ease, background 220ms ease, transform 220ms ease; }
.module-example:hover > span { color: #ffffff; background: var(--cyan); transform: rotate(8deg); }
.module-example svg { width: 22px; height: 22px; stroke-width: 1.55; }
.module-example > b { position: absolute; top: 29px; right: 26px; color: rgba(17, 21, 26, 0.2); font-size: 9px; }
.module-example h3 { margin: 46px 0 13px; font-size: 20px; font-weight: 540; }
.module-example p { margin: 0; color: var(--muted); line-height: 1.65; }

.module-compatibility {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 76px 76px,
    #101820;
}

.module-compatibility .detail-intro h2 { color: #ffffff; }
.module-compatibility .eyebrow { color: #33f2d5; }
.module-compatibility .detail-intro > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.64); }

.compatibility-map { position: relative; display: grid; place-items: center; min-height: 500px; margin-bottom: 18px; overflow: hidden; }
.compatibility-map::before { content: ""; position: absolute; top: 50%; left: 13%; right: 13%; height: 1px; background: linear-gradient(90deg, transparent, var(--violet), #33f2d5, var(--amber), transparent); opacity: 0.65; }
.compatibility-core { position: relative; z-index: 3; display: grid; place-items: center; align-content: center; width: 180px; height: 180px; border-radius: 50%; color: #ffffff; background: #172b36; box-shadow: 0 0 0 18px rgba(104, 75, 255, 0.07), 0 26px 60px rgba(0, 0, 0, 0.3); }
.compatibility-core::after { content: ""; position: absolute; inset: -11px; border: 1px dashed rgba(51, 242, 213, 0.58); border-radius: 50%; animation: crmRotate 13s linear infinite; }
.compatibility-core > i { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 10px; color: #33f2d5; }
.compatibility-core svg { width: 46px; height: 46px; stroke-width: 1.15; }
.compatibility-core b { font-size: 11px; }
.compatibility-core small { margin-top: 6px; color: rgba(255, 255, 255, 0.46); font-size: 6px; }

.compatibility-orbit { position: absolute; top: 50%; left: 50%; z-index: 1; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 50%; transform: translate(-50%, -50%); }
.compatibility-orbit.orbit-one { width: min(620px, 70%); height: 240px; }
.compatibility-orbit.orbit-two { width: min(1020px, 94%); height: 390px; }
.compatibility-orbit span { position: absolute; display: grid; place-items: center; min-width: 112px; min-height: 42px; padding: 8px 13px; border: 1px solid rgba(51, 242, 213, 0.28); color: rgba(255, 255, 255, 0.72); background: #14232c; font-size: 8px; font-weight: 800; }
.orbit-one span:nth-child(1) { top: -21px; left: 18%; }
.orbit-one span:nth-child(2) { top: 35%; right: -55px; }
.orbit-one span:nth-child(3) { bottom: -21px; left: 20%; }
.orbit-two span:nth-child(1) { top: 9%; left: -22px; }
.orbit-two span:nth-child(2) { top: 6%; right: 6%; }
.orbit-two span:nth-child(3) { right: -25px; bottom: 14%; }
.orbit-two span:nth-child(4) { left: 9%; bottom: -20px; }

.compatibility-notes { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid rgba(255, 255, 255, 0.14); }
.compatibility-notes article { min-height: 265px; padding: 28px; border-right: 1px solid rgba(255, 255, 255, 0.13); }
.compatibility-notes article:last-child { border-right: 0; }
.compatibility-notes span { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(51, 242, 213, 0.38); border-radius: 50%; color: #33f2d5; }
.compatibility-notes svg { width: 21px; height: 21px; stroke-width: 1.5; }
.compatibility-notes h3 { margin: 48px 0 13px; font-size: 18px; font-weight: 540; }
.compatibility-notes p { margin: 0; color: rgba(255, 255, 255, 0.58); font-size: 13px; line-height: 1.68; }

.module-delivery { background: #ffffff; }
.delivery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.delivery-card { display: grid; grid-template-rows: auto auto auto 1fr; min-height: 390px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #f8fafb; transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease; }
.delivery-card:hover { z-index: 1; background: #ffffff; box-shadow: 0 24px 60px rgba(17, 21, 26, 0.11); transform: translateY(-6px); }
.delivery-card.featured { color: #ffffff; background: #17316f; }
.delivery-card header { display: flex; justify-content: space-between; align-items: center; }
.delivery-card header > span { display: grid; place-items: center; width: 56px; height: 56px; border: 1px solid rgba(104, 75, 255, 0.34); border-radius: 50%; color: var(--violet); }
.delivery-card.featured header > span { border-color: rgba(51, 242, 213, 0.45); color: #33f2d5; }
.delivery-card svg { width: 24px; height: 24px; stroke-width: 1.5; }
.delivery-card small { color: var(--violet); font-size: 8px; font-weight: 820; }
.delivery-card.featured small { color: #33f2d5; }
.delivery-card h3 { margin: 50px 0 14px; font-size: 24px; font-weight: 520; }
.delivery-card p { margin: 0; color: var(--muted); line-height: 1.68; }
.delivery-card.featured p { color: rgba(255, 255, 255, 0.68); }
.delivery-card ul { align-self: end; display: grid; gap: 10px; margin: 28px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); list-style: none; }
.delivery-card.featured ul { border-color: rgba(255, 255, 255, 0.15); }
.delivery-card li { position: relative; padding-left: 18px; color: #56636f; font-size: 11px; font-weight: 650; }
.delivery-card.featured li { color: rgba(255, 255, 255, 0.75); }
.delivery-card li::before { content: ""; position: absolute; top: 0.55em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }

.module-request-section {
  scroll-margin-top: 104px;
  background: linear-gradient(145deg, #eaf1f4, #ffffff 52%);
}
.module-request-head { max-width: 1080px; margin-bottom: 52px; }
.module-request-head h2 { max-width: 950px; margin: 0; font-family: "Geologica", sans-serif; font-size: 62px; font-weight: 230; line-height: 1.04; }
.module-request-head > p:not(.eyebrow) { max-width: 780px; margin: 24px 0 0; color: var(--muted); font-size: 17px; line-height: 1.72; }
.module-request-layout { display: grid; grid-template-columns: minmax(0, 1fr) 370px; align-items: start; gap: 34px; }
.module-request-form { min-width: 0; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.86); }
.module-request-form fieldset { min-width: 0; margin: 0; padding: 34px; border: 0; border-bottom: 1px solid var(--line); }
.module-request-form legend { display: flex; align-items: center; gap: 14px; width: 100%; margin: 0 0 28px; padding: 0; }
.module-request-form legend span { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(104, 75, 255, 0.34); border-radius: 50%; color: var(--violet); font-size: 9px; font-weight: 820; }
.module-request-form legend b { font-size: 19px; font-weight: 560; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.module-request-form label { display: grid; align-content: start; gap: 9px; min-width: 0; color: #43515d; font-size: 11px; font-weight: 720; }
.module-request-form input,
.module-request-form select,
.module-request-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cdd7dd;
  border-radius: 4px;
  color: var(--ink);
  background: #ffffff;
  font: 500 14px/1.5 "Manrope", sans-serif;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.module-request-form input,
.module-request-form select { min-height: 50px; padding: 0 14px; }
.module-request-form textarea { min-height: 118px; padding: 13px 14px; resize: vertical; }
.module-request-form input:focus,
.module-request-form select:focus,
.module-request-form textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(104, 75, 255, 0.1); }
.module-request-form input[aria-invalid="true"],
.module-request-form select[aria-invalid="true"],
.module-request-form textarea[aria-invalid="true"] { border-color: var(--coral); background: rgba(255, 67, 101, 0.035); }
.form-wide { margin-top: 22px; }

.cms-picker { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 14px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.cms-picker label { position: relative; display: block; cursor: pointer; }
.cms-picker input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.cms-picker label > span { display: grid; align-content: center; gap: 7px; min-height: 100px; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #f8fafb; transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.cms-picker label > span b { color: var(--ink); font-size: 14px; font-weight: 680; }
.cms-picker label > span small { color: #85919b; font-size: 7px; font-weight: 800; }
.cms-picker input:checked + span { color: #ffffff; background: #17316f; box-shadow: inset 0 3px 0 var(--cyan); }
.cms-picker input:checked + span b { color: #ffffff; }
.cms-picker input:checked + span small { color: rgba(255, 255, 255, 0.64); }
.cms-picker-note { margin: 0 0 22px; padding: 11px 14px; border-left: 2px solid var(--violet); color: #63717d; background: rgba(104, 75, 255, 0.055); font-size: 11px; line-height: 1.6; }

.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; margin-top: 22px; }
.check-grid label,
.form-consent { grid-template-columns: 20px minmax(0, 1fr); align-items: start; gap: 10px; cursor: pointer; }
.check-grid input,
.form-consent input { width: 18px; height: 18px; min-height: 0; margin: 0; accent-color: var(--violet); }
.check-grid label > span,
.form-consent span { padding-top: 1px; line-height: 1.45; }
.form-consent { margin: 26px 34px 0; }

.module-form-actions { display: flex; gap: 12px; padding: 24px 34px 12px; }
.module-form-actions .button { gap: 9px; border: 0; cursor: pointer; }
.module-form-actions .button svg { width: 17px; height: 17px; }
.module-form-actions .ghost { border: 1px solid var(--line); background: transparent; }
.module-form-status { min-height: 24px; margin: 0; padding: 0 34px 24px; color: var(--cyan); font-size: 12px; font-weight: 700; }
.module-form-status.is-error { color: var(--coral); }

.module-request-summary { position: relative; min-width: 0; }
.summary-sticky { position: sticky; top: 120px; border: 1px solid rgba(23, 49, 111, 0.24); background: #ffffff; box-shadow: 0 28px 70px rgba(17, 21, 26, 0.1); }
.summary-sticky > header { display: flex; align-items: center; gap: 14px; padding: 24px; color: #ffffff; background: #17316f; }
.summary-sticky > header > span { display: grid; place-items: center; width: 48px; height: 48px; flex: 0 0 48px; border: 1px solid rgba(51, 242, 213, 0.45); border-radius: 50%; color: #33f2d5; }
.summary-sticky > header svg { width: 22px; height: 22px; }
.summary-sticky > header small { color: #33f2d5; font-size: 8px; font-weight: 820; }
.summary-sticky > header h3 { margin: 5px 0 0; font-size: 19px; font-weight: 520; }
.summary-values { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-bottom: 1px solid var(--line); }
.summary-values span { display: grid; gap: 7px; min-height: 78px; padding: 17px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.summary-values span:nth-child(even) { border-right: 0; }
.summary-values span:nth-last-child(-n + 2) { border-bottom: 0; }
.summary-values small { color: #84919c; font-size: 7px; font-weight: 820; }
.summary-values b { min-width: 0; font-size: 10px; font-weight: 740; overflow-wrap: anywhere; }
.summary-price { padding: 24px; border-bottom: 1px solid var(--line); }
.summary-price small { color: #7f8c97; font-size: 8px; font-weight: 820; }
.summary-price strong { display: block; margin: 7px 0; color: var(--violet); font-size: 28px; font-weight: 360; }
.summary-price p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.summary-time { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 12px; align-items: center; padding: 20px 24px; color: #ffffff; background: #17222b; }
.summary-time > i { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(51, 242, 213, 0.4); border-radius: 50%; color: #33f2d5; }
.summary-time svg { width: 19px; height: 19px; }
.summary-time b { font-size: 13px; }
.summary-time p { margin: 4px 0 0; color: rgba(255, 255, 255, 0.58); font-size: 9px; }
.summary-sticky ol { display: grid; gap: 0; margin: 0; padding: 16px 24px; list-style: none; }
.summary-sticky ol li { display: grid; grid-template-columns: 30px minmax(0, 1fr); align-items: center; gap: 10px; min-height: 47px; border-bottom: 1px solid var(--line); }
.summary-sticky ol li:last-child { border-bottom: 0; }
.summary-sticky ol span { color: var(--cyan); font-size: 8px; }
.summary-sticky ol b { font-size: 10px; font-weight: 650; }
.summary-note { margin: 0; padding: 16px 24px; border-top: 1px solid var(--line); color: #7a8792; background: #f7f9fa; font-size: 9px; line-height: 1.6; }

.module-service-card {
  grid-column: 1 / -1;
  min-height: 290px;
  padding-right: 220px;
  background: linear-gradient(125deg, rgba(104, 75, 255, 0.09), rgba(255, 255, 255, 0.88) 52%, rgba(0, 200, 178, 0.08));
}

.module-service-card h3 { max-width: 720px; font-size: 32px; }
.module-service-card p { max-width: 790px; }
.module-card-mark { position: absolute; top: 50%; right: 76px; display: grid; place-items: center; width: 106px; height: 106px; border: 1px solid rgba(104, 75, 255, 0.35); border-radius: 50%; color: var(--violet); background: rgba(255, 255, 255, 0.78); transform: translateY(-50%); transition: color 220ms ease, background 220ms ease, transform 300ms ease; }
.module-card-mark::before { content: ""; position: absolute; inset: -16px; border: 1px dashed rgba(0, 200, 178, 0.4); border-radius: 50%; animation: crmRotate 12s linear infinite; }
.module-card-mark svg { width: 45px; height: 45px; stroke-width: 1.25; }
.module-service-card:hover .module-card-mark { color: #ffffff; background: var(--violet); transform: translateY(-50%) rotate(10deg) scale(1.04); }
.catalog-row-modules { border-left: 3px solid var(--violet); background: linear-gradient(90deg, rgba(104, 75, 255, 0.055), transparent 42%); }

/* Remaining service detail pages */
.capability-page { --cap-accent: #00a995; --cap-accent-soft: #dff8f4; --cap-contrast: #17316f; }
.cap-information { --cap-accent: #00a995; --cap-accent-soft: #dcf7f2; --cap-contrast: #17316f; }
.cap-custom { --cap-accent: #684bff; --cap-accent-soft: #ebe7ff; --cap-contrast: #17222b; }
.cap-design { --cap-accent: #e63358; --cap-accent-soft: #ffe6ec; --cap-contrast: #17316f; }
.cap-seo { --cap-accent: #159a45; --cap-accent-soft: #e0f5e7; --cap-contrast: #17222b; }
.cap-advertising { --cap-accent: #c18b00; --cap-accent-soft: #fff2c9; --cap-contrast: #17316f; }
.cap-integrations { --cap-accent: #2678e8; --cap-accent-soft: #e1edff; --cap-contrast: #17222b; }

.capability-hero {
  background:
    linear-gradient(130deg, color-mix(in srgb, var(--cap-accent) 7%, white), transparent 42%),
    linear-gradient(305deg, rgba(104, 75, 255, 0.045), transparent 48%);
}

.capability-hero .inner-title { font-size: 60px; }
.capability-hero .eyebrow { color: var(--cap-accent); }

.capability-visual {
  position: relative;
  min-width: 0;
  height: 560px;
  perspective: 1500px;
}

.capability-visual::before {
  content: "";
  position: absolute;
  inset: 7% 1% 3% 7%;
  border: 1px solid color-mix(in srgb, var(--cap-accent) 28%, transparent);
  background:
    linear-gradient(90deg, rgba(17, 21, 26, 0.045) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(17, 21, 26, 0.04) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(145deg, var(--cap-accent-soft), rgba(255, 255, 255, 0.84));
  transform: rotate(2deg);
}

.cap-browser {
  --cap-rotate-y: -4deg;
  --cap-rotate-z: -1deg;
  position: absolute;
  inset: 8% 2% 9% 0;
  z-index: 2;
  display: grid;
  grid-template-rows: 42px minmax(0, 1fr) 64px;
  border: 7px solid #17222b;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 34px 76px rgba(17, 21, 26, 0.22);
  overflow: hidden;
  transform: rotateY(var(--cap-rotate-y)) rotateZ(var(--cap-rotate-z));
  animation: capFloat 6.5s ease-in-out infinite;
}

.cap-design .cap-browser { --cap-rotate-y: 4deg; --cap-rotate-z: 1deg; }
.cap-seo .cap-browser { --cap-rotate-y: -2deg; --cap-rotate-z: 0.6deg; }
.cap-advertising .cap-browser { --cap-rotate-y: 3deg; --cap-rotate-z: -0.8deg; }
.cap-integrations .cap-browser { --cap-rotate-y: -5deg; --cap-rotate-z: 0.8deg; }

.cap-browser-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.72);
  background: #17222b;
  font-size: 7px;
  font-weight: 800;
}

.cap-browser-head > span { display: flex; gap: 5px; }
.cap-browser-head i { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.cap-browser-head i:nth-child(2) { background: var(--amber); }
.cap-browser-head i:nth-child(3) { background: var(--cyan); }
.cap-browser-head b { justify-self: center; }
.cap-browser-head em { color: color-mix(in srgb, var(--cap-accent) 82%, white); font-style: normal; }

.cap-browser-screen { position: relative; min-height: 0; overflow: hidden; background: #eef3f6; }
.cap-browser-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 7s cubic-bezier(0.2, 0.75, 0.25, 1); }
.capability-visual:hover .cap-browser-screen img { transform: scale(1.045) translateY(-2%); }

.cap-browser-data {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.cap-browser-data span {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 10px 14px;
  border-right: 1px solid var(--line);
}

.cap-browser-data span:last-child { border-right: 0; }
.cap-browser-data small { color: #85919b; font-size: 6px; font-weight: 800; }
.cap-browser-data b { font-size: 8px; }
.cap-browser-data i { display: block; width: 62%; height: 2px; margin-top: 3px; background: var(--cap-accent); animation: capData 2.8s ease-in-out infinite alternate; }
.cap-browser-data span:nth-child(2) i { width: 82%; animation-delay: -0.8s; }
.cap-browser-data span:nth-child(3) i { width: 48%; animation-delay: -1.5s; }

.cap-phone {
  position: absolute;
  right: -1%;
  bottom: 3%;
  z-index: 4;
  width: 24%;
  height: 50%;
  padding: 5px;
  border: 5px solid #17222b;
  border-radius: 18px;
  background: #17222b;
  box-shadow: 0 24px 54px rgba(17, 21, 26, 0.27);
  overflow: hidden;
  transform: rotate(3deg);
  animation: capPhone 6s ease-in-out infinite;
}

.cap-design .cap-phone,
.cap-advertising .cap-phone { right: auto; left: -1%; transform: rotate(-3deg); }
.cap-phone img { width: 100%; height: 100%; border-radius: 11px; object-fit: cover; object-position: top center; }

.cap-node {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 142px;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--cap-accent) 38%, transparent);
  color: #ffffff;
  background: var(--cap-contrast);
  box-shadow: 0 16px 36px rgba(17, 21, 26, 0.17);
}

.cap-node > i { display: grid; place-items: center; width: 30px; height: 30px; color: var(--cap-accent); background: rgba(255, 255, 255, 0.08); }
.cap-node svg { width: 16px; height: 16px; stroke-width: 1.6; }
.cap-node small { color: rgba(255, 255, 255, 0.48); font-size: 6px; font-weight: 800; }
.cap-node b { font-size: 8px; }
.cap-node.one { top: 2%; right: 3%; animation: capNode 5.2s ease-in-out infinite; }
.cap-node.two { bottom: 0; left: 3%; animation: capNode 5.8s -2s ease-in-out infinite; }
.cap-design .cap-node.one,
.cap-advertising .cap-node.one { right: auto; left: 3%; }
.cap-design .cap-node.two,
.cap-advertising .cap-node.two { right: 3%; left: auto; }

.capability-metrics strong { color: var(--cap-accent); }

.cap-scope { background: #ffffff; }
.cap-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.cap-scope-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 250, 252, 0.72);
  overflow: hidden;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.cap-scope-card:hover {
  z-index: 1;
  color: #ffffff;
  background: var(--cap-contrast);
  transform: translateY(-5px);
}

.cap-scope-card > span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid color-mix(in srgb, var(--cap-accent) 42%, transparent);
  border-radius: 50%;
  color: var(--cap-accent);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.cap-scope-card:hover > span { color: #ffffff; background: var(--cap-accent); transform: rotate(8deg); }
.cap-scope-card svg { width: 24px; height: 24px; stroke-width: 1.45; }
.cap-scope-card > b { position: absolute; top: 32px; right: 30px; color: rgba(17, 21, 26, 0.17); font-size: 9px; }
.cap-scope-card:hover > b { color: rgba(255, 255, 255, 0.27); }
.cap-scope-card h3 { margin: 54px 0 14px; font-size: 23px; font-weight: 530; }
.cap-scope-card p { margin: 0; color: var(--muted); line-height: 1.7; transition: color 220ms ease; }
.cap-scope-card:hover p { color: rgba(255, 255, 255, 0.68); }

.cap-stack {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    #101820;
}

.cap-stack .detail-intro h2 { color: #ffffff; }
.cap-stack .eyebrow { color: color-mix(in srgb, var(--cap-accent) 78%, white); }
.cap-stack .detail-intro > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.62); }

.cap-stack-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.cap-stack-rail::before {
  content: "";
  position: absolute;
  top: 61px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cap-accent), #33f2d5, transparent);
}

.cap-stack-item {
  position: relative;
  z-index: 1;
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.cap-stack-item:last-child { border-right: 0; }
.cap-stack-item > span { display: grid; place-items: center; width: 62px; height: 62px; border: 1px solid color-mix(in srgb, var(--cap-accent) 52%, transparent); border-radius: 50%; color: color-mix(in srgb, var(--cap-accent) 76%, white); background: #101820; }
.cap-stack-item svg { width: 25px; height: 25px; stroke-width: 1.45; }
.cap-stack-item small { display: block; margin-top: 48px; color: color-mix(in srgb, var(--cap-accent) 75%, white); font-size: 8px; font-weight: 800; }
.cap-stack-item h3 { margin: 10px 0 12px; font-size: 19px; font-weight: 540; }
.cap-stack-item p { margin: 0; color: rgba(255, 255, 255, 0.56); font-size: 13px; line-height: 1.65; }

.cap-process { background: linear-gradient(145deg, #eaf1f4, #ffffff 58%); }
.cap-process-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.cap-process-step {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.cap-process-step > span { display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid color-mix(in srgb, var(--cap-accent) 42%, transparent); border-radius: 50%; color: var(--cap-accent); }
.cap-process-step svg { width: 22px; height: 22px; stroke-width: 1.5; }
.cap-process-step > b { display: block; margin-top: 42px; color: var(--cap-accent); font-size: 9px; }
.cap-process-step h3 { margin: 10px 0 13px; font-size: 21px; font-weight: 540; }
.cap-process-step p { margin: 0; color: var(--muted); line-height: 1.68; }

.cap-results { background: #ffffff; }
.cap-result-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.cap-result {
  min-height: 330px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8fafb;
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.cap-result:hover { z-index: 1; background: #ffffff; box-shadow: 0 24px 60px rgba(17, 21, 26, 0.1); transform: translateY(-5px); }
.cap-result > span { color: var(--cap-accent); font-size: 11px; font-weight: 820; }
.cap-result h3 { margin: 76px 0 14px; font-size: 24px; font-weight: 520; }
.cap-result p { margin: 0; color: var(--muted); line-height: 1.7; }
.cap-result::after { content: ""; display: block; width: 72px; height: 3px; margin-top: 32px; background: linear-gradient(90deg, var(--cap-accent), var(--violet)); }

.cap-contact .eyebrow { color: var(--cap-accent); }
.cap-contact .button { background: var(--cap-contrast); }

@keyframes capFloat {
  0%, 100% { transform: rotateY(var(--cap-rotate-y)) rotateZ(var(--cap-rotate-z)) translateY(0); }
  50% { transform: rotateY(var(--cap-rotate-y)) rotateZ(var(--cap-rotate-z)) translateY(-8px); }
}

@keyframes capPhone {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

@keyframes capNode {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -6px; }
}

@keyframes capData {
  from { transform: scaleX(0.55); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}

@keyframes moduleSignal {
  from { transform: translateX(-10%); }
  to { transform: translateX(420%); }
}

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .service-card,
    .case-card {
      animation: cardLift both ease-out;
      animation-timeline: view();
      animation-range: entry 0% cover 34%;
    }
  }
}

@keyframes cardLift {
  from {
    transform: translateY(26px);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 1240px) {
  .header-phone {
    padding-right: 9px;
  }

  .header-phone-copy small {
    display: none;
  }
}

@media (max-width: 980px) {
  :root {
    --header: 72px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 126px;
  }

  .menu-toggle {
    display: inline-block;
    order: 3;
  }

  .header-phone {
    width: 44px;
    height: 44px;
    min-height: 44px;
    justify-content: center;
    padding: 0;
  }

  .header-phone-copy {
    display: none;
  }

  .language-options {
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: calc(var(--header) + 28px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(17, 21, 26, 0.12);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(24px) saturate(1.25);
    box-shadow: 0 24px 70px rgba(17, 21, 26, 0.16);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav a {
    padding: 13px 14px;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #303a45;
    background: rgba(237, 242, 246, 0.58);
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    color: var(--ink);
    border-color: rgba(0, 200, 178, 0.32);
    background: rgba(0, 200, 178, 0.09);
    transform: translateX(3px);
  }

  body.menu-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding-top: 154px;
  }

  .hero-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .mission-control {
    min-height: 470px;
  }

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

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

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

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

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

  .timeline::before {
    display: none;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-bottom p {
    text-align: left;
  }

  .footer-badges {
    justify-content: flex-start;
  }

  .inner-hero-grid,
  .catalog-hero {
    grid-template-columns: 1fr;
  }

  .inner-title {
    font-size: 58px;
  }

  .product-showcase,
  .ai-showcase,
  .crm-showcase,
  .services-mosaic {
    width: min(760px, 100%);
    height: 500px;
  }

  .ai-hero .inner-title { font-size: 54px; }
  .crm-hero .inner-title { font-size: 52px; }

  .crm-architecture-map { grid-template-columns: minmax(0, 1fr) 190px minmax(0, 1fr); gap: 28px; }
  .crm-engine { width: 180px; height: 180px; }
  .crm-architecture-notes, .crm-data-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .crm-architecture-notes article:nth-child(2) { border-right: 0; }
  .crm-architecture-notes article:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .marketplace-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .crm-proof-grid { grid-template-columns: 1fr; }

  .guardrail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guardrail-item { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
  .guardrail-item:nth-child(2) { border-right: 0; }
  .guardrail-item:nth-last-child(-n + 2) { border-bottom: 0; }

  .detail-intro,
  .inner-contact {
    grid-template-columns: 1fr;
  }

  .detail-intro .eyebrow,
  .inner-contact .eyebrow {
    grid-column: auto;
  }

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

  .stack-board {
    grid-template-columns: 1fr;
  }

  .workflow-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workflow-rail::before,
  .workflow-rail::after {
    display: none;
  }

  .workflow-step {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .workflow-step:nth-child(3) {
    border-right: 0;
  }

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

  .process-track li:nth-child(2) {
    border-right: 0;
  }

  .support-control,
  .landing-lab {
    width: min(760px, 100%);
    height: 520px;
  }

  .support-hero .inner-title,
  .landing-hero .inner-title { font-size: 52px; }

  .support-scope-grid,
  .support-mode-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sla-assurances { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sla-assurances span:nth-child(2) { border-right: 0; }
  .sla-assurances span:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
  .support-takeover { grid-template-columns: 1fr; }
  .landing-type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .conversion-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .conversion-rail::before,
  .conversion-rail::after { display: none; }
  .conversion-rail li { padding: 22px; border-bottom: 1px solid rgba(255, 255, 255, 0.11); }
  .conversion-rail li:not(:first-child) { padding-left: 22px; }
  .conversion-rail li:nth-child(3) { border-right: 0; }
  .launch-console { grid-template-columns: 1fr; }
  .launch-score { min-height: 320px; }

  .module-lab {
    width: min(760px, 100%);
    height: 520px;
  }

  .modules-hero .inner-title { font-size: 52px; }
  .module-example-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compatibility-notes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compatibility-notes article:nth-child(2) { border-right: 0; }
  .compatibility-notes article:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
  .module-request-layout { grid-template-columns: 1fr; }
  .summary-sticky { position: relative; top: auto; }

  .capability-hero .inner-title { font-size: 52px; }
  .capability-visual { width: min(760px, 100%); height: 510px; }
  .cap-stack-rail,
  .cap-process-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cap-stack-rail::before { display: none; }
  .cap-stack-item:nth-child(2) { border-right: 0; }
  .cap-stack-item:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }

  .inner-contact .button {
    margin-top: 8px;
  }
}

@media (max-width: 680px) {
  .section-band {
    padding-top: 56px;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 64px;
  }

  .site-header {
    left: 10px;
    right: 10px;
    width: auto;
    top: 10px;
    gap: 8px;
    padding: 10px;
    transform: none;
  }

  .site-header.is-compact {
    transform: translateY(-4px);
  }

  .main-nav {
    top: 92px;
    left: 10px;
    right: 10px;
  }

  .inner-hero,
  .catalog-hero {
    min-height: auto;
    padding-top: 132px;
  }

  .inner-breadcrumb {
    margin-bottom: 32px;
  }

  .inner-title {
    font-size: 40px;
    line-height: 1.06;
  }

  .inner-lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .product-showcase {
    height: 330px;
  }

  .ai-service-card {
    min-height: 370px;
    padding-right: 28px;
  }

  .ai-service-card h3 {
    max-width: 76%;
    font-size: 25px;
  }

  .ai-service-card p { max-width: 82%; }

  .ai-card-mark {
    top: 34px;
    right: 22px;
    font-size: 70px;
    transform: none;
  }

  .ai-service-card:hover .ai-card-mark { transform: scale(1.04); }

  .crm-service-card {
    min-height: 370px;
    padding-right: 28px;
  }

  .crm-service-card h3 { max-width: 76%; font-size: 25px; }
  .crm-service-card p { max-width: 82%; }
  .crm-card-mark { top: 34px; right: 29px; width: 64px; height: 64px; transform: none; }
  .crm-card-mark::before { inset: -8px; }
  .crm-card-mark::after { inset: 14px; }
  .crm-card-mark svg { width: 26px; height: 26px; }
  .crm-service-card:hover .crm-card-mark { transform: rotate(10deg) scale(1.04); }

  .support-service-card { min-height: 370px; padding-right: 28px; }
  .support-service-card h3 { max-width: 76%; font-size: 25px; }
  .support-service-card p { max-width: 82%; }
  .support-card-mark { top: 34px; right: 29px; width: 64px; height: 64px; transform: none; }
  .support-card-mark::before { inset: -8px; }
  .support-card-mark svg { width: 28px; height: 28px; }
  .support-service-card:hover .support-card-mark { transform: rotate(-9deg) scale(1.04); }

  .ai-hero .inner-title { font-size: 38px; }
  .crm-hero .inner-title { font-size: 38px; }

  .ai-showcase { height: 390px; }

  .crm-showcase { height: 390px; }
  .crm-window { inset: 5% 0 7%; grid-template-rows: 40px minmax(0, 1fr); transform: rotateZ(0.7deg); }
  .crm-window-head { grid-template-columns: auto 1fr auto; gap: 8px; padding: 0 10px; font-size: 7px; }
  .crm-window-head b { justify-self: center; }
  .crm-ui { grid-template-columns: 42px minmax(0, 1fr); }
  .crm-ui-nav { gap: 7px; padding: 12px 5px; }
  .crm-ui-nav span { width: 30px; height: 30px; }
  .crm-ui-nav svg { width: 15px; height: 15px; }
  .crm-ui-main { padding: 14px 10px; }
  .crm-ui-title strong { font-size: 13px; }
  .crm-sync-map { grid-template-columns: minmax(48px, 1fr) 92px minmax(48px, 1fr); gap: 8px; }
  .crm-sync-side { gap: 6px; }
  .crm-sync-side span { padding: 7px 6px; }
  .crm-sync-side b { font-size: 8px; }
  .crm-sync-side small { display: none; }
  .crm-sync-core { width: 90px; height: 90px; box-shadow: 0 0 0 7px rgba(225, 168, 0, 0.08); }
  .crm-sync-core > svg { width: 24px; height: 24px; margin-bottom: 4px; }
  .crm-sync-core b { font-size: 7px; }
  .crm-sync-core small { display: none; }
  .crm-sync-orbit { inset: -6px; }
  .crm-ui-events span { grid-template-columns: 1fr; justify-items: center; padding: 8px 4px; }
  .crm-ui-events b { display: none; }
  .crm-ui-events small { font-size: 6px; }
  .crm-showcase-status { right: 4px; bottom: 0; }

  .ai-console {
    inset: 5% 0 7% 0;
    grid-template-rows: 40px minmax(0, 1fr) 44px;
    transform: rotateZ(0.7deg);
  }

  .ai-console-head {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding: 0 10px;
    font-size: 7px;
  }

  .ai-console-head b { justify-self: center; }

  .ai-flow-map {
    grid-template-columns: minmax(65px, 1fr) 102px minmax(65px, 1fr);
    gap: 9px;
    padding: 18px 10px;
  }

  .ai-node-column { gap: 9px; }

  .ai-node {
    justify-content: center;
    min-height: 42px;
    padding: 7px;
  }

  .ai-node svg { width: 16px; height: 16px; }
  .ai-node b { display: none; }

  .ai-core {
    width: 102px;
    height: 102px;
    box-shadow: 0 0 0 8px rgba(0, 200, 178, 0.07), 0 18px 34px rgba(17, 21, 26, 0.2);
  }

  .ai-core-orbit { inset: -8px; }
  .ai-core-icon { width: 34px; height: 34px; margin-bottom: 4px; }
  .ai-core-icon svg { width: 29px; height: 29px; }
  .ai-core > b { font-size: 9px; }
  .ai-core > small { font-size: 6px; }
  .ai-live-log { gap: 8px; padding: 0 10px; font-size: 8px; }
  .ai-showcase-status { right: 4px; bottom: 0; }

  .showcase-browser {
    top: 8%;
    width: 91%;
    height: 72%;
    border-width: 5px;
    border-bottom-width: 11px;
  }

  .showcase-phone {
    width: 27%;
    height: 50%;
    border-width: 4px;
    border-radius: 16px;
  }

  .showcase-status {
    right: 2%;
    font-size: 8px;
  }

  .detail-metrics {
    margin-top: 22px;
  }

  .detail-metrics span {
    padding: 14px 10px;
  }

  .detail-metrics strong {
    font-size: 17px;
  }

  .detail-metrics small {
    font-size: 9px;
  }

  .detail-intro {
    gap: 20px;
    margin-bottom: 32px;
  }

  .detail-intro .eyebrow {
    margin-bottom: 0;
  }

  .detail-intro h2,
  .inner-contact h2 {
    font-size: 38px;
  }

  .detail-intro > p:not(.eyebrow),
  .inner-contact > p:not(.eyebrow) {
    font-size: 15px;
  }

  .feature-grid,
  .process-track {
    grid-template-columns: 1fr;
  }

  .ai-usecase-grid,
  .guardrail-grid { grid-template-columns: 1fr; }

  .crm-architecture-map { grid-template-columns: 1fr; gap: 28px; min-height: 0; padding: 32px 0; }
  .crm-architecture-map::before { top: 12%; bottom: 12%; left: 50%; right: auto; width: 1px; height: auto; }
  .crm-data-source { width: 100%; }
  .crm-data-source.output span { text-align: left; grid-template-columns: 42px minmax(0, 1fr); }
  .crm-data-source.output svg { grid-column: 1; }
  .crm-data-source.output b, .crm-data-source.output small { grid-column: 2; }
  .crm-engine { width: 158px; height: 158px; }
  .crm-engine > svg { width: 36px; height: 36px; margin-bottom: 9px; }
  .crm-architecture-notes, .crm-data-grid { grid-template-columns: 1fr; }
  .crm-cycle-grid { grid-template-columns: 1fr; }
  .crm-cycle-flow { padding: 24px; }
  .crm-cycle-flow header h3 { font-size: 18px; }
  .crm-architecture-notes article, .crm-architecture-notes article:nth-child(2), .crm-architecture-notes article:nth-child(-n + 2) { min-height: 0; padding: 24px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .crm-architecture-notes article:last-child { border-bottom: 0; }
  .crm-architecture-notes h3 { margin-top: 25px; }
  .crm-data-item { min-height: 0; padding: 24px; }
  .crm-data-item h3 { margin-top: 42px; }
  .marketplace-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .marketplace-card { min-height: 170px; padding: 14px; }
  .marketplace-logo { min-height: 80px; padding: 10px; }
  .crm-proof { grid-template-columns: 1fr; min-height: 0; padding: 26px; }
  .crm-proof h3 { font-size: 25px; }

  .ai-usecase,
  .ai-usecase:nth-child(even) {
    grid-template-columns: 50px minmax(0, 1fr) auto;
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
  }

  .ai-usecase:hover,
  .ai-usecase:nth-child(even):hover { padding: 22px 8px; }
  .ai-usecase > span { width: 48px; height: 48px; }

  .guardrail-item,
  .guardrail-item:nth-child(2),
  .guardrail-item:nth-last-child(-n + 2) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .guardrail-item:last-child { border-bottom: 0; }
  .guardrail-item h3 { margin-top: 28px; }

  .stack-lane {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
    padding: 22px;
  }

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

  .workflow-rail {
    grid-template-columns: 1fr;
  }

  .workflow-step,
  .workflow-step:first-child,
  .workflow-step:last-child {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .workflow-step:last-child {
    border-bottom: 0;
  }

  .workflow-icon {
    width: 58px;
    height: 58px;
    box-shadow: none;
  }

  .workflow-step > div {
    margin-top: 0;
  }

  .feature-item {
    min-height: 220px;
    padding: 22px;
  }

  .feature-item h3 {
    margin-top: 38px;
  }

  .process-track li,
  .process-track li:nth-child(2) {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .process-track li:last-child {
    border-bottom: 0;
  }

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

  .support-hero .inner-title,
  .landing-hero .inner-title { font-size: 38px; }
  .service-price-note {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 5px 13px;
    min-height: 0;
    margin-top: 22px;
    padding: 15px 16px 15px 14px;
  }
  .service-price-icon { grid-row: 1 / 3; }
  .service-price-main strong { font-size: 23px; white-space: normal; }
  .service-price-note.is-stacked {
    grid-template-columns: 42px minmax(0, 1fr);
    width: 100%;
  }
  .service-price-main.is-stacked strong { font-size: 12px; line-height: 1.4; }
  .service-price-divider { display: none; }
  .service-price-note p { grid-column: 2; max-width: none; font-size: 11px; }

  .modules-hero .inner-title { font-size: 38px; }
  .module-lab { height: 400px; }
  .module-lab::before { inset: 7% 0 2% 5%; }
  .module-lab-window {
    inset: 4% 0 7%;
    grid-template-rows: 40px auto minmax(0, 1fr) auto;
    border-width: 5px;
    transform: rotateZ(-0.7deg);
  }
  .module-lab-head {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding: 0 10px;
    font-size: 7px;
  }
  .module-lab-head b { justify-self: center; }
  .module-platforms { padding: 9px 7px; }
  .module-platforms > span {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 1px 6px;
    min-height: 48px;
    padding: 5px 7px;
  }
  .module-platforms b { width: 30px; height: 30px; border-radius: 5px; font-size: 8px; }
  .module-platforms small { font-size: 5px; }
  .module-platforms > span > i { display: none; }
  .module-build-flow {
    grid-template-columns: 48px minmax(12px, 1fr) 92px minmax(12px, 1fr) 48px;
    gap: 5px;
    padding: 13px 9px;
  }
  .module-build-flow > span { gap: 5px; }
  .module-build-flow > span svg { width: 20px; height: 20px; }
  .module-build-flow > span b { font-size: 5px; }
  .module-build-core { width: 90px; height: 90px; }
  .module-build-core > i { width: 28px; height: 28px; margin-bottom: 3px; }
  .module-build-core svg { width: 26px; height: 26px; }
  .module-build-core small { display: none; }
  .module-output > span {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 54px;
    padding: 8px 4px;
  }
  .module-output svg { grid-row: auto; width: 17px; height: 17px; }
  .module-output b { font-size: 6px; }
  .module-output small { display: none; }
  .module-estimate-chip { right: 0; bottom: 0; min-width: 145px; padding: 9px 10px; }
  .module-promise-grid,
  .module-example-grid,
  .compatibility-notes,
  .delivery-grid { grid-template-columns: 1fr; }
  .module-promise-card,
  .module-example,
  .delivery-card { min-height: 0; padding: 24px; }
  .module-promise-card h3,
  .module-example h3,
  .delivery-card h3 { margin-top: 36px; }
  .compatibility-map { min-height: 470px; margin-bottom: 0; }
  .compatibility-map::before { top: 9%; bottom: 9%; left: 50%; right: auto; width: 1px; height: auto; }
  .compatibility-core { width: 126px; height: 126px; }
  .compatibility-core > i { width: 38px; height: 38px; margin-bottom: 6px; }
  .compatibility-core svg { width: 32px; height: 32px; }
  .compatibility-orbit {
    position: absolute;
    inset: 0;
    display: contents;
    border: 0;
    transform: none;
  }
  .compatibility-orbit span {
    min-width: 92px;
    min-height: 34px;
    padding: 6px 8px;
    font-size: 6px;
  }
  .orbit-one span:nth-child(1) { top: 5%; left: 2%; }
  .orbit-one span:nth-child(2) { top: 5%; right: 2%; }
  .orbit-one span:nth-child(3) { right: 2%; bottom: 5%; left: auto; }
  .orbit-two span:nth-child(1) { top: 28%; left: 0; }
  .orbit-two span:nth-child(2) { top: 28%; right: 0; }
  .orbit-two span:nth-child(3) { right: 0; bottom: 27%; }
  .orbit-two span:nth-child(4) { bottom: 5%; left: 2%; }
  .compatibility-notes article,
  .compatibility-notes article:nth-child(2),
  .compatibility-notes article:nth-child(-n + 2) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }
  .compatibility-notes article:last-child { border-bottom: 0; }
  .compatibility-notes h3 { margin-top: 28px; }
  .delivery-card ul { align-self: auto; }
  .module-request-head { margin-bottom: 34px; }
  .module-request-section { scroll-margin-top: 86px; }
  .module-request-head h2 { font-size: 38px; }
  .module-request-head > p:not(.eyebrow) { font-size: 15px; }
  .module-request-form fieldset { padding: 24px 20px; }
  .module-request-form legend { margin-bottom: 22px; }
  .form-grid,
  .check-grid { grid-template-columns: 1fr; }
  .cms-picker { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cms-picker label > span { min-height: 86px; padding: 14px; }
  .form-consent { margin: 22px 20px 0; }
  .module-form-actions { flex-direction: column; padding: 22px 20px 10px; }
  .module-form-actions .button { width: 100%; }
  .module-form-status { padding: 0 20px 22px; }
  .summary-values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .module-service-card {
    min-height: 370px;
    padding-right: 28px;
  }
  .module-service-card h3 { max-width: 76%; font-size: 25px; }
  .module-service-card p { max-width: 82%; }
  .module-card-mark {
    top: 34px;
    right: 29px;
    width: 64px;
    height: 64px;
    transform: none;
  }
  .module-card-mark::before { inset: -8px; }
  .module-card-mark svg { width: 28px; height: 28px; }
  .module-service-card:hover .module-card-mark { transform: rotate(10deg) scale(1.04); }

  .capability-hero .inner-title { font-size: 38px; }
  .capability-visual { height: 390px; }
  .capability-visual::before { inset: 6% 0 2% 5%; }
  .cap-browser {
    --cap-rotate-y: 0deg;
    --cap-rotate-z: -0.6deg;
    inset: 5% 0 8%;
    grid-template-rows: 36px minmax(0, 1fr) 52px;
    border-width: 5px;
  }
  .cap-browser-head { padding: 0 9px; font-size: 6px; }
  .cap-browser-data span { padding: 7px 6px; }
  .cap-browser-data small { font-size: 5px; }
  .cap-browser-data b { font-size: 6px; }
  .cap-phone { right: 0; bottom: 2%; width: 27%; height: 48%; border-width: 4px; border-radius: 15px; }
  .cap-design .cap-phone,
  .cap-advertising .cap-phone { right: auto; left: 0; }
  .cap-node { grid-template-columns: 24px minmax(0, 1fr); min-width: 112px; padding: 7px 8px; }
  .cap-node > i { width: 23px; height: 23px; }
  .cap-node svg { width: 13px; height: 13px; }
  .cap-node small { display: none; }
  .cap-node b { font-size: 6px; }
  .cap-node.one { top: 0; right: 1%; }
  .cap-node.two { bottom: 0; left: 1%; }
  .cap-scope-grid,
  .cap-stack-rail,
  .cap-process-rail,
  .cap-result-grid { grid-template-columns: 1fr; }
  .cap-scope-card,
  .cap-process-step,
  .cap-result { min-height: 0; padding: 24px; }
  .cap-scope-card h3 { margin-top: 36px; }
  .cap-stack-item,
  .cap-stack-item:nth-child(2),
  .cap-stack-item:nth-child(-n + 2) {
    min-height: 0;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .cap-stack-item:last-child { border-bottom: 0; }
  .cap-stack-item small { margin-top: 30px; }
  .cap-process-step > b { margin-top: 30px; }
  .cap-result h3 { margin-top: 46px; }

  .support-control,
  .landing-lab { height: 400px; }

  .support-console { inset: 4% 0 7%; grid-template-rows: 40px auto auto 1fr; border-width: 5px; transform: rotateZ(-0.6deg); }
  .support-console-head,
  .landing-browser-head { grid-template-columns: auto 1fr auto; gap: 8px; padding: 0 10px; font-size: 7px; }
  .support-console-head b,
  .landing-browser-head b { justify-self: center; }
  .support-health { grid-template-columns: 1fr; gap: 10px; padding: 12px; }
  .health-score { justify-content: center; }
  .health-ring { width: 52px; height: 52px; flex-basis: 52px; }
  .health-ring svg { width: 22px; height: 22px; }
  .health-metrics span { min-height: 38px; padding: 5px 8px; }
  .health-metrics b { font-size: 7px; }
  .support-systems { padding: 8px 10px; }
  .support-systems span { padding: 7px 3px; }
  .support-systems svg { width: 17px; height: 17px; }
  .support-systems b { font-size: 6px; }
  .support-ticket-stream { padding: 5px 12px 10px; }
  .support-ticket-stream span { min-height: 30px; }
  .support-ticket-stream small { font-size: 6px; }
  .support-ticket-stream em { display: none; }
  .support-live { right: 3px; bottom: 0; }

  .support-scope-grid,
  .support-mode-grid,
  .landing-type-grid { grid-template-columns: 1fr; }
  .support-scope { min-height: 250px; padding: 24px; }
  .support-scope h3 { margin-top: 38px; }
  .support-mode { min-height: 310px; padding: 24px; }
  .support-mode h3 { margin-top: 38px; }

  .sla-row { grid-template-columns: 58px minmax(0, 1fr); gap: 14px; padding: 24px 0; }
  .sla-row > span { width: 50px; height: 50px; }
  .sla-row > b { grid-column: 2; justify-self: start; text-align: left; }
  .sla-row h3 { font-size: 17px; }
  .sla-assurances { grid-template-columns: 1fr; }
  .sla-assurances span,
  .sla-assurances span:nth-child(2),
  .sla-assurances span:nth-child(-n + 2) { min-height: 64px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
  .sla-assurances span:last-child { border-bottom: 0; }
  .support-takeover { grid-template-columns: 1fr; gap: 38px; }
  .support-takeover-copy h2 { font-size: 38px; }
  .support-takeover-copy > p:not(.eyebrow) { font-size: 15px; }

  .landing-browser { inset: 4% 0 7%; grid-template-rows: 40px minmax(0, 1fr); border-width: 5px; transform: rotateZ(0.6deg); }
  .landing-builder { grid-template-columns: 42px minmax(0, 1fr); }
  .landing-tools { gap: 6px; padding: 10px 5px; }
  .landing-tools span { width: 30px; height: 30px; }
  .landing-analytics { display: none; }
  .landing-canvas { padding: 12px; }
  .landing-mini-hero { min-height: 190px; padding: 20px; }
  .landing-mini-hero strong { font-size: 21px; }
  .landing-mini-content span { height: 42px; }
  .landing-lead { right: 3px; bottom: 0; }

  .conversion-rail { grid-template-columns: 1fr; }
  .conversion-rail li,
  .conversion-rail li:not(:first-child) { display: grid; grid-template-columns: 62px minmax(0, 1fr); column-gap: 18px; min-height: 0; padding: 22px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.11); }
  .conversion-rail li:last-child { border-bottom: 0; }
  .conversion-rail li > span { grid-row: 1 / 4; width: 58px; height: 58px; box-shadow: none; }
  .conversion-rail li > b { margin-top: 0; }
  .conversion-rail h3 { margin: 6px 0; }
  .landing-type { min-height: 250px; padding: 24px; }
  .launch-score { min-height: 290px; }
  .launch-checks { grid-template-columns: 1fr; padding: 18px; }
  .launch-checks span,
  .launch-checks span:nth-child(even),
  .launch-checks span:nth-last-child(-n + 2) { min-height: 72px; padding: 10px 4px; border-right: 0; border-bottom: 1px solid var(--line); }
  .launch-checks span:last-child { border-bottom: 0; }

  .inner-contact .button,
  .catalog-hero-copy .button {
    width: 100%;
  }

  .catalog-hero {
    gap: 32px;
  }

  .services-mosaic {
    height: 340px;
  }

  .catalog-row {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 28px 0;
  }

  .catalog-row:hover {
    padding-right: 10px;
    padding-left: 10px;
  }

  .catalog-row h2 {
    font-size: 28px;
  }

  .catalog-price {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 12px;
    min-width: 0;
    min-height: 0;
    margin-top: 4px;
    padding: 14px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .catalog-price::before {
    top: 12px;
    left: 0;
    width: 34px;
    height: 2px;
  }

  .catalog-price small { width: 100%; }
  .catalog-price strong { font-size: 17px; }
  .catalog-price.is-stacked {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }
  .catalog-price.is-stacked strong { font-size: 12px; }

  .catalog-row > a {
    grid-column: 2;
    width: max-content;
    margin-top: 4px;
  }

  .system-track {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .system-track i {
    width: 48px;
  }

  .site-footer {
    padding: 56px 18px 28px;
  }

  .site-footer::after {
    display: none;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-logo img {
    width: 144px;
  }

  .footer-tagline {
    margin-top: 18px;
  }

  .footer-address {
    margin-top: 24px;
  }

  .footer-column {
    gap: 10px;
  }

  .footer-column h3 {
    margin-bottom: 10px;
  }

  .footer-column a {
    width: auto;
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-bottom {
    gap: 16px;
    margin-top: 42px;
    padding: 18px;
  }

  .footer-socials,
  .footer-badges {
    flex-wrap: wrap;
  }

  .brand img {
    width: 108px;
  }

  .language-switch {
    justify-self: end;
  }

  .language-current {
    display: inline-flex;
  }

  .language-options {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    z-index: 4;
    width: 76px;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 6px;
    border-color: rgba(17, 21, 26, 0.13);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 48px rgba(17, 21, 26, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .language-switch.is-open .language-options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .language-switch.is-open .language-current {
    border-color: rgba(0, 169, 149, 0.5);
    box-shadow: 0 10px 28px rgba(0, 169, 149, 0.12);
  }

  .language-switch.is-open .language-current svg {
    transform: rotate(180deg);
  }

  .lang-button {
    width: 100%;
    min-width: 0;
    min-height: 36px;
    font-size: 11px;
  }

  .hero-title {
    font-size: clamp(34px, 9vw, 38px);
    line-height: 1.06;
  }

  .hero {
    padding-top: 142px;
    padding-bottom: 28px;
  }

  .hero-text {
    font-size: 17px;
  }

  .command-ribbon {
    display: none;
  }

  .hero-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
  }

  .capability-card {
    min-height: 78px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;
    padding: 10px;
  }

  .capability-icon {
    width: 34px;
    height: 34px;
  }

  .capability-card strong {
    font-size: 11px;
  }

  .hero-actions,
  .console-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .signal-row,
  .service-grid,
  .case-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .stats {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .services {
    padding-bottom: 42px;
  }

  .method {
    padding-top: 42px;
  }

  .stats-panel {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .stat-item {
    gap: 8px;
  }

  .stat-item span {
    max-width: none;
  }

  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .client-logo-card {
    min-height: 96px;
    aspect-ratio: 1.55 / 1;
    padding: 14px 10px;
  }

  .client-logo-card img {
    max-width: 86%;
    max-height: 56px;
  }

  .client-logo-card.logo-icon img {
    max-width: 70px;
    max-height: 70px;
  }

  .client-logo-card.logo-extra-wide {
    grid-column: auto;
  }

  .client-logo-card.logo-extra-wide img {
    max-width: 94%;
  }

  .portfolio-head {
    display: grid;
  }

  .project-shot {
    height: 300px;
  }

  .laptop {
    left: 10%;
    right: 3%;
    top: 20%;
    height: 48%;
    border-width: 7px;
    border-bottom-width: 14px;
  }

  .phone {
    width: 28%;
    height: 54%;
    left: 3%;
    bottom: 12%;
    border-width: 5px;
    border-radius: 18px;
  }

  .portfolio-card:nth-child(3n + 2) .phone {
    right: 3%;
  }

  .laptop::after {
    bottom: -30px;
    height: 18px;
  }

  .signal-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .signal-row span {
    min-width: 0;
  }

  .signal-row small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mission-control {
    display: none;
  }

  .orbital-map {
    height: 250px;
  }

  .map-ring.one {
    width: 182px;
    height: 182px;
  }

  .map-ring.two {
    width: 118px;
    height: 118px;
  }

  .map-ring.three {
    width: 226px;
    height: 72px;
  }

  .section-head h2,
  .contact-copy h2 {
    font-size: clamp(32px, 11vw, 48px);
  }
}

@media (max-width: 370px) {
  .site-header {
    gap: 6px;
    padding: 8px;
  }

  .brand img {
    width: 90px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .header-phone {
    width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .header-phone-icon {
    width: 30px;
    height: 30px;
  }

  .language-current {
    width: 58px;
    height: 40px;
  }

  .lang-button {
    min-height: 34px;
    font-size: 10px;
  }

  .main-nav {
    top: 88px;
  }

  .site-footer {
    padding-right: 14px;
    padding-left: 14px;
  }

  .footer-main {
    column-gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Studio and portfolio pages */
.studio-hero {
  min-height: 930px;
  padding-top: 136px;
  background:
    linear-gradient(90deg, rgba(17, 21, 26, 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(17, 21, 26, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(135deg, rgba(0, 200, 178, 0.055), rgba(255, 255, 255, 0.9) 42%, rgba(104, 75, 255, 0.045));
}

.studio-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(620px, 1.1fr);
  gap: clamp(44px, 5vw, 90px);
  align-items: center;
}

.studio-hero-copy .inner-title {
  max-width: 770px;
  font-size: clamp(54px, 5vw, 80px);
}

.studio-hero-copy .inner-lead { max-width: 720px; }
.portfolio-page-hero .studio-hero-copy .inner-title { font-size: clamp(50px, 4.2vw, 68px); overflow-wrap: normal; }
.about-page-hero .studio-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(560px, 1fr); }
.about-page-hero .studio-hero-copy .inner-title { font-size: clamp(50px, 4.15vw, 68px); overflow-wrap: normal; }
.about-page-hero .detail-metrics { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 100%; }

.portfolio-wall {
  position: relative;
  height: 590px;
  min-width: 0;
  perspective: 1400px;
}

.portfolio-wall::before {
  content: "";
  position: absolute;
  inset: 8% 2% 7% 7%;
  border: 1px solid rgba(0, 200, 178, 0.28);
  background:
    linear-gradient(90deg, rgba(23, 49, 111, 0.055) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(rgba(23, 49, 111, 0.05) 1px, transparent 1px) 0 0 / 34px 34px,
    rgba(255, 255, 255, 0.62);
  transform: rotate(2.6deg);
}

.portfolio-sheet {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 6px solid #ffffff;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(17, 21, 26, 0.18);
  transition: transform 420ms ease, box-shadow 420ms ease;
}

.portfolio-sheet img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.portfolio-sheet figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 9px 12px;
  color: #ffffff;
  background: #17316f;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0;
}

.portfolio-sheet.sheet-one {
  z-index: 2;
  top: 7%;
  left: 2%;
  width: 62%;
  height: 45%;
  transform: rotate(-5deg);
}

.portfolio-sheet.sheet-two {
  z-index: 3;
  top: 22%;
  right: 0;
  width: 66%;
  height: 48%;
  transform: rotate(3.5deg);
}

.portfolio-sheet.sheet-three {
  z-index: 4;
  bottom: 2%;
  left: 11%;
  width: 62%;
  height: 42%;
  transform: rotate(-1.8deg);
}

.portfolio-wall:hover .sheet-one { transform: rotate(-7deg) translate(-7px, -7px); }
.portfolio-wall:hover .sheet-two { transform: rotate(5deg) translate(8px, -6px); }
.portfolio-wall:hover .sheet-three { transform: rotate(-0.5deg) translateY(8px); }

.portfolio-wall-index {
  position: absolute;
  z-index: 5;
  right: 4%;
  bottom: 8%;
  padding: 12px 16px;
  color: #ffffff;
  background: #17222b;
  font-size: 9px;
  font-weight: 800;
}

.portfolio-archive {
  padding-top: clamp(74px, 7vw, 118px);
  padding-bottom: clamp(84px, 8vw, 130px);
}

.portfolio-archive-head {
  position: relative;
  margin-bottom: 42px;
}

.portfolio-archive-head .portfolio-head { align-items: flex-end; margin-bottom: 28px; }
.portfolio-archive-head .portfolio-head > p { max-width: 430px; margin: 0 0 8px; color: rgba(255, 255, 255, 0.65); line-height: 1.6; }

.portfolio-filters {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(5, 14, 31, 0.34);
}

.portfolio-filters button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.66);
  background: transparent;
  font: inherit;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.portfolio-filters button:hover { color: #ffffff; }
.portfolio-filters button.is-active { color: #101820; background: #22f0d4; }

.portfolio-grid-detailed { align-items: stretch; }
.portfolio-grid-detailed .portfolio-card { display: flex; flex-direction: column; }
.portfolio-grid-detailed .portfolio-card[hidden] { display: none; }

.project-live {
  position: absolute;
  z-index: 8;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 11px;
  color: #ffffff;
  background: rgba(7, 18, 34, 0.84);
  font-size: 8px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.project-live svg { width: 13px; height: 13px; }

.portfolio-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
}

.portfolio-card-head h3 { margin: 7px 0 12px; }
.portfolio-card-head small { color: #22f0d4; font-size: 8px; font-weight: 800; }
.portfolio-card-head > span { color: rgba(255, 255, 255, 0.42); font-size: 10px; }
.portfolio-grid-detailed .portfolio-card > p { min-height: 54px; font-size: 14px; line-height: 1.65; }

.portfolio-project-data {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.portfolio-project-data span { min-width: 0; padding: 15px 14px 15px 0; }
.portfolio-project-data span + span { padding-left: 14px; border-left: 1px solid rgba(255, 255, 255, 0.16); }
.portfolio-project-data small { display: block; margin-bottom: 7px; color: rgba(255, 255, 255, 0.45); font-size: 7px; text-transform: uppercase; }
.portfolio-project-data b { display: block; color: rgba(255, 255, 255, 0.82); font-size: 9px; font-weight: 650; line-height: 1.55; }

.portfolio-disclosure {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(34px, 5vw, 90px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(17, 21, 26, 0.04) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(rgba(17, 21, 26, 0.035) 1px, transparent 1px) 0 0 / 58px 58px,
    #f5f8fa;
}

.disclosure-index { color: var(--coral); font-size: 9px; font-weight: 800; }
.portfolio-disclosure .detail-intro { margin: 0; }
.disclosure-tags { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.disclosure-tags span { padding: 18px 8px; border-bottom: 1px solid var(--line); color: #52606c; font-size: 9px; font-weight: 800; }

.studio-board {
  position: relative;
  height: 590px;
  min-width: 0;
}

.studio-board::before {
  content: "";
  position: absolute;
  inset: 8% 4% 8% 8%;
  border: 1px solid rgba(17, 21, 26, 0.14);
  background:
    linear-gradient(90deg, rgba(17, 21, 26, 0.06) 1px, transparent 1px) 0 0 / 30px 30px,
    linear-gradient(rgba(17, 21, 26, 0.055) 1px, transparent 1px) 0 0 / 30px 30px,
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 36px 90px rgba(17, 21, 26, 0.11);
  transform: rotate(1.5deg);
}

.studio-board-logo {
  position: absolute;
  z-index: 5;
  top: 37%;
  left: 37%;
  display: grid;
  place-items: center;
  width: 190px;
  height: 142px;
  border: 1px solid rgba(0, 200, 178, 0.36);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 54px rgba(17, 21, 26, 0.15);
}

.studio-board-logo > b { color: #11151a; font-size: 21px; font-weight: 800; line-height: 0.92; }
.studio-board-logo > b small { display: block; margin-top: 6px; color: #58636c; font-size: 14px; font-weight: 300; letter-spacing: 0; }
.studio-board-logo span { color: var(--cyan); font-size: 7px; font-weight: 850; }

.studio-board-project {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  margin: 0;
  border: 5px solid #ffffff;
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(17, 21, 26, 0.16);
}

.studio-board-project img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.studio-board-project figcaption { position: absolute; right: 0; bottom: 0; padding: 7px 9px; color: #ffffff; background: #17222b; font-size: 6px; font-weight: 800; }
.studio-board-project.project-a { top: 7%; left: 3%; width: 44%; height: 31%; transform: rotate(-4deg); }
.studio-board-project.project-b { top: 5%; right: 2%; width: 42%; height: 31%; transform: rotate(4deg); }
.studio-board-project.project-c { right: 5%; bottom: 3%; width: 49%; height: 34%; transform: rotate(-2.4deg); }
.studio-board-line { position: absolute; z-index: 2; height: 1px; background: rgba(0, 200, 178, 0.5); transform-origin: left; }
.studio-board-line::after { content: ""; position: absolute; top: -3px; right: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
.studio-board-line.line-a { top: 35%; left: 30%; width: 25%; transform: rotate(28deg); }
.studio-board-line.line-b { top: 32%; right: 21%; width: 25%; transform: rotate(148deg); }
.studio-board-line.line-c { right: 31%; bottom: 31%; width: 27%; transform: rotate(112deg); }

.about-position {
  display: grid;
  grid-template-columns: 150px minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(34px, 5vw, 90px);
  align-items: start;
  background: #ffffff;
}

.about-position-index { color: var(--cyan); font-size: 9px; font-weight: 850; }
.about-position-copy h2 { max-width: 900px; margin: 16px 0 0; font-size: clamp(40px, 4.8vw, 70px); font-weight: 300; line-height: 1.04; }
.about-position-text { padding-top: 32px; border-top: 1px solid var(--line); }
.about-position-text p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.about-position-text p + p { margin-top: 24px; }

.about-team { background: linear-gradient(180deg, #f3f7f9, #ffffff); }
.team-capability-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.team-capability { min-height: 260px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.7); transition: background 180ms ease, transform 180ms ease; }
.team-capability:hover { z-index: 2; background: #ffffff; transform: translateY(-4px); }
.team-capability > span { display: flex; align-items: center; justify-content: space-between; color: var(--cyan); }
.team-capability svg { width: 26px; height: 26px; stroke-width: 1.4; }
.team-capability > span b { color: #99a4ad; font-size: 9px; }
.team-capability h3 { margin: 58px 0 14px; font-size: 20px; font-weight: 520; }
.team-capability p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.about-principles { background: #ffffff; }
.principle-rail { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle-item { min-height: 280px; padding: 28px 28px 30px 0; }
.principle-item + .principle-item { padding-left: 28px; border-left: 1px solid var(--line); }
.principle-item > b { color: var(--coral); font-size: 11px; }
.principle-item h3 { margin: 84px 0 14px; font-size: 20px; font-weight: 520; }
.principle-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.about-guarantees {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
    #17222b;
}

.about-guarantees .eyebrow { color: #33f2d5; }
.about-guarantees .detail-intro > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.62); }
.guarantee-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid rgba(255, 255, 255, 0.15); }
.guarantee-item { min-height: 270px; padding: 30px 28px 30px 0; }
.guarantee-item + .guarantee-item { padding-left: 28px; border-left: 1px solid rgba(255, 255, 255, 0.15); }
.guarantee-item svg { width: 26px; height: 26px; color: #33f2d5; stroke-width: 1.4; }
.guarantee-item h3 { margin: 66px 0 14px; font-size: 19px; font-weight: 540; }
.guarantee-item p { margin: 0; color: rgba(255, 255, 255, 0.62); font-size: 13px; line-height: 1.7; }

.footer-proof { display: flex; align-items: center; gap: 18px; color: rgba(255, 255, 255, 0.76); font-size: 9px; font-weight: 800; }
.footer-proof span + span { padding-left: 18px; border-left: 1px solid rgba(255, 255, 255, 0.22); }

/* One visual rhythm for all service cards */
.service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-grid .service-card {
  min-height: 290px;
  padding: 28px 150px 76px 28px;
}

.service-grid .ai-service-card,
.service-grid .crm-service-card,
.service-grid .support-service-card,
.service-grid .module-service-card {
  grid-column: auto;
  min-height: 290px;
  padding: 28px 150px 76px 28px;
}

.service-grid .ai-service-card h3,
.service-grid .crm-service-card h3,
.service-grid .support-service-card h3,
.service-grid .module-service-card h3 {
  max-width: none;
  font-size: 22px;
}

.service-grid .ai-service-card p,
.service-grid .crm-service-card p,
.service-grid .support-service-card p,
.service-grid .module-service-card p { max-width: none; }

.service-grid .ai-card-mark { top: 30px; right: 28px; font-size: 70px; transform: none; }
.service-grid .ai-service-card:hover .ai-card-mark { transform: scale(1.04); }
.service-grid .crm-card-mark,
.service-grid .support-card-mark,
.service-grid .module-card-mark { top: 32px; right: 32px; width: 66px; height: 66px; transform: none; }
.service-grid .crm-card-mark::before,
.service-grid .support-card-mark::before,
.service-grid .module-card-mark::before { inset: -9px; }
.service-grid .crm-card-mark::after { inset: 15px; }
.service-grid .crm-card-mark svg,
.service-grid .support-card-mark svg,
.service-grid .module-card-mark svg { width: 28px; height: 28px; }
.service-grid .crm-service-card:hover .crm-card-mark { transform: rotate(10deg) scale(1.04); }
.service-grid .support-service-card:hover .support-card-mark { transform: rotate(-9deg) scale(1.04); }
.service-grid .module-service-card:hover .module-card-mark { transform: rotate(10deg) scale(1.04); }

@media (max-width: 1180px) {
  .studio-hero-grid { grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr); gap: 36px; }
  .portfolio-wall,
  .studio-board { height: 520px; }
  .portfolio-grid-detailed { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-position { grid-template-columns: 90px minmax(0, 1fr); }
  .about-position-text { grid-column: 2; }
}

@media (max-width: 980px) {
  .studio-hero { min-height: auto; }
  .studio-hero-grid { grid-template-columns: 1fr; }
  .studio-hero-copy .inner-title { font-size: 54px; }
  .about-page-hero .studio-hero-grid { grid-template-columns: 1fr; }
  .about-page-hero .detail-metrics { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .portfolio-wall,
  .studio-board { width: min(100%, 720px); margin: 0 auto; }
  .portfolio-disclosure { grid-template-columns: 90px minmax(0, 1fr); }
  .disclosure-tags { grid-column: 2; }
  .team-capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .principle-rail,
  .guarantee-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .principle-item:nth-child(3),
  .guarantee-item:nth-child(3) { border-left: 0; }
  .principle-item:nth-child(n + 3),
  .guarantee-item:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .guarantee-item:nth-child(n + 3) { border-top-color: rgba(255, 255, 255, 0.15); }
  .service-grid .service-card,
  .service-grid .ai-service-card,
  .service-grid .crm-service-card,
  .service-grid .support-service-card,
  .service-grid .module-service-card { min-height: 320px; }
}

@media (max-width: 680px) {
  .studio-hero { padding-top: 114px; }
  .studio-hero-copy .inner-title { font-size: 38px; }
  .portfolio-page-hero .studio-hero-copy .inner-title,
  .about-page-hero .studio-hero-copy .inner-title { font-size: 38px; }
  .about-page-hero .detail-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-wall,
  .studio-board { height: 390px; }
  .portfolio-sheet figcaption,
  .studio-board-project figcaption { display: none; }
  .portfolio-wall-index { right: 0; bottom: 4%; }
  .studio-board-logo { top: 38%; left: 34%; width: 132px; height: 98px; }
  .studio-board-logo > b { font-size: 16px; }
  .studio-board-logo > b small { font-size: 11px; }
  .portfolio-archive-head .portfolio-head { display: block; }
  .portfolio-archive-head .portfolio-head > p { margin-top: 18px; }
  .portfolio-filters { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
  .portfolio-filters button { padding: 0 10px; }
  .portfolio-grid-detailed { grid-template-columns: 1fr; }
  .portfolio-project-data { grid-template-columns: 1fr; }
  .portfolio-project-data span + span { padding-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.16); border-left: 0; }
  .portfolio-disclosure,
  .about-position { grid-template-columns: 1fr; }
  .portfolio-disclosure .detail-intro,
  .disclosure-tags,
  .about-position-text { grid-column: auto; }
  .about-position-copy h2 { font-size: 38px; }
  .team-capability-grid,
  .principle-rail,
  .guarantee-grid { grid-template-columns: 1fr; }
  .team-capability { min-height: 230px; }
  .principle-item,
  .principle-item + .principle-item,
  .guarantee-item,
  .guarantee-item + .guarantee-item { min-height: 0; padding: 26px 0; border-top: 1px solid var(--line); border-left: 0; }
  .guarantee-item,
  .guarantee-item + .guarantee-item { border-top-color: rgba(255, 255, 255, 0.15); }
  .principle-item h3,
  .guarantee-item h3 { margin-top: 38px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid .service-card,
  .service-grid .ai-service-card,
  .service-grid .crm-service-card,
  .service-grid .support-service-card,
  .service-grid .module-service-card {
    min-height: 330px;
    padding: 26px 26px 74px;
  }
  .service-grid .service-card h3 {
    max-width: 72%;
    font-size: 22px;
  }
  .service-grid .service-card-mark {
    top: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
  }
  .service-grid .service-card-mark svg {
    width: 26px;
    height: 26px;
  }
  .service-grid .ai-service-card h3,
  .service-grid .crm-service-card h3,
  .service-grid .support-service-card h3,
  .service-grid .module-service-card h3 { max-width: 72%; font-size: 22px; }
  .service-grid .ai-service-card p,
  .service-grid .crm-service-card p,
  .service-grid .support-service-card p,
  .service-grid .module-service-card p { max-width: 100%; }
  .footer-proof { flex-direction: column; align-items: flex-start; gap: 5px; }
  .footer-proof span + span { padding-left: 0; border-left: 0; }
}

/* Project brief */
.brief-page {
  --brief-ink: #11151a;
  --brief-line: rgba(17, 21, 26, 0.13);
}

.brief-page .site-header { z-index: 50; }

.brief-hero {
  padding-top: clamp(190px, 14vw, 245px);
  padding-bottom: clamp(70px, 7vw, 112px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 169, 149, 0.07), transparent 32%, transparent 68%, rgba(230, 51, 88, 0.06)),
    #f8fbfc;
}

.brief-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(430px, 0.85fr);
  gap: clamp(64px, 7vw, 130px);
  align-items: center;
  margin-top: clamp(46px, 5vw, 80px);
}

.brief-hero .inner-title { max-width: 1050px; }
.brief-hero .inner-lead { max-width: 850px; }
.brief-hero .hero-actions .button { gap: 10px; }
.brief-hero .hero-actions .button svg { width: 18px; height: 18px; }

.brief-route {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 425px;
  padding: 34px;
  border: 1px solid var(--brief-line);
  background:
    linear-gradient(rgba(17, 21, 26, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 21, 26, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.78);
  background-size: 48px 48px;
}

.brief-route::before {
  position: absolute;
  inset: 17px;
  border: 1px solid rgba(0, 169, 149, 0.16);
  content: "";
  pointer-events: none;
}

.brief-route article {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 42px 52px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid rgba(17, 21, 26, 0.12);
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.brief-route article:nth-child(2) { transform: translateX(34px); }
.brief-route article:hover {
  border-color: rgba(0, 169, 149, 0.65);
  transform: translateX(8px);
  box-shadow: 0 20px 45px rgba(21, 38, 47, 0.1);
}
.brief-route article:nth-child(2):hover { transform: translateX(42px); }
.brief-route article > span { font: 600 11px/1 Manrope, sans-serif; color: #68747c; }
.brief-route article > svg { width: 30px; height: 30px; color: #00a995; stroke-width: 1.35; }
.brief-route article > b { font: 440 16px/1.35 Manrope, sans-serif; }

.brief-route-signal {
  position: absolute;
  right: 32px;
  bottom: 23px;
  left: 32px;
  height: 3px;
  overflow: hidden;
  background: rgba(17, 21, 26, 0.1);
}

.brief-route-signal i {
  position: absolute;
  top: 0;
  width: 18%;
  height: 100%;
  background: linear-gradient(90deg, #00a995, #684bff, #e63358);
  animation: brief-signal 4s linear infinite;
}

.brief-route-signal i:nth-child(2) { animation-delay: -1.35s; }
.brief-route-signal i:nth-child(3) { animation-delay: -2.7s; }

@keyframes brief-signal {
  from { transform: translateX(-120%); }
  to { transform: translateX(680%); }
}

.brief-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(64px, 6vw, 96px);
  border-block: 1px solid var(--brief-line);
}

.brief-facts > span {
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  padding: 28px clamp(18px, 2vw, 34px);
  border-right: 1px solid var(--brief-line);
}

.brief-facts > span:last-child { border-right: 0; }
.brief-facts svg {
  grid-row: 1 / 3;
  align-self: center;
  width: 24px;
  height: 24px;
  color: #00a995;
  stroke-width: 1.4;
}
.brief-facts b { font: 360 24px/1.1 Geologica, sans-serif; }
.brief-facts small {
  margin-top: 6px;
  color: #68747c;
  font: 500 11px/1.35 Manrope, sans-serif;
  text-transform: uppercase;
}

.brief-workspace {
  padding-top: clamp(84px, 8vw, 130px);
  padding-bottom: clamp(90px, 8vw, 140px);
  background:
    linear-gradient(rgba(17, 21, 26, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 21, 26, 0.025) 1px, transparent 1px),
    #fff;
  background-size: 58px 58px;
}

.brief-workspace .detail-intro {
  max-width: 1020px;
  margin-bottom: 0;
  column-gap: clamp(36px, 5vw, 80px);
  row-gap: 18px;
}
.brief-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  gap: clamp(30px, 3vw, 52px);
  align-items: start;
  margin-top: clamp(42px, 4vw, 62px);
}

.brief-request-form { min-width: 0; }
.brief-request-form fieldset { scroll-margin-top: 150px; }
.brief-request-form .form-subtitle {
  margin: 22px 0 12px;
  color: #5f6b73;
  font: 650 11px/1.3 Manrope, sans-serif;
  text-transform: uppercase;
}

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

.contact-file {
  padding: 16px;
  border: 1px dashed rgba(17, 21, 26, 0.22);
  background: rgba(0, 169, 149, 0.04);
}

.contact-file input {
  width: 100%;
  padding: 10px 0 0;
  border: 0;
  background: transparent;
}

.contact-file small {
  margin-top: 8px;
  color: #68747c;
  font-size: 11px;
}

.contact-consent {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.contact-consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
}

.contact-consent span {
  color: #5f6b73;
  font: 450 11px/1.5 Manrope, sans-serif;
}

.form-note a {
  color: currentColor;
  font-weight: 700;
  text-underline-offset: 3px;
}

.brief-file-drop {
  display: grid !important;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 126px;
  padding: 24px !important;
  border: 1px dashed rgba(17, 21, 26, 0.25) !important;
  background: linear-gradient(105deg, rgba(0, 169, 149, 0.07), rgba(104, 75, 255, 0.035), rgba(230, 51, 88, 0.06));
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.brief-file-drop:hover,
.brief-file-drop.is-dragging {
  border-color: #00a995 !important;
  background: linear-gradient(105deg, rgba(0, 169, 149, 0.13), rgba(104, 75, 255, 0.07), rgba(230, 51, 88, 0.08));
  transform: translateY(-2px);
}

.brief-file-drop > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.brief-file-drop > svg { width: 34px; height: 34px; color: #00a995; stroke-width: 1.3; }
.brief-file-drop > span { display: grid; gap: 7px; }
.brief-file-drop b { font: 520 15px/1.4 Manrope, sans-serif; }
.brief-file-drop small { color: #68747c; font: 450 12px/1.45 Manrope, sans-serif; }
.brief-file-drop em {
  max-width: 190px;
  overflow: hidden;
  color: #49545b;
  font: 600 11px/1.35 Manrope, sans-serif;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brief-aside { position: relative; }
.brief-aside .summary-sticky {
  position: sticky;
  top: 132px;
  padding: 28px;
  border: 1px solid rgba(17, 21, 26, 0.16);
  background: #12181d;
  color: #fff;
}
.brief-aside-head {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.brief-aside-head > svg { width: 32px; height: 32px; color: #15d4bd; stroke-width: 1.3; }
.brief-aside-head span { display: grid; gap: 7px; }
.brief-aside-head small { color: #96aaa9; font: 650 10px/1.3 Manrope, sans-serif; text-transform: uppercase; }
.brief-aside-head h3 { margin: 0; font: 390 22px/1.25 Geologica, sans-serif; }
.brief-aside ol { display: grid; gap: 0; margin: 0; padding: 14px 0; list-style: none; }
.brief-aside li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.brief-aside li span { color: #15d4bd; font: 650 10px/1.4 Manrope, sans-serif; }
.brief-aside li b { font: 430 13px/1.5 Manrope, sans-serif; }
.brief-aside-note {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  margin-top: 18px;
  padding: 17px;
  border: 1px solid rgba(21, 212, 189, 0.28);
  background: rgba(21, 212, 189, 0.07);
}
.brief-aside-note svg { width: 20px; height: 20px; color: #15d4bd; }
.brief-aside-note p { margin: 0; color: #c3cdce; font: 430 11px/1.55 Manrope, sans-serif; }
.brief-aside-contact { display: grid; gap: 5px; margin-top: 24px; color: #fff; text-decoration: none; }
.brief-aside-contact span { color: #96aaa9; font: 650 9px/1.2 Manrope, sans-serif; }
.brief-aside-contact b { font: 500 13px/1.3 Manrope, sans-serif; }

.brief-request-form button[disabled],
.contact-form button[disabled],
.module-request-form button[disabled] { cursor: wait; opacity: 0.62; }
.module-form-status.is-success,
.form-note.is-success { color: #007f70; }
.module-form-status.is-error,
.form-note.is-error { color: #c52245; }

@media (prefers-reduced-motion: reduce) {
  .brief-route-signal i { animation: none; }
}

@media (max-width: 1180px) {
  .brief-hero-grid { grid-template-columns: 1fr; }
  .brief-route { min-height: auto; }
  .brief-layout { grid-template-columns: 1fr; }
  .brief-aside .summary-sticky { position: static; }
  .brief-aside ol { grid-template-columns: repeat(2, 1fr); column-gap: 30px; }
}

@media (max-width: 760px) {
  .brief-hero { padding-top: 152px; }
  .brief-hero-grid { gap: 44px; margin-top: 38px; }
  .brief-route { min-height: 380px; padding: 24px 18px; }
  .brief-route article { grid-template-columns: 28px 38px 1fr; gap: 10px; padding: 17px 14px; }
  .brief-route article:nth-child(2),
  .brief-route article:nth-child(2):hover,
  .brief-route article:hover { transform: none; }
  .brief-facts { grid-template-columns: repeat(2, 1fr); }
  .brief-facts > span:nth-child(2) { border-right: 0; }
  .brief-facts > span:nth-child(-n + 2) { border-bottom: 1px solid var(--brief-line); }
  .brief-file-drop { grid-template-columns: 42px 1fr; }
  .brief-file-drop em { grid-column: 2; max-width: 100%; text-align: left; }
  .brief-aside ol { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .brief-facts { grid-template-columns: 1fr; }
  .brief-facts > span { border-right: 0; border-bottom: 1px solid var(--brief-line); }
  .brief-facts > span:last-child { border-bottom: 0; }
  .brief-aside .summary-sticky { padding: 22px 18px; }
}

/* Contacts */
.contacts-page {
  --contacts-ink: #10161b;
  --contacts-soft: #eef4f6;
}

.contacts-hero {
  min-height: 760px;
  padding-top: clamp(170px, 11vw, 190px);
  padding-bottom: clamp(52px, 4vw, 68px);
  background:
    linear-gradient(110deg, rgba(0, 200, 178, 0.12), transparent 34%),
    linear-gradient(280deg, rgba(255, 67, 101, 0.09), transparent 34%),
    rgba(248, 251, 252, 0.86);
}

.contacts-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  gap: clamp(54px, 7vw, 120px);
  align-items: center;
  margin-top: clamp(32px, 3vw, 48px);
}

.contacts-hero-copy {
  max-width: 830px;
}

.contacts-hero-copy .inner-title {
  max-width: 830px;
  font-size: clamp(50px, 4.4vw, 74px);
  overflow-wrap: normal;
}

.contacts-hero-copy .inner-lead {
  max-width: 720px;
}

.contacts-hero-copy .hero-actions .button {
  gap: 10px;
}

.contacts-hero-copy .hero-actions svg {
  width: 18px;
  height: 18px;
}

.contacts-signal {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(17, 21, 26, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 247, 247, 0.82)),
    #ffffff;
}

.contacts-signal::before,
.contacts-signal::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.contacts-signal::before {
  top: 12%;
  right: -15%;
  width: 86%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #684bff 28%, #00bba5 72%, transparent);
  transform: rotate(-23deg);
  transform-origin: center;
}

.contacts-signal::after {
  bottom: 20%;
  left: -8%;
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e1a800 30%, #ff4365 76%, transparent);
  transform: rotate(17deg);
}

.contacts-signal-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 21, 26, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 21, 26, 0.065) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(135deg, #000 20%, transparent 92%);
}

.contacts-radar {
  position: absolute;
  top: 50%;
  left: 54%;
  width: min(330px, 52%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.contacts-radar i,
.contacts-radar b {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(0, 169, 149, 0.44);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.contacts-radar i:nth-child(1) {
  width: 36%;
  height: 36%;
  animation: contacts-pulse 3.2s ease-out infinite;
}

.contacts-radar i:nth-child(2) {
  width: 66%;
  height: 66%;
  animation: contacts-pulse 3.2s 0.7s ease-out infinite;
}

.contacts-radar i:nth-child(3) {
  width: 100%;
  height: 100%;
  animation: contacts-pulse 3.2s 1.4s ease-out infinite;
}

.contacts-radar b {
  width: 10px;
  height: 10px;
  border: 0;
  background: #00a995;
  box-shadow: 0 0 0 8px rgba(0, 169, 149, 0.14), 0 0 32px rgba(0, 169, 149, 0.58);
}

@keyframes contacts-pulse {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.72); }
  26% { opacity: 0.9; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.08); }
}

.contacts-coordinate {
  position: absolute;
  z-index: 2;
  color: #5e6b72;
  font: 650 10px/1 Manrope, sans-serif;
}

.coordinate-top {
  top: 24px;
  left: 26px;
}

.coordinate-side {
  top: 30px;
  right: 26px;
}

.contacts-location-mark {
  position: absolute;
  top: 50%;
  left: 54%;
  z-index: 3;
  display: grid;
  grid-template-columns: 48px auto;
  gap: 15px;
  align-items: center;
  padding: 15px 18px;
  border: 1px solid rgba(17, 21, 26, 0.16);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(23, 49, 111, 0.15);
  transform: translate(-50%, -50%);
}

.contacts-location-mark > svg {
  width: 34px;
  height: 34px;
  color: #e63358;
  stroke-width: 1.4;
}

.contacts-location-mark span {
  display: grid;
  gap: 4px;
}

.contacts-location-mark small {
  color: #68747c;
  font: 650 9px/1.2 Manrope, sans-serif;
  text-transform: uppercase;
}

.contacts-location-mark strong {
  font: 430 25px/1 Geologica, sans-serif;
}

.contacts-live {
  position: absolute;
  bottom: 27px;
  left: 27px;
  z-index: 3;
  display: flex;
  gap: 9px;
  align-items: center;
  color: #425059;
  font: 620 11px/1.2 Manrope, sans-serif;
  text-transform: uppercase;
}

.contacts-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #21c45a;
  box-shadow: 0 0 0 6px rgba(33, 196, 90, 0.12);
  animation: contacts-live 1.7s ease-in-out infinite;
}

@keyframes contacts-live {
  50% { box-shadow: 0 0 0 10px rgba(33, 196, 90, 0.02); }
}

.contacts-map-link {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(17, 21, 26, 0.16);
  background: rgba(255, 255, 255, 0.9);
  font: 650 11px/1.2 Manrope, sans-serif;
  transition: color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.contacts-map-link:hover {
  color: #008d7e;
  border-color: #00a995;
  transform: translateY(-3px);
}

.contacts-map-link svg {
  width: 17px;
  height: 17px;
}

.contacts-channels {
  background: #ffffff;
}

.contacts-channels .detail-intro {
  margin-bottom: clamp(42px, 4vw, 64px);
}

.contacts-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contacts-channel {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 2.2vw, 36px);
  border-right: 1px solid var(--line);
  overflow: hidden;
  transition: color 260ms ease, background 260ms ease, transform 260ms ease;
}

.contacts-channel:last-child {
  border-right: 0;
}

.contacts-channel::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #00a995, #684bff, #e63358, #d89b00);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.contacts-channel:hover {
  color: #ffffff;
  background: #17316f;
  transform: translateY(-4px);
}

.contacts-channel:hover::after {
  transform: scaleX(1);
}

.contacts-channel > span {
  display: flex;
  gap: 14px;
  align-items: center;
}

.contacts-channel svg {
  width: 26px;
  height: 26px;
  color: #00a995;
  stroke-width: 1.35;
}

.contacts-channel small {
  color: #68747c;
  font: 650 10px/1.35 Manrope, sans-serif;
  text-transform: uppercase;
  transition: color 260ms ease;
}

.contacts-channel strong {
  max-width: 100%;
  font: 390 clamp(20px, 1.45vw, 26px)/1.25 Geologica, sans-serif;
  overflow-wrap: anywhere;
}

.contacts-channel em {
  color: #66737b;
  font: 600 12px/1.35 Manrope, sans-serif;
  font-style: normal;
  transition: color 260ms ease;
}

.contacts-channel:hover small,
.contacts-channel:hover em {
  color: rgba(255, 255, 255, 0.72);
}

.contacts-channel:hover svg {
  color: #33f2d5;
}

.contacts-request {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1fr);
  gap: clamp(52px, 7vw, 118px);
  align-items: start;
  background:
    linear-gradient(rgba(17, 21, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 21, 26, 0.035) 1px, transparent 1px),
    #eef4f6;
  background-size: 56px 56px;
}

.contacts-request-copy {
  position: sticky;
  top: 132px;
}

.contacts-request-copy h2 {
  max-width: 760px;
  margin: 0;
  font: 300 clamp(42px, 4vw, 66px)/1.06 Geologica, sans-serif;
}

.contacts-request-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 28px 0 0;
  color: #5d6972;
  font-size: 16px;
  line-height: 1.75;
}

.contacts-response-list {
  display: grid;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.contacts-response-list > span {
  display: grid;
  grid-template-columns: 34px minmax(120px, 0.72fr) 1fr;
  gap: 14px;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.contacts-response-list svg {
  width: 21px;
  height: 21px;
  color: #00a995;
  stroke-width: 1.45;
}

.contacts-response-list b {
  font: 680 11px/1.35 Manrope, sans-serif;
  text-transform: uppercase;
}

.contacts-response-list small {
  color: #596873;
  font: 480 12px/1.45 Manrope, sans-serif;
}

.contacts-brief-link {
  display: flex;
  gap: 15px;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-top: 32px;
  padding-bottom: 6px;
  border-bottom: 1px solid #00a995;
  color: #007f71;
  font-weight: 700;
}

.contacts-brief-link svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.contacts-brief-link:hover svg {
  transform: translateX(5px);
}

.contacts-page-form {
  gap: 18px;
  padding: clamp(26px, 3vw, 44px);
  border: 1px solid rgba(17, 21, 26, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 32px 90px rgba(23, 49, 111, 0.1);
}

.contacts-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contacts-page-form .contact-file {
  background: linear-gradient(105deg, rgba(0, 169, 149, 0.07), rgba(104, 75, 255, 0.04));
}

@media (prefers-reduced-motion: reduce) {
  .contacts-radar i,
  .contacts-live i {
    animation: none;
  }
}

@media (max-width: 1260px) {
  .contacts-hero-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1fr);
    gap: 46px;
  }

  .contacts-request {
    grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1fr);
    gap: 48px;
  }
}

@media (max-width: 980px) {
  .contacts-hero {
    min-height: auto;
  }

  .contacts-hero-grid,
  .contacts-request {
    grid-template-columns: 1fr;
  }

  .contacts-hero-copy .inner-title {
    max-width: 950px;
    font-size: 54px;
  }

  .contacts-signal {
    min-height: 480px;
  }

  .contacts-request-copy {
    position: static;
  }

  .contacts-channel-grid {
    grid-template-columns: 1fr;
  }

  .contacts-channel {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contacts-channel:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .contacts-hero {
    padding-top: 152px;
  }

  .contacts-hero-grid {
    gap: 38px;
    margin-top: 34px;
  }

  .contacts-hero-copy .inner-title {
    font-size: 38px;
  }

  .contacts-signal {
    min-height: 390px;
  }

  .contacts-location-mark {
    left: 50%;
    grid-template-columns: 38px auto;
    padding: 13px 15px;
  }

  .contacts-location-mark > svg {
    width: 28px;
    height: 28px;
  }

  .contacts-location-mark strong {
    font-size: 21px;
  }

  .contacts-map-link {
    right: 18px;
    bottom: 18px;
  }

  .contacts-live {
    bottom: 78px;
    left: 20px;
  }

  .contacts-request-copy h2 {
    font-size: 38px;
  }

  .contacts-response-list > span {
    grid-template-columns: 30px 1fr;
  }

  .contacts-response-list small {
    grid-column: 2;
  }

  .contacts-form-grid {
    grid-template-columns: 1fr;
  }

  .contacts-page-form {
    padding: 24px 18px;
  }
}

.analytics-consent {
  position: fixed;
  z-index: 1200;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 22px max(24px, calc((100vw - 1620px) / 2));
  border-top: 1px solid rgba(17, 21, 26, 0.18);
  background: rgba(250, 253, 252, 0.98);
  box-shadow: 0 -18px 60px rgba(23, 49, 111, 0.12);
  backdrop-filter: blur(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.analytics-consent.is-closing {
  opacity: 0;
  transform: translateY(18px);
}

.analytics-consent-copy {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: center;
}

.analytics-consent-copy strong {
  color: #11151a;
  font: 650 14px/1.35 Manrope, sans-serif;
  text-transform: uppercase;
}

.analytics-consent-copy p {
  max-width: 760px;
  margin: 0;
  color: #52616a;
  font-size: 14px;
  line-height: 1.55;
}

.analytics-consent-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.analytics-consent button {
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid rgba(17, 21, 26, 0.2);
  border-radius: 4px;
  background: transparent;
  color: #11151a;
  font: 650 12px/1.2 Manrope, sans-serif;
  cursor: pointer;
}

.analytics-consent .analytics-consent-accept {
  border-color: #11151a;
  background: #11151a;
  color: #fff;
}

.analytics-consent button:hover {
  border-color: #00a995;
}

.analytics-consent .analytics-consent-accept:hover {
  border-color: #00a995;
  background: #007f71;
}

@media (max-width: 900px) {
  .analytics-consent,
  .analytics-consent-copy {
    grid-template-columns: 1fr;
  }

  .analytics-consent {
    gap: 18px;
    padding: 20px;
  }

  .analytics-consent-copy {
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .analytics-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .analytics-consent button {
    width: 100%;
  }
}

/* Portfolio case modal */
.project-shot {
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.portfolio-card:has([data-case-open]) {
  cursor: pointer;
}

.portfolio-card:has([data-case-open]) h3 {
  transition: color 180ms ease;
}

.portfolio-card:has([data-case-open]):hover h3 {
  color: #22f0d4;
}

.project-shot:focus-visible {
  outline: 3px solid #22f0d4;
  outline-offset: 5px;
}

.project-shot .project-live {
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.project-shot:hover .project-live,
.project-shot:focus-visible .project-live {
  border-color: #22f0d4;
  color: #101820;
  background: #22f0d4;
}

body.case-open {
  overflow: hidden;
}

.case-modal[hidden] {
  display: none !important;
}

.case-modal {
  position: fixed;
  z-index: 1600;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.case-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.case-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 15, 22, 0.72);
  backdrop-filter: blur(18px);
}

.case-dialog {
  position: relative;
  width: min(1540px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 7px;
  color: #11151a;
  background: #f7fbfa;
  box-shadow: 0 46px 140px rgba(2, 11, 22, 0.5);
  transform: translateY(24px) scale(0.985);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-color: var(--case-accent) rgba(17, 21, 26, 0.08);
}

.case-modal.is-open .case-dialog {
  transform: translateY(0) scale(1);
}

.case-close {
  position: sticky;
  z-index: 20;
  top: 14px;
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 42px;
  margin: 14px 14px -56px auto;
  padding: 0 15px;
  border: 1px solid rgba(17, 21, 26, 0.17);
  border-radius: 4px;
  color: #11151a;
  background: rgba(247, 251, 250, 0.9);
  font: 700 10px/1 Manrope, sans-serif;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.case-close:hover,
.case-close:focus-visible {
  border-color: var(--case-accent);
  color: #ffffff;
  background: var(--case-accent);
  outline: 0;
}

.case-close svg {
  width: 16px;
  height: 16px;
}

.case-heading {
  display: grid;
  grid-template-columns: 110px minmax(0, 1.15fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: end;
  padding: clamp(58px, 6vw, 92px) clamp(28px, 5vw, 80px) clamp(36px, 4vw, 62px);
  background:
    linear-gradient(90deg, rgba(17, 21, 26, 0.045) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(rgba(17, 21, 26, 0.04) 1px, transparent 1px) 0 0 / 58px 58px,
    #f7fbfa;
}

.case-heading-index {
  align-self: start;
  padding-top: 7px;
  color: var(--case-accent);
  font: 800 10px/1.2 Manrope, sans-serif;
}

.case-heading-copy p {
  margin: 0 0 16px;
  color: #687680;
  font: 750 10px/1.4 Manrope, sans-serif;
  text-transform: uppercase;
}

.case-heading h2 {
  margin: 0;
  color: #11151a;
  font: 420 clamp(48px, 6.3vw, 104px)/0.92 Manrope, sans-serif;
  overflow-wrap: anywhere;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 25px;
}

.case-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(17, 21, 26, 0.15);
  border-radius: 3px;
  color: #485660;
  background: rgba(255, 255, 255, 0.55);
  font: 750 8px/1 Manrope, sans-serif;
}

.case-lead {
  max-width: 510px;
  margin: 0 0 5px;
  color: #4e5c65;
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.55;
}

.case-gallery {
  --case-x: 0px;
  --case-y: 0px;
  --case-rx: 0deg;
  --case-ry: 0deg;
  position: relative;
  height: clamp(520px, 49vw, 760px);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, color-mix(in srgb, var(--case-accent) 30%, transparent), transparent 34%),
    radial-gradient(circle at 84% 78%, rgba(34, 240, 212, 0.16), transparent 29%),
    #07111c;
  perspective: 1700px;
  isolation: isolate;
}

.case-gallery::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 12% 9%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotate(-3deg);
}

.case-gallery-grid {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.case-screen {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 7px solid #141c25;
  border-radius: 5px;
  background: #0b1118;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.case-screen img {
  display: block;
  width: 100%;
  height: calc(100% - 27px);
  object-fit: cover;
  object-position: top center;
  animation: caseImageDrift 11s ease-in-out infinite alternate;
  transform-origin: center top;
}

.case-screen figcaption {
  position: absolute;
  right: 12px;
  bottom: 11px;
  max-width: calc(100% - 32px);
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(6, 13, 21, 0.76);
  font: 650 8px/1.2 Manrope, sans-serif;
  backdrop-filter: blur(10px);
}

.case-screen-bar {
  display: flex;
  gap: 5px;
  align-items: center;
  height: 27px;
  padding: 0 10px;
  background: #141c25;
}

.case-screen-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--case-accent);
}

.case-screen-bar i:nth-child(2) {
  background: #ffc739;
}

.case-screen-bar i:nth-child(3) {
  background: #22f0d4;
}

.case-screen-bar b {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.62);
  font: 750 8px/1 Manrope, sans-serif;
}

.case-screen-primary {
  z-index: 3;
  top: 6%;
  left: 16%;
  width: 68%;
  height: 68%;
  transform: translate3d(var(--case-x), var(--case-y), 70px) rotateX(var(--case-rx)) rotateY(var(--case-ry)) rotateZ(-1.4deg);
}

.case-screen-left {
  z-index: 4;
  bottom: 2%;
  left: 2%;
  width: 47%;
  height: 47%;
  transform: translate3d(var(--case-x), var(--case-y), 110px) rotateX(4deg) rotateY(13deg) rotateZ(-5deg);
}

.case-screen-right {
  z-index: 5;
  right: 1%;
  bottom: 3%;
  width: 47%;
  height: 46%;
  transform: translate3d(var(--case-x), var(--case-y), 140px) rotateX(3deg) rotateY(-13deg) rotateZ(4deg);
}

.case-screen-mobile {
  z-index: 7;
  top: 13%;
  right: 8%;
  width: 14%;
  height: 70%;
  border-width: 9px;
  border-radius: 24px;
  transform: translate3d(var(--case-x), var(--case-y), 190px) rotateX(2deg) rotateY(-10deg) rotateZ(5deg);
}

.case-screen-mobile img {
  height: calc(100% - 27px);
  animation-duration: 14s;
}

.case-screen-mobile figcaption {
  right: 8px;
  bottom: 8px;
  left: 8px;
  padding: 6px;
  text-align: center;
}

.case-screen:hover {
  z-index: 10;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.62);
}

.case-story {
  display: block;
  padding: clamp(68px, 8vw, 126px) clamp(28px, 5vw, 80px);
  background:
    linear-gradient(90deg, rgba(17, 21, 26, 0.04) 1px, transparent 1px) 0 0 / 58px 58px,
    #f7fbfa;
}

.case-kicker {
  margin: 0 0 15px;
  color: var(--case-accent);
  font: 800 10px/1.2 Manrope, sans-serif;
  text-transform: uppercase;
}

.case-story-heading {
  padding-bottom: clamp(26px, 3vw, 42px);
  border-bottom: 1px solid rgba(17, 21, 26, 0.16);
}

.case-story-heading h3 {
  max-width: 720px;
  margin: 0;
  color: #11151a;
  font: 450 clamp(27px, 2.1vw, 36px)/1.12 Manrope, sans-serif;
}

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

.case-story-column {
  position: relative;
  min-width: 0;
  padding: clamp(30px, 4vw, 58px) clamp(22px, 4vw, 60px) 6px 0;
}

.case-story-column + .case-story-column {
  padding-right: 0;
  padding-left: clamp(22px, 4vw, 60px);
  border-left: 1px solid rgba(17, 21, 26, 0.16);
}

.case-story-column::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 84px;
  height: 3px;
  content: "";
  background: var(--case-accent);
}

.case-story-column + .case-story-column::before {
  left: clamp(22px, 4vw, 60px);
}

.case-story-label {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
  color: #56636c;
}

.case-story-label span {
  color: var(--case-accent);
  font: 800 9px/1 Manrope, sans-serif;
}

.case-story-label svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

.case-story-label b {
  color: #222a30;
  font: 760 11px/1.2 Manrope, sans-serif;
  text-transform: uppercase;
}

.case-story-column p {
  max-width: 690px;
  margin: 0;
  color: #3f4c54;
  font: 430 clamp(17px, 1.35vw, 22px)/1.58 Manrope, sans-serif;
}

.case-result {
  align-self: stretch;
}

.case-work {
  padding: clamp(62px, 7vw, 108px) clamp(28px, 5vw, 80px);
  color: #ffffff;
  background: #101820;
}

.case-work-title {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.case-work-title span {
  font: 430 clamp(30px, 3vw, 48px)/1 Manrope, sans-serif;
}

.case-work-title b {
  color: #22f0d4;
  font: 750 9px/1.4 Manrope, sans-serif;
}

.case-work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-work-item {
  position: relative;
  min-width: 0;
  min-height: 330px;
  padding: 32px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.case-work-item + .case-work-item {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.case-work-item > svg {
  width: 28px;
  height: 28px;
  margin: 38px 0 54px;
  color: var(--case-accent);
  stroke-width: 1.4;
}

.case-work-index {
  color: rgba(255, 255, 255, 0.42);
  font: 750 8px/1 Manrope, sans-serif;
}

.case-work-item h4 {
  margin: 0 0 15px;
  color: #ffffff;
  font: 580 18px/1.25 Manrope, sans-serif;
}

.case-work-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.65;
}

.case-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 32px clamp(28px, 5vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #ffffff;
  background: #101820;
}

.case-footer-signal {
  display: flex;
  gap: 12px;
  align-items: center;
}

.case-footer-signal span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22f0d4;
  box-shadow: 0 0 0 7px rgba(34, 240, 212, 0.1);
}

.case-footer-signal b {
  color: rgba(255, 255, 255, 0.54);
  font: 750 8px/1.4 Manrope, sans-serif;
}

.case-footer .button {
  gap: 10px;
}

.case-footer .button svg {
  width: 17px;
  height: 17px;
}

@keyframes caseImageDrift {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.045) translate3d(0, -1.4%, 0);
  }
}

@media (max-width: 1024px) {
  .case-heading {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .case-lead {
    grid-column: 2;
  }

  .case-gallery {
    height: 570px;
  }

  .case-screen-mobile {
    width: 18%;
    right: 5%;
  }

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

  .case-work-item:nth-child(3) {
    border-left: 0;
  }

  .case-work-item {
    min-height: 280px;
  }
}

@media (max-width: 700px) {
  .case-modal {
    padding: 0;
  }

  .case-dialog {
    width: 100vw;
    max-height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .case-close {
    top: 10px;
    width: 42px;
    height: 42px;
    min-height: 42px;
    margin: 10px 10px -52px auto;
    padding: 0;
    justify-content: center;
  }

  .case-close span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .case-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 64px 18px 34px;
  }

  .case-heading-index,
  .case-lead {
    grid-column: auto;
  }

  .case-heading h2 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .case-lead {
    font-size: 16px;
  }

  .case-gallery {
    display: flex;
    gap: 14px;
    align-items: center;
    height: auto;
    padding: 28px 18px 38px;
    overflow-x: auto;
    overflow-y: hidden;
    perspective: none;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .case-gallery::-webkit-scrollbar {
    display: none;
  }

  .case-gallery::before,
  .case-gallery-grid {
    display: none;
  }

  .case-screen,
  .case-screen-primary,
  .case-screen-left,
  .case-screen-right,
  .case-screen-mobile {
    position: relative;
    inset: auto;
    z-index: 1;
    flex: 0 0 84vw;
    width: 84vw;
    height: 60vw;
    min-height: 235px;
    max-height: 390px;
    border-width: 5px;
    border-radius: 4px;
    transform: none;
    scroll-snap-align: center;
  }

  .case-screen-mobile {
    flex-basis: 34vw;
    width: 34vw;
    height: 60vw;
    max-height: 390px;
    border-width: 7px;
    border-radius: 20px;
  }

  .case-screen img,
  .case-screen-mobile img {
    height: calc(100% - 25px);
  }

  .case-screen-bar {
    height: 25px;
  }

  .case-story,
  .case-work {
    padding: 58px 18px;
  }

  .case-story {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .case-story-heading h3 {
    font-size: 28px;
  }

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

  .case-story-column,
  .case-story-column + .case-story-column {
    padding: 34px 0 36px;
    border-left: 0;
  }

  .case-story-column + .case-story-column {
    border-top: 1px solid rgba(17, 21, 26, 0.16);
  }

  .case-story-column + .case-story-column::before {
    left: 0;
  }

  .case-story-label {
    margin-bottom: 20px;
  }

  .case-story-column p {
    font-size: 16px;
    line-height: 1.6;
  }

  .case-work-title {
    display: grid;
    gap: 13px;
  }

  .case-work-title span {
    font-size: 30px;
  }

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

  .case-work-item,
  .case-work-item + .case-work-item,
  .case-work-item:nth-child(3) {
    min-height: 0;
    padding: 28px 0;
    border-left: 0;
  }

  .case-work-item > svg {
    margin: 28px 0 34px;
  }

  .case-footer {
    display: grid;
    padding: 28px 18px 36px;
  }

  .case-footer .button {
    width: 100%;
  }
}
