@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #0a0911;
  --ink-2: #151321;
  --paper: #f5f3ed;
  --paper-2: #ebe8df;
  --white: #ffffff;
  --violet: #715cff;
  --violet-2: #9b8cff;
  --cyan: #53ead6;
  --lime: #d5ff54;
  --coral: #ff7a59;
  --rose: #ff82ba;
  --blue: #6fc7ff;
  --muted-dark: #a7a3b5;
  --muted-light: #625f6d;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(10, 9, 17, 0.13);
  --display: "Manrope", Arial, sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --radius-xs: 12px;
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --container: 1360px;
  --shadow: 0 28px 80px rgba(12, 9, 29, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

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

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

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

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

p,
h1,
h2,
h3,
h4,
ul,
ol {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(213, 255, 84, 0.13);
  content: "";
}

.eyebrow.is-dark::before {
  background: var(--violet);
  box-shadow: 0 0 0 5px rgba(113, 92, 255, 0.12);
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(30px, 3.5vw, 48px);
}

.section-heading.is-split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 60px;
  max-width: none;
  align-items: end;
}

.section-heading h2,
.service-copy h2,
.case-copy h2 {
  max-width: 22ch;
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.section-heading p {
  max-width: 56ch;
  margin: 22px 0 0;
  color: inherit;
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.65;
  opacity: 0.74;
}

.section-heading.is-split p {
  margin: 0;
}

.text-gradient {
  background: linear-gradient(110deg, var(--cyan), var(--violet-2) 50%, var(--rose));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.button::after {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 12 12 4M6 4h6v6' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px;
  content: "";
  flex: 0 0 auto;
}

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

.button-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(213, 255, 84, 0.17);
}

.button-primary::after {
  background-color: var(--ink);
}

.button-primary:hover {
  box-shadow: 0 18px 44px rgba(213, 255, 84, 0.26);
}

.button-violet {
  background: #6a50eb;
  color: var(--white);
  box-shadow: 0 14px 36px rgba(106, 80, 235, 0.25);
}

.button-ghost {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark::after,
.button-violet::after,
.button-ghost::after {
  background-color: rgba(255, 255, 255, 0.15);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.text-link::after {
  content: "↗";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translate(3px, -3px);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 16px 0;
  pointer-events: none;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  width: min(calc(100% - 32px), 1420px);
  min-height: 68px;
  margin: 0 auto;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(12, 10, 22, 0.76);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--cyan), var(--violet) 58%, var(--rose));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.55), 0 10px 25px rgba(113, 92, 255, 0.25);
  color: var(--white);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.brand-mark::after {
  position: absolute;
  inset: 2px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 12px;
  content: "";
}

.brand-name {
  display: block;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-note {
  display: block;
  margin-top: 3px;
  color: var(--muted-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
}

.nav-links a {
  position: relative;
  color: #ddd9e8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-nav-contact {
  display: none;
}

.header-cta {
  min-height: 46px;
  padding: 12px 18px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-active span {
  opacity: 0;
}

.menu-toggle.is-active::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: 920px;
  align-items: center;
  overflow: hidden;
  padding: 160px 0 90px;
  background:
    radial-gradient(circle at 12% 15%, rgba(113, 92, 255, 0.36), transparent 32%),
    radial-gradient(circle at 78% 22%, rgba(83, 234, 214, 0.22), transparent 29%),
    radial-gradient(circle at 80% 80%, rgba(255, 122, 89, 0.15), transparent 28%),
    var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero::after {
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 680px;
  height: 680px;
  border: 120px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.hero-grid > *,
.service-hero-grid > *,
.contact-shell > *,
.content-grid > * {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 9px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #e9e5f3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px var(--lime);
}

.hero h1 {
  max-width: 18ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4.5vw, 76px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero h1 .line-muted {
  display: block;
  color: #8d8999;
}

.hero h1 .text-gradient {
  display: block;
}

.hero-lead {
  max-width: 58ch;
  margin: 24px 0 0;
  color: #c4c0cf;
  font-size: clamp(17px, 1.1vw, 20px);
  line-height: 1.6;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 42px;
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 700;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.scene-wrap {
  position: relative;
  min-height: 620px;
  perspective: 1100px;
}

.scene-shell {
  position: absolute;
  inset: 4% 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 48% 48% 42% 42% / 38% 38% 54% 54%;
  background:
    radial-gradient(circle at 50% 45%, rgba(113, 92, 255, 0.37), transparent 28%),
    radial-gradient(circle at 44% 55%, rgba(83, 234, 214, 0.14), transparent 45%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 100px rgba(113, 92, 255, 0.12), 0 50px 120px rgba(0, 0, 0, 0.4);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.18s ease-out;
}

.scene-shell::before,
.scene-shell::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.scene-shell::before {
  inset: 12%;
  animation: spin-slow 22s linear infinite;
}

.scene-shell::after {
  inset: 22% 8%;
  border-color: rgba(83, 234, 214, 0.24);
  transform: rotate(64deg);
  animation: spin-reverse 18s linear infinite;
}

.growth-canvas {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.scene-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(113, 92, 255, 0.34));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 0 70px rgba(113, 92, 255, 0.48);
  font-family: var(--display);
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -0.08em;
  transform: translate(-50%, -50%) rotate(-6deg);
  backdrop-filter: blur(20px);
}

.scene-core small {
  position: absolute;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--body);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.float-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(17, 14, 31, 0.75);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  color: #f3f0fa;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  animation: float 5s ease-in-out infinite;
}

.float-chip::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--chip-color, var(--cyan));
  box-shadow: 0 0 15px var(--chip-color, var(--cyan));
  content: "";
}

.chip-1 { top: 11%; left: -3%; --chip-color: var(--lime); }
.chip-2 { top: 25%; right: -3%; --chip-color: var(--rose); animation-delay: -1s; }
.chip-3 { bottom: 24%; left: -6%; --chip-color: var(--cyan); animation-delay: -2.4s; }
.chip-4 { right: 2%; bottom: 12%; --chip-color: var(--coral); animation-delay: -3.2s; }

.scene-panel {
  position: absolute;
  right: -3%;
  bottom: 4%;
  z-index: 5;
  width: 230px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: rgba(245, 243, 237, 0.92);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  color: var(--ink);
  transform: rotate(4deg);
}

.scene-panel-label {
  color: var(--muted-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scene-panel strong {
  display: block;
  margin: 5px 0 13px;
  font-family: var(--display);
  font-size: 31px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.mini-bars {
  display: flex;
  height: 42px;
  align-items: end;
  gap: 6px;
}

.mini-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(to top, var(--violet), var(--cyan));
}

.ticker {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: #0e0c17;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 34s linear infinite;
}

.ticker-group {
  display: flex;
  flex-shrink: 0;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  color: #d4d0de;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ticker-item::after {
  color: var(--lime);
  content: "✦";
}

.light-section {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 7vw, 112px) 0;
  background: var(--paper);
  color: var(--ink);
}

.light-section::before {
  position: absolute;
  top: -260px;
  right: -220px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(113, 92, 255, 0.08);
  filter: blur(2px);
  content: "";
}

.dark-section {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 7vw, 112px) 0;
  background: var(--ink);
  color: var(--white);
}

.dark-section.grid-bg::before {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 30%, rgba(113, 92, 255, 0.18), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  content: "";
}

.dark-section > .container,
.light-section > .container {
  position: relative;
  z-index: 2;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.bento-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.7) inset;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bento-card:hover {
  z-index: 2;
  box-shadow: var(--shadow);
  transform: translateY(-8px) rotate(-0.3deg);
}

.bento-card h3 {
  max-width: 460px;
  margin: 0 0 13px;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.bento-card p {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--muted-light);
  font-size: 15px;
}

.bento-index {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
}

.bento-large { grid-column: span 7; }
.bento-small { grid-column: span 5; }

.bento-violet {
  background: var(--violet);
  color: var(--white);
}

.bento-violet p,
.bento-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.bento-lime {
  background: var(--lime);
}

.bento-dark {
  background: var(--ink-2);
  color: var(--white);
}

.bento-coral {
  background: #ffd4c8;
}

.bento-infographics {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(280px, 0.82fr) minmax(380px, 1.18fr);
  gap: 42px;
  align-items: center;
  min-height: 480px;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 130, 186, 0.26), transparent 30%),
    radial-gradient(circle at 48% 100%, rgba(83, 234, 214, 0.14), transparent 35%),
    var(--ink-2);
  color: var(--white);
}

.bento-infographics-copy {
  position: relative;
  z-index: 2;
}

.bento-infographics-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.bento-infographics-stack {
  position: relative;
  min-height: 390px;
  perspective: 900px;
}

.bento-infographics-stack img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 190px;
  aspect-ratio: 1086 / 1448;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  object-fit: contain;
}

.bento-infographics-stack img:nth-child(1) { transform: translate(-118%, -48%) rotate(-11deg); }
.bento-infographics-stack img:nth-child(2) { z-index: 2; transform: translate(-50%, -52%) translateZ(36px); }
.bento-infographics-stack img:nth-child(3) { transform: translate(18%, -48%) rotate(11deg); }

.bento-visual {
  position: absolute;
  right: -36px;
  bottom: -54px;
  width: 230px;
  height: 230px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.2;
}

.bento-visual::before,
.bento-visual::after {
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.bento-visual::before { inset: 25px; }
.bento-visual::after { inset: 55px; background: currentColor; opacity: 0.4; }

.bento-nodes {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  width: 160px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.bento-nodes i {
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 14px;
  opacity: calc(0.3 + var(--o, 0.3));
}

.results-band {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: var(--line-light);
}

.result-intro,
.result-metric {
  min-height: 190px;
  padding: 30px;
  background: var(--white);
}

.result-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  color: var(--white);
}

.result-intro strong {
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.result-intro small {
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 700;
}

.result-metric {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.result-metric strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -0.065em;
  line-height: 1;
}

.result-metric span {
  max-width: 190px;
  color: var(--muted-light);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.services-list {
  border-top: 1px solid var(--line-dark);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(250px, 0.85fr) minmax(320px, 1.15fr) 64px;
  gap: 30px;
  align-items: center;
  min-height: 176px;
  padding: 30px 4px;
  border-bottom: 1px solid var(--line-dark);
  transition: padding 0.3s ease, background-color 0.3s ease;
}

.service-row::before {
  position: absolute;
  inset: 10px -18px;
  z-index: -1;
  border-radius: 24px;
  background: var(--row-color, var(--violet));
  content: "";
  opacity: 0;
  transform: scaleY(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

a.service-row:hover {
  padding-right: 18px;
  padding-left: 18px;
  color: var(--ink);
}

a.service-row:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.service-number {
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

a.service-row:hover .service-number,
a.service-row:hover .service-desc {
  color: rgba(10, 9, 17, 0.68);
}

.service-name {
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.service-desc {
  max-width: 540px;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.6;
}

.service-arrow {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-size: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

a.service-row:hover .service-arrow {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  transform: rotate(45deg);
}

.infographic-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(76px, 8vw, 128px) 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 130, 186, 0.2), transparent 30%),
    radial-gradient(circle at 88% 30%, rgba(83, 234, 214, 0.16), transparent 34%),
    linear-gradient(145deg, #0a0911 0%, #171026 52%, #090a12 100%);
  color: var(--white);
}

.infographic-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  content: "";
}

.infographic-orb {
  position: absolute;
  z-index: -1;
  width: 430px;
  height: 430px;
  border-radius: 45% 55% 64% 36%;
  filter: blur(28px);
  opacity: 0.26;
  pointer-events: none;
}

.infographic-orb-a {
  top: 8%;
  right: -140px;
  background: linear-gradient(135deg, var(--violet), var(--rose));
  transform: rotate(18deg);
}

.infographic-orb-b {
  bottom: 5%;
  left: -190px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  transform: rotate(-24deg);
}

.infographic-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(470px, 1.18fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.infographic-copy {
  position: relative;
  z-index: 3;
  max-width: 610px;
}

.infographic-copy h2 {
  max-width: 13ch;
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.infographic-copy > p {
  max-width: 56ch;
  margin-bottom: 26px;
  color: #c4c0cf;
  font-size: clamp(16px, 1vw, 19px);
}

.infographic-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), 0 18px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.infographic-price span,
.infographic-price small {
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.infographic-price strong {
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.infographic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.infographic-tags span {
  padding: 8px 11px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: #d9d5e2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.infographic-note {
  display: block;
  max-width: 53ch;
  margin-top: 17px;
  color: var(--muted-dark);
  font-size: 11px;
  line-height: 1.55;
}

.infographic-fan {
  position: relative;
  min-height: 650px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.fan-card {
  position: absolute;
  bottom: 3%;
  width: 43%;
  margin: 0;
  aspect-ratio: 1086 / 1448;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: #07070b;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.48);
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), filter 0.45s ease;
}

.fan-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fan-card-left {
  left: 3%;
  filter: saturate(0.84) brightness(0.78);
  transform: rotate(-13deg) translateY(24px) rotateY(9deg);
}

.fan-card-center {
  left: 29%;
  z-index: 2;
  width: 46%;
  transform: translateZ(60px) rotate(-1.5deg);
}

.fan-card-right {
  right: 1%;
  filter: saturate(0.88) brightness(0.82);
  transform: rotate(12deg) translateY(20px) rotateY(-9deg);
}

.infographic-fan:hover .fan-card-left {
  filter: none;
  transform: rotate(-16deg) translate(-14px, 8px) rotateY(4deg);
}

.infographic-fan:hover .fan-card-center {
  transform: translateZ(80px) translateY(-12px) rotate(-1deg);
}

.infographic-fan:hover .fan-card-right {
  filter: none;
  transform: rotate(15deg) translate(14px, 5px) rotateY(-4deg);
}

.fan-badge {
  position: absolute;
  right: 1%;
  bottom: 2%;
  z-index: 4;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--violet));
  box-shadow: 0 20px 55px rgba(113, 92, 255, 0.4);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(7deg);
}

.portfolio-preview {
  display: flex;
  gap: 15px;
  margin-top: clamp(48px, 7vw, 96px);
  padding: 10px 4px 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

.portfolio-preview-card {
  position: relative;
  flex: 0 0 clamp(190px, 18vw, 258px);
  aspect-ratio: 1086 / 1448;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: #08080d;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  scroll-snap-align: start;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.portfolio-preview-card:nth-child(2n) {
  transform: translateY(16px);
}

.portfolio-preview-card:hover {
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-8px) rotate(-0.5deg);
}

.portfolio-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.portfolio-preview-card:hover img {
  transform: scale(1.025);
}

.portfolio-preview-card span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  background: rgba(8, 8, 13, 0.74);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.marketplace-design-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 124px) 0;
  background:
    radial-gradient(circle at 10% 16%, rgba(255, 130, 186, 0.17), transparent 30%),
    radial-gradient(circle at 94% 42%, rgba(83, 234, 214, 0.13), transparent 32%),
    linear-gradient(150deg, #0a0911, #151022 58%, #090a10);
  color: var(--white);
}

.marketplace-design-section::before {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.055) 1px, transparent 1.5px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  content: "";
  opacity: 0.55;
}

.marketplace-design-section > .container {
  position: relative;
  z-index: 2;
}

.marketplace-design-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.marketplace-offer {
  position: sticky;
  top: 110px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 130, 186, 0.2), transparent 38%),
    rgba(255, 255, 255, 0.065);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32), inset 0 1px rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.marketplace-offer h3,
.marketplace-offer h2 {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.marketplace-offer-price {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.marketplace-offer-price span {
  margin: 0 9px 8px 0;
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.marketplace-offer-price strong {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 58px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.marketplace-offer-price small {
  grid-column: 2;
  margin-top: 5px;
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 700;
}

.marketplace-offer ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  color: #d7d3df;
  font-size: 14px;
  list-style: none;
}

.marketplace-offer li {
  display: flex;
  gap: 10px;
}

.marketplace-offer li::before {
  flex: 0 0 auto;
  color: var(--lime);
  content: "✦";
}

.marketplace-offer > p {
  color: var(--muted-dark);
  font-size: 12px;
}

.marketplace-offer .button {
  width: 100%;
  margin-top: 8px;
}

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

.portfolio-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1086 / 1448;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: #07070b;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
  color: var(--white);
  cursor: zoom-in;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-card:nth-child(3n + 2) {
  transform: translateY(18px);
}

.portfolio-card:hover {
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.42);
  transform: translateY(-7px) rotate(-0.4deg);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), filter 0.35s ease;
}

.portfolio-card:hover img {
  filter: saturate(1.06);
  transform: scale(1.025);
}

.portfolio-card > span {
  position: absolute;
  right: 9px;
  bottom: 9px;
  left: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(7, 7, 11, 0.77);
  text-align: left;
  backdrop-filter: blur(14px);
}

.portfolio-card b {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portfolio-card small {
  color: var(--muted-dark);
  font-size: 9px;
  text-align: right;
}

.portfolio-dialog {
  width: min(94vw, 760px);
  max-width: none;
  max-height: 94vh;
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: #08080d;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.72);
  color: var(--white);
}

.portfolio-dialog::backdrop {
  background: rgba(4, 3, 8, 0.88);
  backdrop-filter: blur(10px);
}

.portfolio-dialog figure {
  display: grid;
  max-height: 90vh;
  margin: 0;
}

.portfolio-dialog img {
  width: 100%;
  max-height: calc(90vh - 48px);
  border-radius: 23px 23px 0 0;
  object-fit: contain;
}

.portfolio-dialog figcaption {
  min-height: 48px;
  padding: 13px 18px;
  color: #d7d3df;
  font-size: 12px;
  text-align: center;
}

.portfolio-dialog-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  min-height: 600px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.case-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(36px, 5vw, 70px);
}

.case-copy h3 {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: clamp(26px, 2.8vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.case-copy p {
  max-width: 590px;
  color: var(--muted-light);
  font-size: 17px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0;
}

.case-tags span,
.tag {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.case-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background:
    radial-gradient(circle at 60% 45%, rgba(213, 255, 84, 0.9), transparent 13%),
    radial-gradient(circle at 53% 48%, rgba(83, 234, 214, 0.8), transparent 28%),
    radial-gradient(circle at 52% 50%, rgba(113, 92, 255, 0.9), transparent 60%),
    var(--ink-2);
}

.case-visual::before {
  position: absolute;
  inset: -18%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 44% 56% 51% 49% / 56% 40% 60% 44%;
  content: "";
  animation: blob 13s ease-in-out infinite alternate;
}

.case-visual::after {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.035), 0 0 0 110px rgba(255, 255, 255, 0.025);
}

.case-score {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  color: var(--white);
  text-align: center;
  transform: translate(-50%, -50%);
}

.case-score span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.case-score strong {
  display: block;
  margin: 10px 0;
  font-family: var(--display);
  font-size: clamp(70px, 10vw, 138px);
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.case-floating-note {
  position: absolute;
  z-index: 3;
  max-width: 220px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(10, 9, 17, 0.72);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(16px);
}

.case-note-a { top: 11%; left: 8%; transform: rotate(-4deg); }
.case-note-b { right: 7%; bottom: 12%; transform: rotate(5deg); }

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.case-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  padding: 36px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.case-card:nth-child(2) {
  background: #d9d1ff;
}

.case-card h3 {
  max-width: 520px;
  margin: 100px 0 18px;
  font-family: var(--display);
  font-size: clamp(29px, 3.4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.case-card p {
  max-width: 520px;
  color: var(--muted-light);
  font-size: 15px;
}

.case-card .text-link {
  position: absolute;
  bottom: 36px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: var(--line-light);
}

.process-step {
  min-height: 340px;
  padding: 30px;
  background: var(--white);
}

.process-step:nth-child(2) { background: #e5e0ff; }
.process-step:nth-child(3) { background: #d6f8f1; }
.process-step:nth-child(4) { background: var(--lime); }

.process-step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 90px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}

.process-step h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(21px, 1.7vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.16;
}

.process-step p {
  color: var(--muted-light);
  font-size: 14px;
}

.infographic-price-banner {
  position: relative;
  display: grid;
  grid-template-columns: 250px minmax(280px, 1fr) auto;
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  min-height: 270px;
  margin-bottom: 18px;
  padding: 28px 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 130, 186, 0.24), transparent 30%),
    radial-gradient(circle at 72% 0, rgba(83, 234, 214, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.price-banner-stack {
  position: relative;
  min-height: 215px;
  perspective: 800px;
}

.price-banner-stack img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 112px;
  aspect-ratio: 1086 / 1448;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
  object-fit: contain;
}

.price-banner-stack img:nth-child(1) { transform: translate(-112%, -48%) rotate(-12deg); }
.price-banner-stack img:nth-child(2) { z-index: 2; transform: translate(-50%, -54%) translateZ(28px); }
.price-banner-stack img:nth-child(3) { transform: translate(12%, -48%) rotate(12deg); }

.price-banner-copy .price-card-label {
  margin-bottom: 22px;
}

.price-banner-copy h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(26px, 2.5vw, 39px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.price-banner-copy p {
  max-width: 54ch;
  margin: 0;
  color: #c2becc;
  font-size: 14px;
}

.price-banner-action {
  min-width: 230px;
}

.price-banner-action .price {
  margin-top: 0;
}

.price-banner-action .button {
  width: 100%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.price-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-8px);
}

.price-card.is-featured {
  border-color: transparent;
  background: var(--violet);
}

.price-card-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 58px;
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}

.price-card h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.price {
  margin: 18px 0 22px;
  font-family: var(--display);
  font-size: clamp(36px, 3.2vw, 52px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.price small {
  color: var(--muted-dark);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.is-featured .price small {
  color: rgba(255, 255, 255, 0.7);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 34px;
  padding: 0;
  color: #c2becc;
  font-size: 14px;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 10px;
}

.price-card li::before {
  flex: 0 0 auto;
  color: var(--lime);
  content: "✓";
  font-weight: 800;
}

.is-featured ul {
  color: rgba(255, 255, 255, 0.8);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  margin: 24px auto 0;
  color: var(--muted-dark);
  font-size: 12px;
  text-align: center;
}

.faq-list {
  max-width: 1040px;
  margin-left: auto;
  border-top: 1px solid var(--line-light);
}

.faq-item {
  border-bottom: 1px solid var(--line-light);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 64px 28px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.2;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  position: absolute;
  right: 2px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  content: "+";
  font-family: var(--body);
  font-size: 20px;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.faq-item[open] summary::after {
  background: var(--lime);
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 760px;
  padding: 0 64px 32px 0;
  color: var(--muted-light);
}

.contact-section {
  padding: 24px 0;
  background: var(--paper);
  color: var(--ink);
}

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(40px, 7vw, 100px);
  overflow: hidden;
  padding: clamp(44px, 7vw, 96px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 15%, rgba(213, 255, 84, 0.65), transparent 28%),
    radial-gradient(circle at 96% 2%, rgba(255, 130, 186, 0.4), transparent 30%),
    linear-gradient(135deg, #8270ff, #6b55ee 55%, #5943d2);
  color: var(--white);
}

.contact-shell::before {
  position: absolute;
  top: -250px;
  left: 35%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.04), 0 0 0 140px rgba(255, 255, 255, 0.03);
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 2;
}

.contact-copy h2 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(32px, 3.4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.contact-copy p {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.contact-form {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  background: rgba(12, 9, 28, 0.28);
  box-shadow: 0 30px 80px rgba(35, 16, 102, 0.2);
  backdrop-filter: blur(18px);
}

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

.form-field {
  position: relative;
}

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

.form-field label {
  display: block;
  margin: 0 0 7px 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-field input,
.form-field select {
  height: 54px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 116px;
  padding: 14px 16px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.47);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.15);
}

.form-field input.error,
.form-field textarea.error {
  border-color: #ffd3c8;
}

.form-field small {
  display: block;
  margin: 6px 4px 0;
  color: #ffe0d8;
  font-size: 11px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.form-actions .button {
  min-width: 210px;
}

.form-privacy {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.45;
}

.form-privacy a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-status {
  min-height: 22px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
}

.contact-status.success { color: var(--lime); }
.contact-status.error { color: #ffe0d8; }

.site-footer {
  padding: 72px 0 30px;
  background: var(--paper);
  color: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line-light);
}

.footer-brand p {
  max-width: 440px;
  margin-top: 24px;
  color: var(--muted-light);
  font-size: 14px;
}

.footer-col h3 {
  margin: 0 0 17px;
  color: #8d8993;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col nav {
  display: grid;
  gap: 11px;
}

.footer-col a {
  font-size: 14px;
  font-weight: 700;
}

.footer-col a:hover {
  color: var(--violet);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  color: var(--muted-light);
  font-size: 10px;
  line-height: 1.6;
}

.footer-bottom p {
  max-width: 920px;
}

.to-top {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-weight: 800;
}

/* Interior pages */
.service-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 160px 0 90px;
  background:
    radial-gradient(circle at 78% 20%, var(--hero-glow, rgba(113, 92, 255, 0.38)), transparent 35%),
    radial-gradient(circle at 15% 70%, rgba(83, 234, 214, 0.14), transparent 28%),
    var(--ink);
}

.service-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black 40%, transparent);
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 54px;
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 700;
}

.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs > * + *::before { margin-right: 8px; content: "/"; opacity: 0.5; }

.service-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
}

.service-hero h1,
.case-hero h1 {
  max-width: 18ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 4.2vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.service-hero-copy p {
  max-width: 660px;
  margin: 30px 0 0;
  color: #c4c0cf;
  font-size: clamp(17px, 1.1vw, 20px);
  line-height: 1.6;
}

.service-sidecard {
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.service-sidecard-label {
  margin-bottom: 32px;
  color: var(--muted-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-sidecard ul {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.service-sidecard li {
  display: flex;
  gap: 11px;
  color: #e3dfeb;
  font-size: 14px;
}

.service-sidecard li::before {
  color: var(--lime);
  content: "✦";
}

.service-sidecard .button { width: 100%; }

.audience-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink-2);
}

.audience-item {
  padding: 28px;
  border-right: 1px solid var(--line-dark);
}

.audience-item:last-child { border-right: 0; }
.audience-item strong { display: block; margin-bottom: 5px; font-family: var(--display); font-size: 18px; letter-spacing: -0.03em; }
.audience-item span { color: var(--muted-dark); font-size: 12px; }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.article-copy h2 {
  margin: 64px 0 20px;
  font-family: var(--display);
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.article-copy h2:first-child { margin-top: 0; }

.article-copy h3 {
  margin: 42px 0 14px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.article-copy p,
.article-copy li {
  color: var(--muted-light);
  font-size: 16px;
  line-height: 1.65;
}

.article-copy ul,
.article-copy ol {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 30px 0;
}

.deliverable-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.deliverable-card:nth-child(2n) { background: #e8e2ff; }
.deliverable-card strong { display: block; margin-bottom: 10px; font-family: var(--display); font-size: 23px; letter-spacing: -0.04em; line-height: 1.1; }
.deliverable-card p { margin: 0; font-size: 14px; }

.sticky-card {
  position: sticky;
  top: 110px;
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.sticky-card h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.sticky-card p { color: var(--muted-dark); font-size: 14px; }
.sticky-card .button { width: 100%; margin-top: 18px; }

.sticky-price {
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.sticky-price small { display: block; color: var(--muted-dark); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.sticky-price strong { display: block; margin-top: 6px; font-family: var(--display); font-size: 38px; letter-spacing: -0.06em; }

.service-cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: clamp(38px, 6vw, 70px);
  border-radius: var(--radius-lg);
  background: var(--lime);
  color: var(--ink);
}

.service-cta-band h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.case-hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 25%, rgba(255, 122, 89, 0.34), transparent 30%),
    radial-gradient(circle at 16% 70%, rgba(113, 92, 255, 0.26), transparent 32%),
    var(--ink);
}

.case-hero .hero-lead { max-width: 820px; }

.case-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 70px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--line-dark);
}

.case-fact {
  min-height: 170px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
}

.case-fact small { color: var(--muted-dark); font-size: 9px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.case-fact strong { display: block; margin: 28px 0 7px; font-family: var(--display); font-size: 26px; letter-spacing: -0.04em; line-height: 1.05; }
.case-fact span { color: var(--muted-dark); font-size: 12px; }

.quote-block {
  margin: 46px 0;
  padding: 35px;
  border-left: 6px solid var(--violet);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #e7e2ff;
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes spin-reverse { from { transform: rotate(64deg); } to { transform: rotate(-296deg); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes blob {
  0% { transform: rotate(0deg) scale(0.95); }
  100% { transform: rotate(24deg) scale(1.05); }
}

@media (max-width: 1180px) {
  .nav-links { gap: 15px; }
  .nav-links a { font-size: 10px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(380px, 0.75fr); }
  .scene-wrap { min-height: 570px; }
  .service-row { grid-template-columns: 55px 0.9fr 1.1fr 54px; gap: 22px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card:last-child { grid-column: 1 / -1; min-height: 440px; }
  .infographic-price-banner { grid-template-columns: 220px 1fr; }
  .price-banner-action { display: flex; grid-column: 2; align-items: center; gap: 22px; }
  .price-banner-action .price { margin: 0; }
  .price-banner-action .button { width: auto; }
  .portfolio-masonry { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-card:nth-child(3n + 2) { transform: none; }
  .portfolio-card:nth-child(2n) { transform: translateY(14px); }
}

@media (max-width: 960px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .site-header { padding: 10px 0; }
  .nav-shell { grid-template-columns: auto auto; justify-content: space-between; min-height: 62px; border-radius: 20px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line-dark);
    border-radius: 20px;
    background: rgba(12, 10, 22, 0.96);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-links.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links a { padding: 15px 12px; font-size: 12px; }
  .nav-links a::after { display: none; }
  .nav-links .mobile-nav-contact {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    border-radius: 14px;
    background: var(--lime);
    color: var(--ink);
  }
  .header-cta { display: none; }
  .hero { min-height: auto; padding: 140px 0 70px; }
  .hero-grid,
  .service-hero-grid,
  .contact-shell,
  .content-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 18ch; }
  .scene-wrap { width: min(100%, 640px); min-height: 600px; margin: 10px auto 0; }
  .section-heading.is-split { grid-template-columns: 1fr; gap: 22px; }
  .infographic-showcase { grid-template-columns: 1fr; }
  .infographic-copy { max-width: 700px; }
  .infographic-copy h2 { max-width: 15ch; }
  .infographic-fan { width: min(100%, 720px); min-height: 620px; margin: 0 auto; }
  .marketplace-design-layout { grid-template-columns: 1fr; }
  .marketplace-offer { position: static; }
  .marketplace-offer .button { width: auto; }
  .portfolio-masonry { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .portfolio-card:nth-child(2n) { transform: none; }
  .portfolio-card:nth-child(3n + 2) { transform: translateY(14px); }
  .bento-large,
  .bento-small { grid-column: span 6; }
  .bento-infographics { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .bento-infographics-stack { min-height: 360px; }
  .results-band { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 50px 1fr 54px; }
  .service-desc { grid-column: 2 / 3; }
  .service-arrow { grid-column: 3; grid-row: 1 / span 2; }
  .case-feature { grid-template-columns: 1fr; }
  .case-copy { min-height: 520px; }
  .case-visual { min-height: 560px; }
  .contact-copy p { max-width: 700px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .service-hero { min-height: auto; padding-bottom: 70px; }
  .service-sidecard { max-width: 600px; }
  .audience-strip { grid-template-columns: repeat(2, 1fr); }
  .audience-item:nth-child(2) { border-right: 0; }
  .audience-item:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .sticky-card { position: static; }
  .service-cta-band { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand-note { display: none; }
  .brand-name { font-size: 14px; }
  .nav-shell { width: calc(100% - 20px); padding-left: 12px; }
  .hero { padding-top: 125px; }
  .hero h1,
  .service-hero h1,
  .case-hero h1 { hyphens: none; overflow-wrap: normal; word-break: normal; }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-row { display: grid; gap: 10px; }
  .scene-wrap { min-height: 480px; }
  .scene-shell { inset: 2% 0 8%; border-radius: 42px; }
  .scene-core { width: 105px; height: 105px; border-radius: 30px; }
  .float-chip { font-size: 8px; }
  .chip-1 { top: 7%; left: 2%; }
  .chip-2 { top: 20%; right: 0; }
  .chip-3 { bottom: 23%; left: 0; }
  .scene-panel { right: 1%; bottom: 0; width: 185px; }
  .ticker-item { padding: 17px 20px; font-size: 12px; }
  .light-section,
  .dark-section { padding: 64px 0; }
  .section-heading { margin-bottom: 34px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large,
  .bento-small { grid-column: auto; min-height: 340px; }
  .bento-card { padding: 26px; }
  .bento-infographics { min-height: auto; gap: 24px; }
  .bento-infographics-stack { min-height: 290px; }
  .bento-infographics-stack img { width: 132px; border-radius: 12px; }
  .results-band { grid-template-columns: 1fr; }
  .result-intro,
  .result-metric { min-height: 150px; }
  .service-row { grid-template-columns: 42px 1fr 44px; gap: 10px; min-height: 160px; }
  .service-name { font-size: 28px; }
  .service-desc { font-size: 13px; }
  .service-arrow { width: 42px; height: 42px; }
  .infographic-showcase { gap: 28px; }
  .infographic-copy h2 { font-size: clamp(32px, 10vw, 43px); }
  .infographic-fan { min-height: 340px; }
  .fan-card { border-radius: 16px; }
  .fan-badge { width: 82px; height: 82px; font-size: 8px; }
  .portfolio-preview { margin-right: -12px; margin-left: -12px; padding-left: 12px; }
  .portfolio-preview-card { flex-basis: 184px; border-radius: 16px; }
  .marketplace-offer { padding: 24px; }
  .marketplace-offer .button { width: 100%; }
  .portfolio-masonry { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .portfolio-card,
  .portfolio-card:nth-child(3n + 2) { border-radius: 14px; transform: none; }
  .portfolio-card > span { display: none; }
  .portfolio-dialog { width: calc(100vw - 24px); border-radius: 18px; }
  .portfolio-dialog img { border-radius: 17px 17px 0 0; }
  .portfolio-dialog-close { top: 8px; right: 8px; }
  .case-copy { min-height: auto; padding: 28px; }
  .case-visual { min-height: 450px; }
  .case-grid { grid-template-columns: 1fr; }
  .case-card { min-height: auto; padding: 28px; }
  .case-card .text-link { bottom: 28px; }
  .process-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .process-step { min-height: auto; }
  .process-step-number { margin-bottom: 42px; }
  .price-card,
  .price-card:last-child { grid-column: auto; min-height: auto; padding: 28px; }
  .infographic-price-banner { grid-template-columns: 1fr; padding: 24px; }
  .price-banner-stack { min-height: 190px; }
  .price-banner-action { display: block; grid-column: auto; min-width: 0; }
  .price-banner-action .price { margin: 18px 0 22px; }
  .price-banner-action .button { width: 100%; }
  .faq-item summary { min-height: 90px; padding-right: 48px; }
  .faq-answer { padding-right: 20px; }
  .contact-section { padding: 12px 0; }
  .contact-shell { padding: 36px 20px; border-radius: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .contact-form { padding: 20px; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .service-hero { padding: 130px 0 70px; }
  .breadcrumbs { margin-bottom: 38px; }
  .audience-strip { grid-template-columns: 1fr; }
  .audience-item { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .audience-item:last-child { border-bottom: 0; }
  .deliverable-grid { grid-template-columns: 1fr; }
  .service-cta-band { padding: 34px 24px; border-radius: 28px; }
  .case-hero { padding: 130px 0 75px; }
  .case-facts { grid-template-columns: 1fr; }
  .case-fact { min-height: 150px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
