:root {
  --bg: #080808;
  --bg-soft: #0f1011;
  --card: #151515;
  --card-strong: #1d1d1d;
  --text: #f7f7f2;
  --muted: #a7a7a0;
  --line: rgba(255, 255, 255, 0.1);
  --brand-primary: #080808;
  --brand-accent: #8b5cf6;
  --accent: #8b5cf6;
  --accent-dark: #5b21b6;
  --accent-soft: rgba(139, 92, 246, 0.17);
  --light-block: #f3f1f6;
  --light-block-soft: #faf9fc;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

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

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 10%, rgba(139, 92, 246, 0.18), transparent 28rem),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.06), transparent 22rem),
    var(--bg);
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  border: 1px solid rgba(139, 92, 246, 0.62);
  border-radius: 999px;
  padding: 10px 14px;
  color: #ffffff;
  background: #111;
  font-size: 13px;
  font-weight: 900;
  transform: translateY(calc(-100% - 28px));
  transition: transform 180ms ease;
}

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

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 3px solid rgba(183, 148, 255, 0.98);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.22);
}

:where(a, button, input, textarea, select, summary, [tabindex]):focus:not(:focus-visible) {
  outline: none;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.server-page-fallback {
  min-height: 52vh;
  padding: 128px 0 88px;
  background:
    radial-gradient(circle at 72% 12%, rgba(139, 92, 246, 0.18), transparent 28rem),
    var(--bg);
}

.server-page-fallback h1 {
  max-width: 900px;
  margin: 18px 0 18px;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: 0;
}

.server-page-fallback p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.not-found-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 74% 18%, rgba(139, 92, 246, 0.24), transparent 28rem),
    var(--bg);
}

.not-found-main {
  min-height: 72vh;
}

.not-found-hero {
  padding: 152px 0 96px;
}

.not-found-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
  gap: 48px;
  align-items: center;
}

.not-found-hero h1 {
  max-width: 860px;
  margin: 18px 0;
  font-size: clamp(54px, 9vw, 126px);
  line-height: 0.88;
  letter-spacing: 0;
}

.not-found-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.not-found-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(139, 92, 246, 0.12));
  box-shadow: var(--shadow);
}

.not-found-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.not-found-card strong {
  font-size: 28px;
  line-height: 1.05;
}

.not-found-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.not-found-card a {
  width: fit-content;
  border-bottom: 1px solid rgba(139, 92, 246, 0.55);
  color: #ffffff;
  font-weight: 900;
}

@media (max-width: 820px) {
  .not-found-hero {
    padding: 118px 0 72px;
  }

  .not-found-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .not-found-hero h1 {
    font-size: clamp(46px, 17vw, 74px);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px var(--accent-soft);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(139, 92, 246, 0.08);
  }
}

@keyframes auraFloat {
  0%,
  100% {
    opacity: 0.74;
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate3d(-18px, 12px, 0) scale(1.04);
  }
}

@keyframes auditFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.js-ready [data-reveal] {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(28px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.js-ready .hero-content [data-reveal] {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  font-size: clamp(16px, 1.05vw, 18px);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.1;
  white-space: nowrap;
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid rgba(247, 247, 242, 0.24);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.96) url("/assets/shatalov-agency-mark.png") center / 33px auto no-repeat;
  box-shadow: 0 12px 28px rgba(104, 63, 216, 0.26);
}

.logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-image {
  display: block;
  width: auto;
  max-width: min(220px, 42vw);
  max-height: 46px;
  object-fit: contain;
}

.logo-text {
  min-width: 0;
  overflow-wrap: anywhere;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(247, 247, 242, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  border-radius: 999px;
  padding: 10px 12px;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav a:hover,
.footer a:hover {
  color: #ffffff;
}

.policy-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 12%, rgba(139, 92, 246, 0.2), transparent 24rem),
    #070707;
}

.policy-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 70px;
}

.policy-shell > .logo {
  display: inline-flex;
  margin-bottom: 28px;
}

.policy-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.policy-card h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.98;
}

.policy-card h2 {
  margin: 30px 0 10px;
  color: #ffffff;
  font-size: clamp(22px, 3vw, 30px);
}

.policy-card p {
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.policy-card a:not(.btn) {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(139, 92, 246, 0.7);
  text-underline-offset: 3px;
}

.policy-card .btn {
  margin-top: 28px;
}

.nav a:hover {
  background: rgba(139, 92, 246, 0.16);
}

.nav-toggle {
  position: relative;
  z-index: 32;
  display: none;
  flex: 0 0 auto;
  min-width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle:focus-visible,
.nav a:focus-visible,
.language-switcher a:focus-visible,
.header-cta:focus-visible {
  position: relative;
  z-index: 2;
}

.nav-toggle-icon {
  display: grid;
  gap: 5px;
}

.nav-toggle-icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-toggle-text {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-cta {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 92, 246, 0.58);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
  background: rgba(139, 92, 246, 0.12);
}

.language-switcher {
  --language-item-width: 34px;
  --language-item-height: 34px;
  --language-item-gap: 4px;
  --language-pad: 4px;
  position: relative;
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--language-item-width);
  align-items: center;
  justify-content: center;
  gap: var(--language-item-gap);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: var(--language-pad);
  background: rgba(255, 255, 255, 0.04);
}

.language-switcher-indicator {
  display: none;
}

.language-switcher.is-switching .language-switcher-indicator {
  display: none;
}

.language-switcher a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: var(--language-item-width);
  height: var(--language-item-height);
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(247, 247, 242, 0.72);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    text-shadow 220ms ease;
}

.language-switcher a:hover {
  color: #ffffff;
}

.language-switcher a.is-active {
  color: #ffffff;
  background:
    radial-gradient(circle at 32% 28%, rgba(204, 190, 255, 0.9), transparent 18px),
    linear-gradient(135deg, rgba(168, 117, 255, 0.92), rgba(103, 58, 183, 0.78));
  box-shadow:
    0 8px 18px rgba(139, 92, 246, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.2);
}

.hero {
  position: relative;
  overflow: visible;
  height: auto;
  min-height: clamp(640px, 70svh, 760px);
  padding: 54px 0 clamp(88px, 9svh, 136px);
  background: #050505;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  right: -10vw;
  bottom: -10vh;
  z-index: 0;
  width: 52vw;
  height: 52vw;
  min-width: 480px;
  min-height: 480px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.16), transparent 62%);
  animation: auraFloat 9s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  height: auto;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 4.4vw, 64px);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 10px;
  border: 1px solid rgba(139, 92, 246, 0.48);
  border-radius: 999px;
  padding: 7px 11px;
  color: #b794ff;
  background: rgba(139, 92, 246, 0.1);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 16px;
  font-size: clamp(40px, 4.2vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero h1 {
  max-width: min(760px, 100%);
  letter-spacing: 0;
  line-height: 0.98;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-text {
  max-width: 600px;
  margin-bottom: 18px;
  color: rgba(247, 247, 242, 0.9);
  font-size: clamp(16px, 1.14vw, 19px);
  font-weight: 650;
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-trust {
  max-width: 520px;
  margin: 0 0 18px;
  color: rgba(247, 247, 242, 0.68);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 800;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

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

.btn-primary:hover {
  box-shadow: 0 20px 52px rgba(139, 92, 246, 0.48);
}

.btn-secondary:hover {
  border-color: rgba(139, 92, 246, 0.64);
  background: rgba(139, 92, 246, 0.12);
}

.btn-primary {
  border: 1px solid var(--accent);
  color: #ffffff;
  background: linear-gradient(135deg, #b794ff, var(--accent) 48%, var(--accent-dark));
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.34);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px 7px 30px;
  color: #d8d8d2;
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 800;
}

.hero-points li::before {
  position: absolute;
  left: 14px;
  color: var(--accent);
  content: "✓";
}

.hero-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  align-self: center;
  border-radius: 24px;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    var(--card);
  box-shadow: var(--shadow);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.hero-showcase:hover {
  border-color: rgba(139, 92, 246, 0.42);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
  transform: translateY(-6px);
}

.hero-showcase::before {
  position: absolute;
  inset: -1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.38), transparent 28%, transparent 70%, rgba(255, 255, 255, 0.12));
  mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  mask-composite: exclude;
  padding: 1px;
}

.hero-showcase-frame {
  position: relative;
  z-index: 1;
  min-height: 410px;
  height: clamp(410px, calc(70vh - 170px), 520px);
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 72% 18%, rgba(139, 92, 246, 0.34), transparent 16rem),
    #111;
}

.hero-showcase-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  user-select: none;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-showcase:hover .hero-showcase-frame img {
  transform: scale(1.035);
}

.hero-showcase-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 22%, rgba(0, 0, 0, 0.34) 58%, rgba(0, 0, 0, 0.92)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 42%);
}

.hero-showcase-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.hero-showcase-caption span {
  display: inline-flex;
  margin-bottom: 8px;
  border-radius: 999px;
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(139, 92, 246, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-showcase-caption strong {
  display: block;
  max-width: 320px;
  color: #ffffff;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero-showcase-controls {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.hero-showcase-controls button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 24px;
  line-height: 1;
}

.hero-team-visual {
  position: relative;
  align-self: stretch;
  width: min(560px, 39vw);
  min-height: clamp(420px, calc(70vh - 136px), 520px);
  justify-self: end;
  margin-right: min(-3vw, -24px);
  isolation: isolate;
}

.hero-team-visual::before {
  position: absolute;
  inset: 8% -16% 0 12%;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.28), transparent 62%);
  filter: blur(16px);
}

.hero-team-glow {
  position: absolute;
  inset: -6% -14% -8% 12%;
  z-index: 0;
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 999px;
  background:
    radial-gradient(circle at 58% 44%, rgba(139, 92, 246, 0.2), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 56%);
  transform: rotate(-11deg);
}

.hero-team-photo {
  position: absolute;
  inset: 0 -4% 0 0;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 68% 24%, rgba(139, 92, 246, 0.3), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #08080b;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.5);
}

.hero-team-photo::before,
.hero-team-photo::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.hero-team-photo::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.42), rgba(5, 5, 5, 0.08) 34%, transparent 64%),
    linear-gradient(180deg, transparent 18%, rgba(5, 5, 5, 0.3) 88%, rgba(5, 5, 5, 0.54));
}

.hero-team-photo::after {
  background:
    radial-gradient(circle at 64% 22%, rgba(139, 92, 246, 0.2), transparent 16rem),
    linear-gradient(180deg, transparent 56%, rgba(0, 0, 0, 0.34));
  mix-blend-mode: screen;
  opacity: 0.42;
}

.hero-team-photo picture,
.audience-photo picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

body.visual-editor-on .hero-team-photo[data-image-empty]::after,
body.visual-editor-on .audience-photo[data-image-empty]::after {
  z-index: 4;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255, 138, 42, 0.54);
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.76)),
    radial-gradient(circle at 50% 34%, rgba(139, 92, 246, 0.3), transparent 18rem);
  content: "Додати фото";
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  mix-blend-mode: normal;
  opacity: 1;
  text-transform: uppercase;
}

.hero-team-photo img {
  position: absolute;
  right: -2%;
  bottom: -1px;
  z-index: 1;
  width: 108%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  user-select: none;
  filter: saturate(1.08) contrast(1.08) brightness(1.22);
  transform: translateY(14px) scale(1.04);
}

.hero-team-badges {
  position: absolute;
  left: clamp(18px, 5vw, 48px);
  bottom: clamp(20px, 6vh, 46px);
  z-index: 3;
  display: grid;
  max-width: 420px;
  gap: 10px;
}

.hero-team-badges span {
  position: relative;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 9px 14px 9px 34px;
  color: #f5f3ff;
  background: rgba(9, 9, 12, 0.68);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 900;
}

.hero-team-badges span::before {
  position: absolute;
  left: 14px;
  color: var(--accent);
  content: "✓";
}

.hero-team-proof {
  position: absolute;
  top: clamp(24px, 8vh, 68px);
  right: clamp(12px, 4vw, 54px);
  z-index: 3;
  max-width: 260px;
  border: 1px solid rgba(139, 92, 246, 0.24);
  border-radius: 22px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(139, 92, 246, 0.18), rgba(255, 255, 255, 0.045)),
    rgba(10, 10, 14, 0.76);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
}

.hero-team-proof small {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-team-proof strong {
  display: block;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    var(--card);
  box-shadow: var(--shadow);
}

.hero-slider::before {
  position: absolute;
  inset: -1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.38), transparent 28%, transparent 70%, rgba(255, 255, 255, 0.12));
  mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  mask-composite: exclude;
  padding: 1px;
}

.hero-slider-viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 22px;
  touch-action: pan-y;
}

.hero-slider-track {
  display: flex;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-slider.is-dragging .hero-slider-track {
  transition: none;
}

.hero-slide {
  min-width: 100%;
}

.hero-photo {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: center;
  user-select: none;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 72% 18%, rgba(139, 92, 246, 0.34), transparent 16rem);
}

.hero-photo figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

.hero-photo figcaption span {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(139, 92, 246, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-photo figcaption strong {
  display: block;
  max-width: 360px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.analytics-card {
  position: relative;
  min-height: 420px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    var(--card);
}

.analytics-top,
.kpi-row,
.campaign-list div {
  position: relative;
  z-index: 1;
}

.analytics-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.analytics-top span,
.kpi-row span,
.campaign-list p,
.metrics dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.analytics-top strong {
  color: var(--accent);
  font-size: 14px;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.kpi-row div,
.campaign-list div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.22);
}

.kpi-row strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.chart {
  display: grid;
  height: 240px;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 10px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 100% 25%,
    rgba(0, 0, 0, 0.16);
}

.chart span {
  min-height: 24px;
  height: var(--h);
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #c4b5fd, var(--accent-dark));
  box-shadow: 0 10px 24px rgba(139, 92, 246, 0.28);
}

.campaign-list {
  display: grid;
  gap: 10px;
}

.campaign-list div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.campaign-list p {
  margin-bottom: 0;
}

.campaign-list strong {
  color: var(--text);
  font-size: 13px;
}

.status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38d878;
  box-shadow: 0 0 0 5px rgba(56, 216, 120, 0.12);
}

.growth-card {
  min-height: 420px;
  padding: 28px;
  background:
    radial-gradient(circle at 78% 20%, rgba(139, 92, 246, 0.44), transparent 16rem),
    linear-gradient(145deg, #1d1730, #0f0f12 58%);
}

.growth-card h3 {
  max-width: 360px;
  margin-bottom: 34px;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.growth-steps {
  display: grid;
  gap: 12px;
}

.growth-steps span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
  font-size: 14px;
  font-weight: 900;
}

.growth-steps span::after {
  color: var(--accent);
  content: "→";
}

.hero-slider-nav {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.hero-slider-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  font-size: 28px;
  line-height: 1;
}

.hero-slider-nav button:hover {
  border-color: rgba(139, 92, 246, 0.72);
  background: rgba(139, 92, 246, 0.18);
}

.hero-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-slider-dots button {
  width: 30px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
}

.hero-slider-dots button.is-active {
  background: var(--accent);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: 44px;
  margin-bottom: 38px;
}

.section-head.compact {
  display: block;
  max-width: 760px;
}

.section-head h2,
.trust h2,
.cta-box h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.section-head p:not(.eyebrow),
.trust-content p,
.cta-box p,
.footer p {
  color: var(--muted);
}

.cases {
  position: relative;
  overflow: visible;
  margin: 0;
  border-radius: clamp(42px, 5vw, 82px);
  background:
    radial-gradient(circle at 82% 6%, rgba(139, 92, 246, 0.18), transparent 24rem),
    linear-gradient(180deg, var(--light-block-soft), var(--light-block));
  color: #0c0c10;
}

.cases.section {
  padding-top: clamp(78px, 6vw, 108px);
  scroll-margin-top: 86px;
}

.blog {
  scroll-margin-top: 86px;
}

.firstSection__button {
  position: absolute;
  top: -62px;
  right: max(24px, calc((100vw - 1140px) / 2 + 10px));
  left: auto;
  z-index: 5;
  display: inline-flex;
  width: 126px;
  height: 126px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 50%;
  padding: 0 22px;
  color: #ffffff;
  cursor: pointer;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(135deg, #a855f7, #7c3aed 58%, #6d28d9);
  box-shadow: 0 26px 70px rgba(124, 58, 237, 0.38);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
  animation: auditFloat 4.2s ease-in-out infinite;
  transition:
    opacity 220ms ease,
    visibility 220ms ease,
    box-shadow 260ms ease,
    transform 260ms ease,
    filter 260ms ease;
}

.firstSection__button.is-floating-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  animation: none;
  transform: translateY(16px) scale(0.92);
}

.firstSection__button:hover {
  filter: saturate(1.08);
  box-shadow: 0 32px 86px rgba(124, 58, 237, 0.5);
  transform: translateY(-8px) scale(1.02);
}

.firstSection__button span {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  overflow: hidden;
}

.firstSection__button svg {
  grid-area: 1 / 1;
  transition: transform 260ms ease;
}

.firstSection__button svg:last-child {
  transform: translate(-100%, 100%);
}

.firstSection__button:hover svg:first-child {
  transform: translate(100%, -100%);
}

.firstSection__button:hover svg:last-child {
  transform: translate(0, 0);
}

.cases .section-head h2,
.services .section-head h2,
.team .section-head h2 {
  color: #0c0c10;
}

.cases .section-head p:not(.eyebrow),
.services .section-head p:not(.eyebrow),
.team .section-head p:not(.eyebrow) {
  color: #5f5d66;
}

.cases .eyebrow,
.services .eyebrow,
.team .eyebrow,
.reviews .eyebrow,
.qualification .eyebrow {
  color: #6d28d9;
  border-color: rgba(109, 40, 217, 0.38);
  background: rgba(109, 40, 217, 0.08);
}

.cases .section-head {
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.55fr);
  align-items: start;
  gap: 22px 48px;
  margin-bottom: 28px;
}

.cases .section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.cases .section-head h2 {
  max-width: 720px;
}

.cases .section-head p:not(.eyebrow) {
  max-width: 430px;
  padding-top: 10px;
  font-size: 16px;
  line-height: 1.65;
}

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

.case-card,
.service-card,
.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--card);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.case-card:hover,
.service-card:hover,
.team-card:hover {
  border-color: rgba(139, 92, 246, 0.38);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(-8px);
}

.case-card {
  min-height: 780px;
  background: linear-gradient(180deg, #1a1a1a, #101010);
}

.cases-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.8fr) minmax(260px, 0.68fr);
  gap: 22px;
  align-items: start;
  margin-top: 30px;
  border: 1px solid rgba(12, 12, 16, 0.12);
  border-radius: 26px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 60px rgba(12, 12, 16, 0.08);
}

.cases-proof h3 {
  max-width: 460px;
  margin: 0;
  color: #0c0c10;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.cases-proof > p {
  margin: 0;
  color: #55515f;
  font-size: 15px;
  line-height: 1.65;
}

.cases-proof ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cases-proof li {
  position: relative;
  padding-left: 22px;
  color: #24212b;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.cases-proof li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(139, 92, 246, 0.12);
}

.case-visual {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 16px;
  background-color: #202020;
}

.case-card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  filter: saturate(0.95) contrast(1.05);
}

.case-visual::before,
.case-visual::after {
  position: absolute;
  content: "";
}

.case-visual::before {
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 44px 44px;
}

.case-visual::after {
  right: 22px;
  bottom: 22px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 36%, #fff1, transparent 40%), var(--accent);
  opacity: 0.88;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.case-card:hover .case-visual::after {
  opacity: 1;
  transform: scale(1.12);
}

.case-visual-with-image::before {
  inset: 0;
  z-index: 1;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.86)),
    linear-gradient(90deg, rgba(139, 92, 246, 0.28), transparent 58%);
}

.case-visual-with-image::after {
  z-index: 2;
  opacity: 0.62;
  mix-blend-mode: screen;
}

.case-visual span {
  position: relative;
  z-index: 3;
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 10px;
  color: #ffffff;
  background: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-report {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  width: min(176px, 58%);
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 14px;
  background: rgba(8, 8, 8, 0.72);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.case-report small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-report strong {
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.case-report i {
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.case-report i::before {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #ffffff);
  content: "";
}

.case-report i:nth-of-type(2)::before {
  width: 58%;
}

.case-report i:nth-of-type(3)::before {
  width: 88%;
}

.case-visual-1 {
  background: linear-gradient(135deg, #281a4d, #151515 62%);
}

.case-visual-2 {
  background: linear-gradient(135deg, #303030, #20143f 62%);
}

.case-visual-3 {
  background: linear-gradient(135deg, #26211c, #111 58%);
}

.case-visual-4 {
  background: linear-gradient(135deg, #1c1c1c, #34156b 70%);
}

.case-body {
  padding: 22px;
}

.case-niche {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-body h3 {
  min-height: 58px;
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.case-proof {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.case-proof p {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 10px 12px;
  color: #c9c8d0;
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  line-height: 1.35;
}

.case-proof span {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-evidence {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.case-evidence li {
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 14px;
  padding: 10px 12px;
  color: #e7e6ee;
  background: rgba(139, 92, 246, 0.08);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.case-evidence span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metrics {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
}

.metrics div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.metrics dd {
  margin: 0;
  color: var(--text);
  font-weight: 900;
  text-align: right;
}

.case-body a,
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.case-body a::after,
.service-card a::after {
  content: "→";
}

.case-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 22px;
}

.case-tabs button {
  min-width: 150px;
  min-height: 58px;
  border: 1px solid rgba(12, 12, 16, 0.14);
  border-right-width: 0;
  padding: 0 28px;
  color: #3f3d45;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.case-tabs button:first-child {
  border-radius: 999px 0 0 999px;
}

.case-tabs button:last-child {
  border-right-width: 1px;
  border-radius: 0 999px 999px 0;
}

.case-tabs button.is-active {
  color: #ffffff;
  background: #111111;
}

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

.case-card {
  min-height: auto;
  border-color: var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: linear-gradient(180deg, #1a1a1a, #101010);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.case-card:hover {
  border-color: rgba(139, 92, 246, 0.38);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(-8px);
}

.case-card.is-hidden {
  display: none;
}

.case-card.is-filter-hidden,
.case-card.is-slider-hidden,
.blog-card.is-filter-hidden,
.blog-card.is-slider-hidden {
  display: none;
}

.case-visual {
  min-height: 204px;
  padding: 16px;
  background-color: #202020;
  background-size: cover;
  background-position: center;
}

.case-visual::before {
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 44px 44px;
}

.case-visual::after {
  display: none;
}

.case-visual span {
  color: #ffffff;
  background: var(--accent);
  backdrop-filter: none;
}

.case-visual-1 {
  background: linear-gradient(135deg, #281a4d, #151515 62%);
}

.case-visual-2 {
  background: linear-gradient(135deg, #303030, #20143f 62%);
}

.case-visual-3 {
  background: linear-gradient(135deg, #26211c, #111 58%);
}

.case-visual-4 {
  background:
    radial-gradient(circle at 72% 28%, rgba(139, 92, 246, 0.22), transparent 10rem),
    linear-gradient(135deg, #1c1c1c, #34156b 70%);
}

.case-body {
  padding: 28px 30px 30px;
}

.case-body h3 {
  min-height: 58px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: none;
}

.case-card-metrics {
  gap: 0;
  margin-bottom: 26px;
}

.case-card-metrics div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
}

.case-card-metrics dt {
  color: #a7a7a0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.case-card-metrics dd {
  margin: 0;
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  text-align: right;
}

.case-link {
  display: inline-flex;
  min-height: auto;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  color: var(--accent);
  font-size: 15px;
  font-weight: 900;
  background: transparent;
}

.case-link::after {
  margin-left: 8px;
  content: "→" !important;
}

.case-link:hover {
  color: #ffffff;
  background: transparent;
}

.case-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.case-slider button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(12, 12, 16, 0.2);
  border-radius: 50%;
  color: #0c0c10;
  background: #ffffff;
  cursor: pointer;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.case-slider button:not(:disabled):hover {
  transform: translateY(-2px);
}

.case-slider button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.case-slider span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(12, 12, 16, 0.12);
}

.case-slider span.is-active {
  background: var(--accent);
}

.case-slider .slider-count {
  display: inline-flex;
  width: auto;
  min-width: 54px;
  height: auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 13px;
  color: #0c0c10;
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 900;
}

.case-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.blog-slider {
  margin-top: 30px;
}

.all-cases-hero .eyebrow {
  margin-top: 18px;
}

.all-cases-intro {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.all-cases-section {
  padding: 78px 0 96px;
  background: #111111;
}

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

.case-detail-page {
  background: #111111;
}

.case-detail-hero {
  padding: 92px 0 70px;
  color: #ffffff;
  background:
    radial-gradient(circle at 76% 12%, rgba(139, 92, 246, 0.18), transparent 24rem),
    #111111;
}

.case-detail-hero .container,
.case-detail-shell .container,
.case-related .container {
  width: min(920px, calc(100% - 40px));
}

.case-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.case-back:hover {
  color: #ffffff;
}

.case-detail-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.92;
  text-transform: uppercase;
}

.case-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.case-detail-tags li {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
}

.case-detail-shell {
  overflow: hidden;
  border-radius: clamp(32px, 4vw, 56px) clamp(32px, 4vw, 56px) 0 0;
  padding: clamp(54px, 7vw, 86px) 0;
  color: #111116;
  background: #ffffff;
}

.case-detail-layout {
  display: grid;
  gap: clamp(42px, 6vw, 74px);
}

.case-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.9fr);
  gap: clamp(30px, 5vw, 58px);
  align-items: center;
}

.case-detail-grid.reverse .case-image {
  order: 2;
}

.case-image {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  border-radius: 14px;
  background-color: #141416;
  background-image:
    radial-gradient(circle at 72% 18%, rgba(139, 92, 246, 0.34), transparent 12rem),
    linear-gradient(135deg, #241842, #101012);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(139, 92, 246, 0.14);
}

.case-image::before,
.post-detail-visual::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 36px 36px;
}

.case-image::after,
.post-detail-visual::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(170px, 42%);
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--accent) 68%, rgba(255, 255, 255, 0.1) 68%) 16px 20px / calc(100% - 32px) 7px no-repeat,
    linear-gradient(90deg, #ffffff 48%, rgba(255, 255, 255, 0.1) 48%) 16px 36px / calc(100% - 32px) 7px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 78%, rgba(255, 255, 255, 0.1) 78%) 16px 52px / calc(100% - 32px) 7px no-repeat,
    rgba(8, 8, 8, 0.64);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.case-detail-section h2,
.case-start h2,
.case-results h2 {
  margin-bottom: 18px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.case-detail-section p,
.case-start p {
  margin: 0;
  color: #5f5d66;
  line-height: 1.65;
}

.case-start-grid,
.case-result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.case-start-grid div,
.case-result-grid div {
  border: 1px solid rgba(12, 12, 16, 0.12);
  border-radius: 4px;
  padding: 18px;
  text-align: center;
}

.case-start-grid span,
.case-result-grid span {
  display: block;
  margin-bottom: 10px;
  color: #4c4852;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-start-grid strong,
.case-result-grid strong {
  color: var(--accent);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.creative-row {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.7fr);
  gap: 36px;
  align-items: center;
  border-top: 1px solid rgba(12, 12, 16, 0.1);
  padding-top: 54px;
}

.creative-mockups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.creative-card {
  display: grid;
  min-height: 210px;
  align-content: end;
  border-radius: 14px;
  padding: 16px;
  color: #ffffff;
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.3), transparent 4rem),
    linear-gradient(145deg, #20143f, #111111);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}

.creative-card:nth-child(2) {
  background:
    radial-gradient(circle at 72% 34%, rgba(139, 92, 246, 0.52), transparent 5rem),
    linear-gradient(145deg, #1c1c1c, #7c3aed);
}

.case-related {
  padding: 70px 0;
  background: #111111;
}

.case-related h2 {
  margin-bottom: 28px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

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

.case-related-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.045);
}

.case-related-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-related-card strong {
  display: block;
  margin-top: 18px;
  font-size: 22px;
  line-height: 1;
}

.case-detail-cta {
  padding: 64px 0 88px;
  background: #111111;
}

.case-detail-cta-box {
  display: grid;
  justify-items: center;
  gap: 20px;
  border-radius: 32px;
  padding: clamp(34px, 5vw, 58px);
  color: #ffffff;
  text-align: center;
  background: #ffffff;
}

.case-detail-cta-box h2 {
  max-width: 620px;
  margin: 0;
  color: #111116;
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}

.case-detail-cta-box p {
  max-width: 520px;
  margin: 0;
  color: #5f5d66;
}

.logos {
  padding: 72px 0;
}

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

.logo-grid span {
  position: relative;
  display: grid;
  min-height: 86px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 24px;
  color: rgba(247, 247, 242, 0.62);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
  filter: grayscale(1);
  overflow: hidden;
}

.logo-grid span::before {
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: rgba(247, 247, 242, 0.5);
  box-shadow: 0 0 0 6px rgba(247, 247, 242, 0.045);
}

.logo-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.logo-grid small {
  display: block;
  margin-top: 5px;
  color: rgba(247, 247, 242, 0.36);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.services {
  overflow: hidden;
  margin: 0;
  border-radius: clamp(42px, 5vw, 82px);
  background:
    radial-gradient(circle at 18% 0%, rgba(139, 92, 246, 0.14), transparent 22rem),
    linear-gradient(180deg, #ffffff, var(--light-block));
  color: #0c0c10;
}

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

.service-card {
  min-height: 280px;
  padding: 24px;
}

.service-card.wide {
  grid-column: span 2;
}

.service-card span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.service-card p {
  min-height: 78px;
  margin-bottom: 22px;
  color: var(--muted);
}

.audience {
  background:
    radial-gradient(circle at 86% 12%, rgba(139, 92, 246, 0.18), transparent 22rem),
    #080808;
}

.audience .section-head {
  align-items: start;
}

.audience-head {
  grid-template-columns: minmax(340px, 0.58fr) minmax(0, 1fr);
  gap: clamp(38px, 5vw, 80px);
}

.audience-intro {
  display: grid;
  align-self: stretch;
  grid-template-rows: auto 1fr;
  gap: 28px;
  min-height: 420px;
}

.audience-copy {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 24px;
  padding-top: 8px;
}

.audience-photo {
  position: relative;
  overflow: hidden;
  min-height: clamp(260px, 23vw, 360px);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 30px;
  background: #101010;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.audience-photo::before,
.audience-photo::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.audience-photo::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 72% 20%, rgba(139, 92, 246, 0.22), transparent 18rem);
}

.audience-photo::after {
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: inherit;
}

.audience-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.05);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.audience-photo:hover img {
  transform: scale(1.045);
}

.audience .section-head h2 {
  max-width: 780px;
}

.audience .section-head p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.65;
}

.audience-cta {
  width: fit-content;
  justify-self: start;
}

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

.audience-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #111;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.audience-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 82% 16%, rgba(139, 92, 246, 0.18), transparent 10rem);
  opacity: 0;
  transition: opacity 260ms ease;
}

.audience-card:hover {
  border-color: rgba(139, 92, 246, 0.42);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
  transform: translateY(-8px);
}

.audience-card:hover::before {
  opacity: 1;
}

.audience-card > * {
  position: relative;
  z-index: 1;
}

.audience-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
}

.audience-card-top span,
.process-step span {
  display: inline-flex;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.audience-card-top i {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
    radial-gradient(circle, rgba(139, 92, 246, 0.5), rgba(139, 92, 246, 0.08));
}

.audience-card h3,
.process-step h3 {
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.audience-info {
  display: grid;
  gap: 10px;
}

.audience-info p,
.process-grid > div > p,
.process-step p {
  color: var(--muted);
}

.audience-info p {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  line-height: 1.48;
}

.audience-info b {
  color: #ffffff;
}

.audience-card strong {
  display: inline-flex;
  margin-top: 24px;
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 999px;
  padding: 9px 13px;
  color: #ffffff;
  background: rgba(139, 92, 246, 0.14);
  font-size: 14px;
  line-height: 1.35;
}

.qualification {
  overflow: hidden;
  margin: 0;
  border-radius: clamp(42px, 5vw, 82px);
  background:
    radial-gradient(circle at 18% 12%, rgba(139, 92, 246, 0.13), transparent 22rem),
    radial-gradient(circle at 88% 78%, rgba(139, 92, 246, 0.08), transparent 22rem),
    linear-gradient(180deg, #ffffff, var(--light-block));
  color: #0c0c10;
}

.qualification-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: start;
}

.qualification-copy {
  position: sticky;
  top: 110px;
}

.qualification-copy h2 {
  max-width: 720px;
  margin-bottom: 24px;
  color: #0c0c10;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.qualification-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 28px;
  color: #5f5d66;
  font-size: 18px;
  line-height: 1.65;
}

.qualification-panel,
.qualification-list,
.budget-grid {
  display: grid;
  gap: 14px;
}

.qualification-card,
.budget-card {
  border: 1px solid rgba(12, 12, 16, 0.1);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 60px rgba(12, 12, 16, 0.08);
}

.qualification-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
}

.qualification-card span,
.budget-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.qualification-card h3 {
  margin-bottom: 8px;
  color: #0c0c10;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.qualification-card p,
.budget-card p {
  margin: 0;
  color: #5f5d66;
  line-height: 1.55;
}

.qualification-card p {
  grid-column: 2;
}

.budget-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 8px;
}

.budget-card {
  min-height: 190px;
  padding: 22px;
}

.budget-card strong {
  display: block;
  margin: 14px 0 12px;
  color: #0c0c10;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.process {
  overflow: hidden;
  border-radius: clamp(42px, 5vw, 82px);
  background:
    radial-gradient(circle at 18% 0%, rgba(139, 92, 246, 0.22), transparent 24rem),
    radial-gradient(circle at 88% 72%, rgba(139, 92, 246, 0.12), transparent 22rem),
    #080808;
  color: var(--text);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(560px, 1.14fr);
  gap: clamp(44px, 4.8vw, 76px);
  align-items: center;
}

.process-grid h2 {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(36px, 4.8vw, 66px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.process-grid > div > p {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.process-cta {
  margin-top: 28px;
}

.process-steps {
  position: relative;
  display: grid;
  gap: clamp(14px, 1.3vw, 18px);
  counter-reset: process;
}

.process-steps::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 58px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.12), rgba(190, 164, 255, 0.56), rgba(139, 92, 246, 0.12));
  box-shadow: 0 0 22px rgba(139, 92, 246, 0.18);
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: clamp(18px, 1.8vw, 24px);
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  padding: 24px 26px;
  background:
    radial-gradient(circle at 92% 12%, rgba(139, 92, 246, 0.16), transparent 9rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.088), rgba(255, 255, 255, 0.035)),
    rgba(13, 12, 19, 0.92);
  box-shadow:
    0 22px 72px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.process-step:hover {
  border-color: rgba(167, 139, 250, 0.46);
  background:
    radial-gradient(circle at 92% 12%, rgba(139, 92, 246, 0.23), transparent 9rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04)),
    rgba(15, 13, 23, 0.96);
  box-shadow:
    0 26px 82px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(139, 92, 246, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
}

.process-step span {
  display: grid;
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 0;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #a855f7, #6d28d9);
}

.process-step h3 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.08;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.process-step strong {
  display: inline-flex;
  margin-top: 12px;
  border: 1px solid rgba(139, 92, 246, 0.32);
  border-radius: 999px;
  padding: 8px 12px;
  color: #f3edff;
  background: rgba(139, 92, 246, 0.14);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.trust {
  overflow: hidden;
  border-radius: clamp(42px, 5vw, 82px);
  background:
    radial-gradient(circle at 78% 0%, rgba(139, 92, 246, 0.12), transparent 22rem),
    linear-gradient(180deg, var(--light-block-soft), #eeebf5);
  color: #0c0c10;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 64px;
  align-items: start;
}

.trust-content {
  border: 1px solid rgba(12, 12, 16, 0.1);
  border-radius: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(12, 12, 16, 0.08);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.trust-stats div {
  border: 1px solid rgba(12, 12, 16, 0.08);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.trust-stats strong {
  display: block;
  color: var(--accent);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.trust-stats span {
  display: block;
  margin-top: 8px;
  color: #5f5d66;
  font-size: 13px;
}

.trust-content p {
  color: #5f5d66;
}

.audit-deliverables {
  overflow: hidden;
  border-radius: clamp(42px, 5vw, 82px);
  background:
    radial-gradient(circle at 82% 12%, rgba(139, 92, 246, 0.2), transparent 24rem),
    #080808;
  color: var(--text);
}

.audit-deliverables-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(460px, 1fr);
  gap: clamp(30px, 4vw, 54px);
  align-items: start;
}

.audit-copy {
  position: sticky;
  top: 112px;
}

.audit-copy h2,
.methodology-grid h2 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(36px, 4.8vw, 66px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.audit-copy p,
.methodology-grid > div:first-child p,
.methodology-formula p {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.audit-copy .btn {
  margin-top: 28px;
}

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

.audit-list article,
.methodology-steps article {
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #101010;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.audit-list span,
.methodology-steps span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent-2);
  font-weight: 900;
}

.audit-list h3,
.methodology-steps h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 25px;
  line-height: 1;
}

.audit-list p,
.methodology-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.audit-output {
  grid-column: 2;
  border: 1px solid rgba(139, 92, 246, 0.36);
  border-radius: 24px;
  padding: 24px;
  background: rgba(139, 92, 246, 0.12);
}

.audit-output strong,
.methodology-formula span {
  display: block;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-output ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audit-output li {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  padding: 10px 12px;
  color: #f6f1ff;
  background: rgba(0, 0, 0, 0.18);
  font-size: 13px;
  font-weight: 800;
}

.cta-section {
  padding-top: 48px;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: 56px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.44);
  border-radius: 32px;
  padding: clamp(32px, 5vw, 58px);
  background:
    radial-gradient(circle at 82% 14%, rgba(139, 92, 246, 0.48), transparent 18rem),
    linear-gradient(135deg, #171026, #0e0e0e 58%);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin-bottom: 18px;
}

.lead-form {
  display: grid;
  gap: clamp(14px, 1.45vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: clamp(18px, 2vw, 24px);
  background:
    radial-gradient(circle at 88% 0%, rgba(139, 92, 246, 0.16), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)),
    rgba(10, 9, 16, 0.82);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.form-value {
  border: 1px solid rgba(139, 92, 246, 0.26);
  border-radius: 18px;
  padding: 16px;
  background:
    radial-gradient(circle at 92% 20%, rgba(139, 92, 246, 0.18), transparent 8rem),
    rgba(139, 92, 246, 0.08);
}

.form-value strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.form-value p,
.form-note,
.form-consent {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.62;
}

.form-note {
  border-left: 2px solid rgba(139, 92, 246, 0.72);
  padding: 0 0 0 12px;
}

.form-consent {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.form-consent a {
  color: #ffffff;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(139, 92, 246, 0.7);
  text-underline-offset: 3px;
}

.form-status {
  margin: 0;
  border: 1px solid rgba(244, 63, 94, 0.38);
  border-radius: 14px;
  padding: 12px 14px;
  color: #ffe4e8;
  background: rgba(244, 63, 94, 0.12);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.form-status[hidden] {
  display: none;
}

.form-status[data-type="info"] {
  border-color: rgba(139, 92, 246, 0.34);
  color: #ffffff;
  background: rgba(139, 92, 246, 0.12);
}

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

.form-section {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.form-section-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.form-section-head strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: clamp(15px, 1vw, 16px);
  font-weight: 900;
  line-height: 1.25;
}

.form-section-head small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.form-check-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border-left: 2px solid rgba(139, 92, 246, 0.64);
  padding-left: 12px;
}

.form-check-note strong {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14.5px;
  font-weight: 900;
  line-height: 1.28;
}

.form-check-note small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}

.form-step-badge {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(139, 92, 246, 0.42);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(139, 92, 246, 0.32);
  font-size: 12px;
  font-weight: 900;
}

.lead-form label,
.lead-form fieldset {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
}

.lead-form fieldset {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}

.lead-form span,
.lead-form legend,
.lead-form small {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 800;
}

.lead-form label > span {
  color: rgba(255, 255, 255, 0.94);
  font-size: 13.5px;
  font-weight: 900;
  line-height: 1.4;
}

.lead-form small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  align-self: start;
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 0 17px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.25;
  outline: none;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  box-sizing: border-box;
  text-overflow: ellipsis;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

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

.lead-form textarea {
  min-height: 118px;
  padding: 15px 17px;
  resize: vertical;
}

.lead-form input[type="radio"],
.lead-form input[type="checkbox"] {
  width: auto;
  min-height: auto;
}

.lead-form fieldset label {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  border-color: rgba(167, 139, 250, 0.9);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 3px rgba(139, 92, 246, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lead-form input:hover,
.lead-form textarea:hover,
.lead-form select:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.11);
}

.lead-form input:focus-visible,
.lead-form textarea:focus-visible,
.lead-form select:focus-visible {
  outline-offset: 2px;
}

.lead-form button {
  width: 100%;
  margin-top: 6px;
  cursor: pointer;
}

.form-success {
  border: 1px solid rgba(139, 92, 246, 0.32);
  border-radius: 18px;
  padding: 18px;
  color: var(--text);
  background: rgba(139, 92, 246, 0.12);
  font-weight: 800;
}

.form-success p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.form-success .btn {
  width: auto;
  margin-top: 16px;
}

.form-success.is-warning {
  border-color: rgba(245, 158, 11, 0.42);
  background: rgba(245, 158, 11, 0.12);
}

.team {
  overflow: hidden;
  margin: 0;
  border-radius: clamp(42px, 5vw, 82px);
  background:
    radial-gradient(circle at 72% 0%, rgba(139, 92, 246, 0.15), transparent 22rem),
    linear-gradient(180deg, var(--light-block-soft), #eeeaf4);
  color: #0c0c10;
}

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

.team-card {
  padding: 12px 12px 20px;
}

.member-photo {
  position: relative;
  overflow: hidden;
  height: 290px;
  margin-bottom: 18px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 28%, rgba(0, 0, 0, 0.82)),
    image-set(
      url("/assets/hero-team-720.avif") type("image/avif"),
      url("/assets/hero-team-720.webp") type("image/webp"),
      url("/assets/hero-team.png") type("image/png")
    ) center bottom / cover no-repeat,
    #111;
}

.member-photo::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 30%, rgba(139, 92, 246, 0.16), transparent 38%);
}

.member-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-photo::after {
  display: none;
}

.member-1 {
  background-position: center, 8% bottom;
}

.member-2 {
  background-position: center, 34% bottom;
}

.member-3 {
  background-position: center, 58% bottom;
}

.member-4 {
  background-position: center, 86% bottom;
}

.team-card h3 {
  margin: 0 10px 5px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.team-card p {
  margin: 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.team-card span {
  display: block;
  margin: 8px 10px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.team {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 12%, rgba(139, 92, 246, 0.13), transparent 34rem),
    radial-gradient(circle at 100% 50%, rgba(139, 92, 246, 0.08), transparent 28rem),
    linear-gradient(180deg, var(--light-block-soft), #eeeaf4);
  color: #0c0c10;
}

.team::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 12, 16, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(12, 12, 16, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(circle at 50% 44%, #000, transparent 62%);
}

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

.team .section-head h2 {
  color: #0c0c10;
}

.team .section-head p:not(.eyebrow) {
  color: #5f5d66;
}

.team-carousel {
  position: relative;
  min-height: 640px;
  margin-top: clamp(34px, 5vw, 62px);
  touch-action: pan-y;
}

.team-stage {
  position: relative;
  height: 570px;
  overflow: visible;
  perspective: 1200px;
}

.team-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(370px, 72vw);
  padding: 14px 14px 24px;
  border: 1px solid rgba(12, 12, 16, 0.1);
  border-radius: 30px;
  color: #0c0c10;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 34px 90px rgba(12, 12, 16, 0.14);
  will-change: transform, opacity, filter;
  transition:
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 560ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
  cursor: pointer;
}

.team-slide:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 38px 100px rgba(12, 12, 16, 0.18);
}

.team-slide[data-position="0"] {
  z-index: 5;
  opacity: 1;
  filter: none;
  transform: translate(-50%, -50%) scale(1);
  cursor: default;
  pointer-events: auto;
}

.team-slide[data-position="-1"] {
  z-index: 4;
  opacity: 0.7;
  filter: blur(1.4px) saturate(0.82);
  transform: translate(calc(-50% - 300px), -50%) scale(0.78);
  pointer-events: auto;
}

.team-slide[data-position="1"] {
  z-index: 4;
  opacity: 0.7;
  filter: blur(1.4px) saturate(0.82);
  transform: translate(calc(-50% + 300px), -50%) scale(0.78);
  pointer-events: auto;
}

.team-slide[data-position="-2"] {
  z-index: 3;
  opacity: 0.38;
  filter: blur(3px) saturate(0.68);
  transform: translate(calc(-50% - 470px), -50%) scale(0.62);
  pointer-events: none;
}

.team-slide[data-position="2"] {
  z-index: 3;
  opacity: 0.38;
  filter: blur(3px) saturate(0.68);
  transform: translate(calc(-50% + 470px), -50%) scale(0.62);
  pointer-events: none;
}

.team-slide[data-position="hidden"] {
  z-index: 1;
  opacity: 0;
  filter: blur(6px);
  transform: translate(-50%, -50%) scale(0.48);
  pointer-events: none;
}

.team-slide .member-photo {
  height: 410px;
  margin-bottom: 20px;
  border-radius: 22px;
  background-size: cover, auto 118%;
  background-repeat: no-repeat, no-repeat;
}

.team-slide[data-position="0"] .member-photo {
  height: 430px;
}

.team-slide .member-photo::before {
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.7)),
    radial-gradient(circle at 50% 30%, rgba(139, 92, 246, 0.16), transparent 38%);
}

.member-5 {
  background-position: center, 98% bottom;
}

.team-slide h3 {
  margin: 0 14px 6px;
  color: #0c0c10;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.team-slide p {
  margin: 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.team-slide span {
  margin: 8px 14px 0;
  color: rgba(12, 12, 16, 0.66);
  font-size: 13px;
}

.team-nav {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(12, 12, 16, 0.14);
  border-radius: 50%;
  color: #0c0c10;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(12, 12, 16, 0.14);
  transform: translateY(-50%);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.team-nav:hover {
  border-color: rgba(139, 92, 246, 0.7);
  color: #ffffff;
  background: var(--accent);
  transform: translateY(-50%) scale(1.06);
}

.team-nav:focus-visible,
.team-dots button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.cookie-consent {
  position: fixed;
  left: clamp(16px, 4vw, 40px);
  right: clamp(16px, 4vw, 40px);
  bottom: clamp(16px, 4vw, 32px);
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  color: #f7f4ff;
  background: rgba(10, 10, 13, 0.94);
  border: 1px solid rgba(157, 100, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.cookie-consent p {
  margin: 0;
  max-width: 680px;
  color: rgba(247, 244, 255, 0.72);
  line-height: 1.45;
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tracking-debug-panel {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  width: min(330px, calc(100vw - 32px));
  padding: 14px;
  color: #f7f4ff;
  background: rgba(16, 14, 22, 0.96);
  border: 1px solid rgba(157, 100, 255, 0.5);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
  font-size: 0.78rem;
}

.tracking-debug-panel strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
}

.tracking-debug-panel dl {
  display: grid;
  gap: 6px;
  margin: 0 0 10px;
}

.tracking-debug-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.tracking-debug-panel dt,
.tracking-debug-panel dd {
  margin: 0;
}

.tracking-debug-panel dt {
  color: rgba(247, 244, 255, 0.62);
}

.tracking-debug-panel ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tracking-debug-panel li {
  display: flex;
  gap: 8px;
  color: rgba(247, 244, 255, 0.8);
}

.tracking-debug-panel li span {
  color: var(--accent);
}

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

  .cookie-consent__actions {
    justify-content: stretch;
  }

  .cookie-consent__actions .btn {
    flex: 1 1 150px;
  }
}

.team-prev {
  left: clamp(0px, 3vw, 42px);
}

.team-next {
  right: clamp(0px, 3vw, 42px);
}

.team-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.team-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(12, 12, 16, 0.18);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease, transform 220ms ease;
}

.team-dots button:hover {
  background: rgba(12, 12, 16, 0.34);
  transform: scale(1.15);
}

.team-dots button.is-active {
  width: 26px;
  background: var(--accent);
}

.forecast {
  background:
    radial-gradient(circle at 74% 28%, rgba(139, 92, 246, 0.22), transparent 24rem),
    #080808;
}

.forecast-box {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: center;
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 34px;
  padding: clamp(32px, 5vw, 60px);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.forecast-box h2,
.advantages h2,
.blog h2,
.cooperation h2,
.faq h2,
.reviews h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.8vw, 66px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.forecast-box p {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
}

.forecast-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.forecast-panel div {
  min-height: 130px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.24);
}

.forecast-panel span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.forecast-panel strong {
  display: block;
  margin-top: 14px;
  color: var(--text);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

/* Keep the main page rhythm alternating after the cases section: light, dark, light. */
.team {
  background:
    radial-gradient(circle at 52% 12%, rgba(139, 92, 246, 0.22), transparent 34rem),
    radial-gradient(circle at 100% 50%, rgba(139, 92, 246, 0.13), transparent 28rem),
    #080808;
  color: var(--text);
}

.team::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
}

.team .section-head h2 {
  color: var(--text);
}

.team .section-head p:not(.eyebrow) {
  color: var(--muted);
}

.team-dots button {
  background: rgba(255, 255, 255, 0.22);
}

.team-dots button:hover {
  background: rgba(255, 255, 255, 0.38);
}

.forecast {
  background:
    radial-gradient(circle at 74% 28%, rgba(139, 92, 246, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff, var(--light-block));
  color: #0c0c10;
}

.forecast-box {
  border-color: rgba(12, 12, 16, 0.1);
  background:
    radial-gradient(circle at 82% 14%, rgba(139, 92, 246, 0.14), transparent 18rem),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(12, 12, 16, 0.1);
}

.forecast-box h2 {
  color: #0c0c10;
}

.forecast-box p {
  color: #5f5d66;
}

.forecast-panel div {
  border-color: rgba(12, 12, 16, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 60px rgba(12, 12, 16, 0.08);
}

.forecast-panel span {
  color: #5f5d66;
}

.forecast-panel strong {
  color: #0c0c10;
}

.cpl-methodology {
  overflow: hidden;
  border-radius: clamp(42px, 5vw, 82px);
  background:
    radial-gradient(circle at 16% 8%, rgba(139, 92, 246, 0.12), transparent 22rem),
    linear-gradient(180deg, #ffffff, var(--light-block-soft));
  color: #0c0c10;
}

.methodology-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1fr);
  gap: clamp(30px, 4vw, 54px);
  align-items: start;
}

.methodology-grid .eyebrow {
  color: #6d28d9;
  border-color: rgba(109, 40, 217, 0.38);
  background: rgba(109, 40, 217, 0.08);
}

.methodology-grid h2 {
  color: #0c0c10;
}

.methodology-grid > div:first-child p,
.methodology-formula p {
  color: #5f5d66;
}

.methodology-steps {
  display: grid;
  gap: 14px;
}

.methodology-steps article {
  min-height: auto;
  color: var(--text);
}

.methodology-formula {
  grid-column: 1 / -1;
  border: 1px solid rgba(12, 12, 16, 0.1);
  border-radius: 26px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 60px rgba(12, 12, 16, 0.08);
}

.methodology-formula span {
  color: #6d28d9;
}

.methodology-formula strong {
  display: block;
  margin-bottom: 10px;
  color: #0c0c10;
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.advantages {
  overflow: hidden;
  border-radius: clamp(42px, 5vw, 82px);
  background:
    radial-gradient(circle at 16% 12%, rgba(139, 92, 246, 0.12), transparent 22rem),
    linear-gradient(180deg, #ffffff, var(--light-block));
  color: #0c0c10;
}

.advantages h2,
.faq h2,
.reviews h2 {
  color: #0c0c10;
}

.advantage-grid,
.blog-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.advantage-card,
.blog-card,
.review-card,
.faq-card {
  border: 1px solid rgba(12, 12, 16, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 60px rgba(12, 12, 16, 0.08);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.advantage-card:hover,
.blog-card:hover,
.review-card:hover,
.faq-card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 24px 70px rgba(12, 12, 16, 0.12);
  transform: translateY(-8px);
}

.advantage-card {
  min-height: 260px;
  padding: 26px;
}

.advantage-card span,
.blog-card span,
.review-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.advantage-card h3,
.blog-card h3,
.review-card h3 {
  margin-bottom: 14px;
  color: #0c0c10;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.advantage-card p,
.blog-card p,
.review-card p,
.faq-card p {
  margin-bottom: 0;
  color: #5f5d66;
}

.blog {
  background: #0b0b0b;
}

.blog.section {
  padding-top: 82px;
}

.blog h2 {
  color: var(--text);
}

.blog .section-head p:not(.eyebrow) {
  color: var(--muted);
}

.blog-card {
  overflow: hidden;
  background: #f8f7fb;
}

.blog-visual {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  margin-bottom: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(135deg, #20143f, #111);
  background-position: center;
  background-size: cover;
}

.blog-card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(0.94) contrast(1.06);
}

.blog-visual-with-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 28%, rgba(10, 10, 10, 0.68)),
    radial-gradient(circle at 78% 18%, rgba(139, 92, 246, 0.42), transparent 42%);
  content: "";
}

.blog-visual-2 {
  background:
    radial-gradient(circle at 72% 28%, rgba(139, 92, 246, 0.62), transparent 7rem),
    linear-gradient(135deg, #1f1f24, #0f0f12);
}

.blog-visual-3 {
  background:
    radial-gradient(circle at 24% 30%, rgba(255, 255, 255, 0.18), transparent 8rem),
    linear-gradient(135deg, #2a2048, #101010);
}

.blog-card span,
.blog-card h3,
.blog-card p,
.blog-card a {
  margin-left: 24px;
  margin-right: 24px;
}

.blog-card h3 {
  min-height: 76px;
}

.blog-card a {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.blog-card a::after {
  margin-left: 8px;
  content: "→";
}

.cooperation {
  overflow: hidden;
  border-radius: clamp(42px, 5vw, 82px);
  background:
    radial-gradient(circle at 80% 12%, rgba(139, 92, 246, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff, var(--light-block));
  color: #0c0c10;
}

.cooperation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: 60px;
  align-items: start;
}

.cooperation-grid > div > p {
  color: #5f5d66;
}

.cooperation-list {
  display: grid;
  gap: 12px;
}

.cooperation-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(12, 12, 16, 0.1);
  border-radius: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(12, 12, 16, 0.08);
}

.cooperation-card span {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px var(--accent-soft);
}

.cooperation-card p {
  margin: 0;
  color: #24242a;
  font-weight: 800;
}

.reviews {
  overflow: hidden;
  border-radius: clamp(42px, 5vw, 82px);
  background:
    radial-gradient(circle at 86% 0%, rgba(139, 92, 246, 0.14), transparent 22rem),
    linear-gradient(180deg, var(--light-block-soft), var(--light-block));
  color: #0c0c10;
}

.faq {
  position: relative;
  overflow: hidden;
  border-radius: clamp(42px, 5vw, 82px);
  padding-bottom: clamp(96px, 9vw, 140px);
  background:
    radial-gradient(circle at 86% 0%, rgba(139, 92, 246, 0.18), transparent 22rem),
    #080808;
  color: var(--text);
}

.reviews {
  position: relative;
  margin-top: 0;
  padding-top: clamp(86px, 7vw, 120px);
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(520px, 1fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
}

.faq-intro {
  max-width: 560px;
}

.faq-intro h2 {
  margin-bottom: 24px;
  color: var(--text);
}

.faq-intro p:not(.eyebrow) {
  max-width: 480px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.faq-intro .btn {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.faq-card {
  overflow: hidden;
  padding: 0;
  will-change: height;
  transition:
    height 380ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.faq-card[open] {
  border-color: rgba(139, 92, 246, 0.32);
  background: #ffffff;
  box-shadow: 0 26px 80px rgba(12, 12, 16, 0.12);
}

.faq-card:hover {
  transform: translateY(-4px);
}

.faq-card.is-animating {
  overflow: hidden;
}

.faq-card summary {
  display: grid;
  grid-template-columns: 1fr 40px;
  gap: 22px;
  align-items: center;
  min-height: 86px;
  padding: 22px 26px;
  color: #0c0c10;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  list-style: none;
  transition: color 220ms ease;
}

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

.faq-card summary::after {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(139, 92, 246, 0.08);
  content: "+";
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-card[open] summary::after {
  color: #ffffff;
  background: var(--accent);
  content: "-";
  transform: rotate(180deg);
}

.faq-card.is-closing {
  border-color: rgba(12, 12, 16, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 60px rgba(12, 12, 16, 0.08);
}

.faq-card.is-closing summary::after {
  color: var(--accent);
  background: rgba(139, 92, 246, 0.08);
  content: "+";
  transform: rotate(0deg);
}

.faq-card p {
  margin: 0;
  border-top: 1px solid rgba(12, 12, 16, 0.08);
  padding: 20px 82px 26px 26px;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 280ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  line-height: 1.65;
}

.faq-card[open] p {
  opacity: 1;
  transform: translateY(0);
}

.faq-card.is-closing p {
  opacity: 0;
  transform: translateY(-8px);
}

@media (prefers-reduced-motion: reduce) {
  .faq-card,
  .faq-card summary,
  .faq-card summary::after,
  .faq-card p {
    transition: none !important;
  }
}

/* Snapshot content shell: the public design is locked to the static template; these are only runtime states. */
.lead-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-feedback {
  min-height: 1.2em;
  margin: 0;
  font-size: 0.9rem;
}

.form-feedback-success {
  color: #28d17c;
}

.form-feedback-error {
  color: #ff7a7a;
}

.case-card.is-filtered-out {
  display: none;
}

.public-fallback {
  min-height: 100vh;
  display: grid;
  place-content: center;
  padding: 32px;
  text-align: center;
}

.reviews .section-head {
  margin-bottom: 34px;
}

.reviews .section-head p:not(.eyebrow) {
  color: #5f5d66;
}

.review-card {
  padding: 26px;
}

.rating {
  margin-bottom: 18px;
  color: #f6a700;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.review-card span {
  margin-bottom: 18px;
}

.review-result {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  color: #0c0c10;
  background: rgba(139, 92, 246, 0.12);
  font-size: 13px;
  font-weight: 900;
}

/* Testimonials section balance */
.public-shell .reviews.section,
.reviews.section.block-reviews {
  padding-block: 64px 76px;
}

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

.reviews .section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.54fr);
  align-items: end;
  gap: 12px clamp(34px, 4rem, 64px);
  max-width: none;
  margin-bottom: clamp(24px, 2.25rem, 36px);
}

.reviews .section-head .eyebrow {
  grid-column: 1;
  justify-self: start;
  align-self: start;
  margin: 0;
}

.reviews .section-head h2 {
  grid-column: 1;
  max-width: 760px;
  margin: 0;
  color: #0c0c10;
  font-size: clamp(42px, 4rem, 64px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
  overflow-wrap: break-word;
}

.reviews .section-head p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 470px;
  margin: 0;
  border: 1px solid rgba(109, 40, 217, 0.14);
  border-left-width: 3px;
  border-radius: 24px;
  padding: clamp(18px, 1.375rem, 22px) clamp(20px, 1.5rem, 24px);
  color: #484450;
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.11), transparent 9rem),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 48px rgba(20, 16, 35, 0.06);
  font-size: clamp(16px, 1.0625rem, 17px);
  line-height: 1.62;
}

.reviews .review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.5rem, 24px);
  align-items: stretch;
}

.reviews .review-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: clamp(330px, 22rem, 360px);
  overflow: hidden;
  border-color: rgba(109, 40, 217, 0.14);
  border-radius: 28px;
  padding: clamp(26px, 2rem, 32px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 255, 0.84)),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    0 22px 62px rgba(20, 16, 35, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.reviews .review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 14% 0%, rgba(139, 92, 246, 0.14), transparent 12rem),
    linear-gradient(145deg, rgba(139, 92, 246, 0.08), transparent 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.reviews .review-card:hover::before,
.reviews .review-card:nth-child(2)::before {
  opacity: 1;
}

.reviews .review-card:nth-child(2) {
  border-color: rgba(109, 40, 217, 0.34);
  box-shadow:
    0 26px 72px rgba(109, 40, 217, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.reviews .rating {
  margin-bottom: clamp(16px, 1.25rem, 20px);
  color: #e69a00;
  font-size: 17px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.reviews .review-card h3 {
  max-width: 100%;
  margin-bottom: 10px;
  font-size: clamp(22px, 1.625rem, 26px);
  letter-spacing: 0;
  line-height: 1.12;
  overflow-wrap: break-word;
}

.reviews .review-card span {
  margin-bottom: 16px;
  color: #6d28d9;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.reviews .review-result {
  align-self: flex-start;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 16px;
  border-color: rgba(109, 40, 217, 0.28);
  padding: 9px 13px;
  color: #4c1d95;
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.16), rgba(139, 92, 246, 0.08)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(109, 40, 217, 0.08);
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.25;
  overflow-wrap: anywhere;
  white-space: normal;
}

.reviews .review-card p {
  margin: 0;
  color: #403d46;
  font-size: 16px;
  line-height: 1.62;
}

@media (max-width: 980px) {
  .reviews > .container {
    width: min(100% - 32px, 1140px);
  }

  .public-shell .reviews.section,
  .reviews.section.block-reviews {
    padding-block: 64px;
  }

  .reviews .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
  }

  .reviews .section-head .eyebrow,
  .reviews .section-head h2,
  .reviews .section-head p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  .reviews .section-head h2 {
    max-width: 760px;
  }

  .reviews .section-head p:not(.eyebrow) {
    max-width: 680px;
  }

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

  .reviews .review-card {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .reviews > .container {
    width: min(100% - 24px, 1140px);
  }

  .public-shell .reviews.section,
  .reviews.section.block-reviews {
    padding-block: 56px 60px;
  }

  .reviews .section-head {
    margin-bottom: 22px;
  }

  .reviews .section-head h2 {
    font-size: clamp(36px, 2.75rem, 44px);
    line-height: 1.05;
  }

  .reviews .section-head p:not(.eyebrow) {
    border-radius: 20px;
    padding: 16px;
    font-size: 16px;
  }

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

  .reviews .review-card {
    min-height: auto;
    border-radius: 22px;
    padding: 22px;
  }

  .reviews .review-card h3 {
    font-size: 22px;
  }
}

.final-cta {
  padding-top: 48px;
  background:
    radial-gradient(circle at 18% 22%, rgba(139, 92, 246, 0.18), transparent 24rem),
    #080808;
}

.final-cta-box {
  border-color: rgba(139, 92, 246, 0.58);
}

.thank-you-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 10%, rgba(139, 92, 246, 0.2), transparent 26rem),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.06), transparent 22rem),
    var(--bg);
}

.thank-you {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
}

.thank-you-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.52fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.thank-you-copy h1 {
  max-width: 850px;
}

.thank-you-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.thank-you-panel {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(139, 92, 246, 0.34);
  border-radius: 30px;
  padding: 22px;
  background:
    radial-gradient(circle at 88% 12%, rgba(139, 92, 246, 0.28), transparent 14rem),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.thank-you-panel div {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 18px;
  background: rgba(5, 5, 5, 0.42);
}

.thank-you-panel span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.thank-you-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.thank-you-panel p {
  margin: 0;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 54px 0;
  background: #070707;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 42px;
}

.footer p {
  max-width: 320px;
  margin: 18px 0 0;
}

.footer small {
  display: block;
  max-width: 320px;
  margin-top: 10px;
  color: #8d8d86;
  font-size: 12px;
  font-weight: 700;
}

.footer nav,
.footer-contacts,
.footer-contacts div {
  display: grid;
  gap: 10px;
}

.footer a,
.footer-contacts p {
  margin: 0;
  color: #c4c4bb;
  font-size: 14px;
  font-weight: 700;
}

.post-detail-page {
  background: #111111;
}

.post-detail-hero {
  padding: 92px 0 78px;
  background:
    radial-gradient(circle at 76% 12%, rgba(139, 92, 246, 0.18), transparent 24rem),
    #111111;
}

.post-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  align-items: center;
  gap: clamp(32px, 5vw, 74px);
}

.post-detail-hero h1 {
  max-width: 900px;
  margin: 18px 0;
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.post-detail-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.post-date {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.post-detail-visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(135deg, #20143f, #111);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.post-detail-body {
  padding: 78px 0;
  background: #ffffff;
  color: #0c0c10;
}

.post-content {
  max-width: 820px;
}

.post-content p {
  margin: 0 0 24px;
  color: #2d2d32;
  font-size: 19px;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .header-cta {
    display: none;
  }

  .header-inner {
    justify-content: flex-start;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 30;
    display: grid;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    background: rgba(8, 8, 8, 0.96);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .site-header.nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 13px 14px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .section-head,
  .trust-grid,
  .cases-proof,
  .cta-box,
  .forecast-box,
  .audit-deliverables-grid,
  .methodology-grid,
  .cooperation-grid,
  .qualification-grid,
  .faq-shell,
  .process-grid,
  .thank-you-grid,
  .case-detail-grid,
  .creative-row,
  .post-detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 54px 0 58px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-team-visual {
    width: 100%;
    min-height: 360px;
    justify-self: stretch;
    margin-right: 0;
  }

  .hero-team-photo {
    inset: 0;
  }

  .hero-team-photo img {
    right: 0;
    width: 100%;
  }

  .cases.section {
    padding-top: 82px;
  }

  .cases .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 36px;
  }

  .cases .section-head p:not(.eyebrow) {
    max-width: 640px;
    padding-top: 0;
  }

  .case-grid,
  .team-grid,
  .audience-grid,
  .advantage-grid,
  .blog-grid,
  .faq-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-detail-grid.reverse .case-image {
    order: initial;
  }

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

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

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

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

  .forecast-box,
  .cooperation-grid {
    gap: 30px;
  }

  .audit-copy {
    position: static;
  }

  .audit-output,
  .methodology-formula {
    grid-column: auto;
  }

  .qualification-copy {
    position: static;
  }

  .audience-intro {
    min-height: auto;
  }

  .audience-photo {
    min-height: 260px;
  }

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

  .firstSection__button {
    top: -54px;
    width: 112px;
    height: 112px;
    font-size: 11px;
  }

  .team-carousel {
    min-height: 590px;
  }

  .team-stage {
    height: 520px;
  }

  .team-slide {
    width: min(330px, 70vw);
  }

  .team-slide .member-photo,
  .team-slide[data-position="0"] .member-photo {
    height: 380px;
  }

  .team-slide[data-position="-1"] {
    transform: translate(calc(-50% - 220px), -50%) scale(0.72);
  }

  .team-slide[data-position="1"] {
    transform: translate(calc(-50% + 220px), -50%) scale(0.72);
  }

  .team-slide[data-position="-2"] {
    transform: translate(calc(-50% - 380px), -50%) scale(0.56);
  }

  .team-slide[data-position="2"] {
    transform: translate(calc(-50% + 380px), -50%) scale(0.56);
  }

  .team-prev {
    left: 10px;
  }

  .team-next {
    right: 10px;
  }
}

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

  .section {
    padding: 70px 0;
  }

  html {
    scroll-padding-top: 68px;
  }

  .header-inner {
    min-height: 58px;
    gap: 12px;
  }

  .logo {
    gap: 8px;
    font-size: 14px;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background-size: 28px auto;
  }

  .header-cta {
    order: 2;
    display: inline-flex;
    min-height: 36px;
    max-width: 98px;
    margin-left: auto;
    padding: 0 12px;
    overflow: hidden;
    font-size: 0;
  }

  .header-cta::after {
    content: "Прогноз";
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
  }

  .nav-toggle {
    order: 3;
    min-width: 78px;
    height: 36px;
    margin-left: 0;
    padding: 0 10px;
  }

  .language-switcher {
    display: none;
  }

  .site-header.nav-open .language-switcher {
    --language-item-width: 34px;
    --language-item-height: 34px;
    --language-pad: 3px;
    position: absolute;
    top: calc(100% + 18px);
    right: 10px;
    z-index: 31;
    display: inline-grid;
  }

  .site-header.nav-open .nav {
    padding-top: 56px;
  }

  .site-header.nav-open .language-switcher a {
    font-size: 10px;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 12px;
    font-size: clamp(28px, 7.2vw, 34px);
    letter-spacing: 0;
    line-height: 1.08;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .hero {
    min-height: auto;
    padding: 22px 0 22px;
  }

  .hero-grid {
    align-content: start;
    gap: 16px;
  }

  .hero-content {
    max-width: 100%;
    min-width: 0;
  }

  .hero .eyebrow {
    margin-bottom: 9px;
    padding: 6px 9px;
    font-size: 9px;
    white-space: normal;
  }

  .hero-text {
    max-width: 100%;
    min-width: 0;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.42;
    overflow-wrap: break-word;
  }

  .hero-actions {
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }

  .hero-trust {
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1.35;
  }

  .hero-actions .btn {
    width: auto;
    min-height: 44px;
    padding: 0 16px;
  }

  .hero-actions .btn-primary {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: center;
    white-space: normal;
  }

  .hero-actions .btn-secondary {
    min-height: auto;
    border: 0;
    padding: 3px 0;
    color: #b794ff;
    background: transparent;
    box-shadow: none;
  }

  .hero-points {
    display: grid;
    gap: 6px;
  }

  .hero-points li {
    width: fit-content;
    padding: 6px 10px 6px 28px;
    font-size: 11px;
  }

  .hero-team-visual {
    min-height: clamp(188px, 52vw, 236px);
  }

  .hero-team-glow {
    inset: 8% -6% 6% 12%;
  }

  .hero-team-photo {
    border-radius: 26px;
  }

  .hero-team-photo::before {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.6), transparent 48%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.58) 88%);
  }

  .hero-team-photo img {
    right: -10%;
    width: 120%;
    transform: translateY(6px) scale(1.01);
  }

  .hero-team-proof {
    display: none;
  }

  .hero-team-badges {
    right: 14px;
    bottom: 12px;
    left: 14px;
    max-width: none;
    gap: 6px;
  }

  .hero-team-badges span {
    max-width: 100%;
    padding: 7px 10px 7px 28px;
    font-size: 10px;
  }

  .hero-team-badges span:nth-child(n + 3) {
    display: none;
  }

  .cases.section {
    padding-top: 36px;
  }

  .cases .section-head {
    gap: 14px;
    margin-bottom: 28px;
  }

  .hero-points {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-showcase {
    padding: 10px;
    border-radius: 24px;
  }

  .hero-showcase-frame {
    min-height: 360px;
  }

  .hero-showcase-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .hero-showcase-caption strong {
    font-size: 24px;
  }

  .firstSection__button {
    display: none;
  }

  .firstSection__button.is-floating-hidden {
    display: none;
  }

  .firstSection__button span,
  .firstSection__button svg {
    width: 28px;
    height: 28px;
  }

  .audience-head {
    gap: 28px;
  }

  .audience-photo {
    min-height: 210px;
    border-radius: 22px;
  }

  .kpi-row,
  .case-grid,
  .service-grid,
  .cases-proof,
  .trust-stats,
  .team-grid,
  .forecast-panel,
  .audit-list,
  .audit-output ul,
  .methodology-grid,
  .audience-grid,
  .advantage-grid,
  .blog-grid,
  .cooperation-grid,
  .budget-grid,
  .faq-grid,
  .review-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .case-tabs {
    gap: 8px;
  }

  .case-tabs button,
  .case-tabs button:first-child,
  .case-tabs button:last-child {
    min-width: 0;
    flex: 1 1 calc(50% - 8px);
    border-right-width: 1px;
    border-radius: 999px;
  }

  .case-start-grid,
  .case-result-grid,
  .case-related-grid,
  .creative-mockups {
    grid-template-columns: 1fr;
  }

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

  .process-step {
    grid-template-columns: 64px 1fr;
    gap: 16px;
  }

  .faq {
    padding-bottom: 88px;
  }

  .reviews {
    margin-top: 0;
    padding-top: 96px;
  }

  .faq-shell {
    gap: 30px;
  }

  .faq-intro p:not(.eyebrow) {
    font-size: 16px;
  }

  .faq-card summary {
    grid-template-columns: 1fr 34px;
    min-height: auto;
    padding: 20px;
    font-size: 18px;
  }

  .faq-card summary::after {
    width: 34px;
    height: 34px;
    font-size: 21px;
  }

  .faq-card p {
    padding: 18px 20px 22px;
  }

  .process-steps::before {
    left: 52px;
  }

  .service-card.wide {
    grid-column: auto;
  }

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

  .chart {
    height: 190px;
  }

  .campaign-list div {
    grid-template-columns: auto 1fr;
  }

  .campaign-list strong {
    grid-column: 2;
  }

  .team-carousel {
    min-height: 530px;
    margin-top: 30px;
  }

  .team-stage {
    height: 470px;
  }

  .team-slide {
    width: min(280px, 76vw);
    padding: 10px 10px 20px;
    border-radius: 24px;
  }

  .team-slide .member-photo,
  .team-slide[data-position="0"] .member-photo {
    height: 330px;
    border-radius: 18px;
  }

  .team-slide[data-position="-1"] {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.9);
  }

  .team-slide[data-position="1"] {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.9);
  }

  .team-slide[data-position="-2"],
  .team-slide[data-position="2"] {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.45);
  }

  .team-slide h3 {
    font-size: 21px;
  }

  .team-nav {
    top: auto;
    bottom: 12px;
    width: 46px;
    height: 46px;
    transform: none;
  }

  .team-nav:hover {
    transform: scale(1.04);
  }

  .team-prev {
    left: calc(50% - 58px);
  }

  .team-next {
    right: calc(50% - 58px);
  }

  .team-dots {
    margin-top: 8px;
  }
}

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

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

  .js-ready [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* Final visual polish */
.cases.section,
.services.section,
.qualification.section,
.forecast.section,
.cpl-methodology.section,
.advantages.section,
.cooperation.section,
.reviews.section {
  padding-block: clamp(82px, 7vw, 118px);
}

/* CMS detail pages */
.cms-detail-page {
  min-height: 100vh;
  color: #f7f3ff;
  background: #050505;
}

.cms-detail-header {
  position: sticky;
  top: 0;
  z-index: 20;
}

.cms-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.cms-breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.cms-breadcrumbs strong {
  color: #ffffff;
}

.case-detail-hero,
.blog-detail-article {
  padding-top: 140px;
  background:
    radial-gradient(circle at 78% 18%, rgba(139, 92, 246, 0.34), transparent 28%),
    #050505;
}

.case-detail-hero-grid,
.blog-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 48px;
  align-items: center;
}

.case-detail-hero-copy h1,
.blog-detail-header h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.92;
}

.case-detail-hero-copy > p,
.blog-detail-header > p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 22px);
}

.case-detail-cover,
.blog-detail-cover {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: #111;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.case-detail-cover img,
.blog-detail-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cms-detail-section {
  padding: 92px 0;
}

.cms-detail-section:nth-of-type(even) {
  color: #121212;
  background: #f4f1ec;
  border-radius: clamp(42px, 5vw, 82px);
}

.cms-detail-grid,
.case-detail-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cms-detail-grid article,
.case-detail-metrics article {
  min-height: 150px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.cms-detail-section:nth-of-type(even) .cms-detail-grid article,
.cms-detail-section:nth-of-type(even) .case-detail-metrics article {
  background: #ffffff;
  box-shadow: 0 22px 50px rgba(20, 16, 35, 0.08);
}

.cms-detail-copy {
  display: grid;
  gap: 18px;
  max-width: 860px;
  color: inherit;
}

.cms-detail-copy p,
.cms-detail-copy li,
.blog-detail-body {
  color: inherit;
  font-size: 18px;
  line-height: 1.65;
}

.cms-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.cms-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  object-fit: cover;
}

.blog-detail-meta,
.blog-detail-header .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.blog-detail-meta span,
.blog-detail-header .tag-row span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.74);
}

.blog-detail-body {
  grid-column: 1 / -1;
  max-width: 840px;
  white-space: pre-line;
}

.related-case-card {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 900px) {
  .case-detail-hero-grid,
  .blog-detail-grid,
  .cms-detail-grid,
  .case-detail-metrics,
  .cms-gallery {
    grid-template-columns: 1fr;
  }

  .case-detail-hero,
  .blog-detail-article {
    padding-top: 112px;
  }
}

.cases > .container,
.services > .container,
.qualification > .container,
.forecast > .container,
.cpl-methodology > .container,
.advantages > .container,
.cooperation > .container,
.reviews > .container,
.faq > .container,
.final-cta > .container {
  width: min(1160px, calc(100% - 40px));
}

.hero-grid {
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
}

.hero-content {
  align-self: center;
}

.hero-actions {
  gap: 12px;
  margin-top: 26px;
  margin-bottom: 16px;
}

.hero-team-visual {
  align-self: center;
  justify-self: end;
}

.hero-team-badges {
  gap: 8px;
}

.case-tabs {
  margin-bottom: 26px;
}

.case-grid,
.service-grid,
.audience-grid,
.advantage-grid,
.review-grid,
.budget-grid {
  align-items: stretch;
}

.case-card,
.service-card,
.audience-card,
.advantage-card,
.review-card,
.budget-card {
  height: 100%;
}

.case-card {
  display: flex;
  flex-direction: column;
}

.case-visual {
  min-height: clamp(176px, 15vw, 226px);
}

.case-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 2.4vw, 30px);
}

.case-card-metrics {
  margin-bottom: 22px;
}

.case-link {
  margin-top: auto;
}

.cases-proof {
  align-items: center;
  margin-top: clamp(24px, 3vw, 38px);
  padding: clamp(24px, 3vw, 34px);
}

.service-grid {
  gap: clamp(14px, 2vw, 22px);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.service-card p {
  min-height: 0;
}

.service-card a {
  margin-top: auto;
}

@media (min-width: 981px) {
  .service-card.wide {
    grid-column: 2 / span 2;
  }
}

.audience-head {
  align-items: center;
}

.audience-copy {
  max-width: 640px;
}

.audience-grid {
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(34px, 4vw, 54px);
}

.audience-card {
  display: flex;
  flex-direction: column;
  min-height: clamp(330px, 28vw, 390px);
}

.audience-card-top {
  margin-bottom: 28px;
}

.audience-card strong {
  margin-top: auto;
}

.qualification-grid,
.forecast-box,
.final-cta-box {
  align-items: center;
}

.qualification-panel,
.forecast-panel,
.lead-form {
  box-shadow: 0 24px 70px rgba(12, 12, 16, 0.1);
}

.qualification-list,
.budget-grid,
.forecast-panel,
.form-grid {
  gap: 14px;
}

.budget-card {
  display: grid;
  align-content: start;
  gap: 8px;
}

.process-grid {
  align-items: center;
  gap: clamp(38px, 6vw, 86px);
}

.process-steps {
  gap: 14px;
}

.process-step {
  align-items: start;
  padding: clamp(18px, 2.2vw, 24px);
}

.trust-grid,
.methodology-grid {
  align-items: center;
}

.trust-stats article,
.methodology-steps article,
.audit-output,
.methodology-formula {
  box-shadow: 0 20px 60px rgba(12, 12, 16, 0.08);
}

.audit-output {
  align-self: center;
}

.methodology-formula {
  display: grid;
  gap: 8px;
}

.cta-box {
  gap: clamp(30px, 5vw, 68px);
}

.lead-form {
  gap: 16px;
}

.form-section {
  gap: 14px;
}

.team-carousel {
  margin-top: clamp(26px, 4vw, 46px);
  margin-bottom: 12px;
}

.team-slide[data-position="0"] {
  box-shadow: 0 28px 90px rgba(139, 92, 246, 0.28);
}

.team-slide[data-position="-1"],
.team-slide[data-position="1"] {
  opacity: 0.78;
  filter: saturate(0.94) brightness(0.9);
}

.team-slide[data-position="-2"],
.team-slide[data-position="2"] {
  opacity: 0.48;
  filter: saturate(0.85) brightness(0.82);
}

.review-grid {
  gap: clamp(16px, 2vw, 22px);
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: clamp(24px, 3vw, 34px);
}

.review-result {
  margin-top: auto;
  margin-bottom: 14px;
}

.faq-shell {
  align-items: center;
}

.faq-grid {
  gap: 14px;
}

.faq-card summary {
  min-height: 72px;
}

.final-cta-box {
  padding-block: clamp(34px, 5vw, 60px);
}

.footer-grid {
  align-items: center;
}

@media (max-width: 980px) {
  .cases > .container,
  .services > .container,
  .qualification > .container,
  .forecast > .container,
  .cpl-methodology > .container,
  .advantages > .container,
  .cooperation > .container,
  .reviews > .container,
  .faq > .container,
  .final-cta > .container {
    width: min(100% - 32px, 1140px);
  }

  .hero-grid,
  .audience-head,
  .qualification-grid,
  .process-grid,
  .trust-grid,
  .methodology-grid,
  .forecast-box,
  .cooperation-grid,
  .faq-shell,
  .final-cta-box {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .section-head,
  .audience-copy,
  .qualification-copy,
  .faq-intro {
    width: 100%;
    max-width: none;
  }

  .hero-team-visual,
  .audience-photo,
  .audit-output {
    justify-self: center;
    width: 100%;
  }

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

  .service-card.wide {
    grid-column: span 2;
  }

  .cases-proof {
    grid-template-columns: 1fr;
  }

  .team-stage {
    height: 520px;
  }
}

@media (max-width: 720px) {
  .cases.section,
  .services.section,
  .qualification.section,
  .forecast.section,
  .cpl-methodology.section,
  .advantages.section,
  .cooperation.section,
  .reviews.section,
  .faq.section,
  .final-cta.section {
    padding-block: 64px;
  }

  .hero {
    padding-top: 94px;
  }

  .hero-actions {
    gap: 10px;
  }

  .case-grid,
  .service-grid,
  .audience-grid,
  .advantage-grid,
  .blog-grid,
  .review-grid,
  .budget-grid,
  .forecast-panel,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card.wide {
    grid-column: auto;
  }

  .case-card,
  .service-card,
  .audience-card,
  .review-card {
    min-height: auto;
  }

  .case-visual {
    min-height: 184px;
  }

  .cases-proof,
  .methodology-formula,
  .audit-output,
  .lead-form,
  .final-cta-box {
    padding: 22px;
  }

  .team-carousel {
    min-height: 510px;
  }

  .team-stage {
    height: 450px;
  }

  .team-slide[data-position="0"] {
    width: min(286px, 82vw);
  }

  .review-result {
    margin-top: 18px;
  }

  .faq-card summary {
    min-height: auto;
    padding: 20px;
  }

  .footer-grid {
    gap: 22px;
  }
}

@media (max-width: 430px) {
  .hero-team-visual {
    min-height: 360px;
  }

  .hero-team-badges {
    bottom: 18px;
  }

  .case-tabs button,
  .case-tabs button:first-child,
  .case-tabs button:last-child {
    flex-basis: 100%;
  }

  .case-body,
  .service-card,
  .audience-card,
  .qualification-card,
  .review-card {
    padding: 20px;
  }

  .team-slide .member-photo,
  .team-slide[data-position="0"] .member-photo {
    height: 315px;
  }
}

/* Screenshot-paired block polish */
.trust.section {
  padding-block: clamp(92px, 7vw, 128px);
}

.trust .trust-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.9fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.trust .trust-grid > div:first-child {
  max-width: 680px;
}

.trust .trust-grid > div:first-child h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.92;
}

.trust .trust-content {
  padding: clamp(28px, 3.5vw, 42px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.12), transparent 12rem),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 80px rgba(20, 16, 35, 0.1);
}

.trust .trust-content > p {
  margin-bottom: 24px;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
}

.trust .trust-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(12, 12, 16, 0.1);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.1), transparent 11rem),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 26px 80px rgba(20, 16, 35, 0.09);
}

.trust .trust-stat,
.trust .trust-stats article {
  display: grid;
  min-height: 146px;
  align-content: start;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(12, 12, 16, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.trust .trust-stat strong,
.trust .trust-stats article strong {
  font-size: clamp(32px, 3vw, 42px);
  line-height: 0.95;
}

.trust .trust-stat span,
.trust .trust-stats article span {
  max-width: 130px;
  line-height: 1.45;
}

.audit-deliverables.section {
  padding-block: clamp(104px, 8vw, 142px);
}

.audit-deliverables .audit-deliverables-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.08fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
}

.audit-deliverables .audit-copy {
  position: static;
  max-width: 600px;
}

.audit-deliverables .audit-copy h2 {
  max-width: 590px;
  font-size: clamp(52px, 6.4vw, 88px);
  line-height: 0.9;
}

.audit-deliverables .audit-copy .section-lead {
  max-width: 560px;
  margin-top: 20px;
}

.audit-deliverables .audit-list {
  gap: 16px;
  align-items: stretch;
}

.audit-deliverables .deliverables-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.audit-deliverables .audit-list article,
.audit-deliverables .deliverables-list .deliverable-card {
  display: grid;
  min-height: 236px;
  align-content: start;
  padding: clamp(24px, 2.4vw, 32px);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #101010;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.audit-deliverables .audit-list span,
.audit-deliverables .deliverables-list .deliverable-card span {
  margin-bottom: clamp(26px, 3vw, 42px);
  color: var(--accent-2);
  font-weight: 900;
}

.audit-deliverables .audit-list h3,
.audit-deliverables .deliverables-list .deliverable-card h3 {
  max-width: 230px;
  font-size: clamp(24px, 2.3vw, 31px);
  line-height: 1;
}

.audit-deliverables .deliverables-list .deliverable-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.audit-deliverables .audit-output {
  width: 100%;
  align-self: end;
  margin-top: 4px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(139, 92, 246, 0.08)),
    rgba(18, 10, 32, 0.72);
}

.audit-deliverables .audit-output strong {
  margin-bottom: 20px;
}

.audit-deliverables .audit-output ul {
  gap: 12px;
}

.audit-deliverables .audit-output li {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 12px 16px;
}

.cpl-methodology.section {
  padding-block: clamp(96px, 7.4vw, 132px);
}

.cpl-methodology .methodology-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.cpl-methodology .methodology-grid > div:first-child {
  max-width: 610px;
}

.cpl-methodology .methodology-steps {
  gap: 16px;
}

.cpl-methodology .methodology-steps article {
  display: grid;
  min-height: 158px;
  align-content: center;
  padding: clamp(26px, 2.8vw, 34px);
  border-radius: 26px;
}

.cpl-methodology .methodology-steps span {
  margin-bottom: 20px;
}

.cpl-methodology .methodology-formula {
  padding: clamp(30px, 4vw, 46px);
  border-radius: 30px;
}

.cpl-methodology .methodology-formula span {
  margin-bottom: 18px;
  color: #6d28d9;
  font-size: 13px;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cpl-methodology .methodology-formula strong {
  max-width: none;
  margin: 0 0 14px;
  color: #0c0c10;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.cpl-methodology .methodology-formula p {
  max-width: 720px;
  margin: 0;
  color: #5f5d66;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
}

.advantages .section-head {
  max-width: 920px;
}

.advantages .section-head h2 {
  max-width: 900px;
}

.advantages .advantages-grid {
  gap: clamp(16px, 2vw, 24px);
}

.advantages .advantage-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 270px;
  padding: clamp(26px, 2.8vw, 34px);
}

.advantages .advantage-card span {
  margin-bottom: clamp(30px, 4vw, 48px);
}

.advantages .advantage-card h3 {
  max-width: 260px;
  font-size: clamp(24px, 2.15vw, 30px);
}

.advantages .advantage-card p {
  max-width: 310px;
  line-height: 1.6;
}

.forecast.section {
  padding-block: clamp(88px, 7vw, 128px);
}

.forecast > .container.forecast-box {
  width: min(980px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
  gap: clamp(32px, 5vw, 62px);
  padding: clamp(34px, 5vw, 62px);
}

.forecast .forecast-box h2 {
  max-width: 610px;
  font-size: clamp(48px, 5.4vw, 76px);
}

.forecast .forecast-box .section-lead {
  max-width: 560px;
  margin-bottom: 24px;
}

.forecast .forecast-panel {
  gap: 14px;
  align-content: center;
}

.forecast .forecast-panel div {
  display: grid;
  min-height: 132px;
  align-content: center;
  padding: 22px;
  border-radius: 20px;
}

.forecast .forecast-panel strong {
  font-size: clamp(25px, 2.4vw, 34px);
}

.cooperation.section {
  padding-block: clamp(90px, 7vw, 128px);
}

.cooperation .cooperation-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: clamp(48px, 7vw, 90px);
  align-items: center;
}

.cooperation .cooperation-grid > div:first-child {
  max-width: 670px;
}

.cooperation .cooperation-grid h2 {
  max-width: 650px;
  font-size: clamp(50px, 5.9vw, 82px);
  line-height: 0.92;
}

.cooperation .cooperation-grid .section-lead {
  max-width: 570px;
}

.cooperation .cooperation-list {
  max-width: 540px;
  gap: 14px;
  justify-self: stretch;
}

.cooperation .cooperation-card {
  min-height: 68px;
  align-items: center;
  padding: 18px 22px;
  border-radius: 18px;
}

.cooperation .cooperation-card span {
  align-self: center;
  margin-top: 0;
}

@media (max-width: 980px) {
  .trust .trust-grid,
  .audit-deliverables .audit-deliverables-grid,
  .cpl-methodology .methodology-grid,
  .forecast > .container.forecast-box,
  .cooperation .cooperation-grid {
    grid-template-columns: 1fr;
  }

  .trust .trust-grid > div:first-child,
  .audit-deliverables .audit-copy,
  .cpl-methodology .methodology-grid > div:first-child,
  .forecast .forecast-box h2,
  .cooperation .cooperation-grid > div:first-child {
    max-width: none;
  }

  .audit-deliverables .audit-output {
    grid-column: 1;
  }

  .forecast > .container.forecast-box {
    width: min(100% - 32px, 980px);
  }

  .cooperation .cooperation-list {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .trust.section,
  .audit-deliverables.section,
  .cpl-methodology.section,
  .forecast.section,
  .cooperation.section {
    padding-block: 64px;
  }

  .trust .trust-grid,
  .audit-deliverables .audit-deliverables-grid,
  .cpl-methodology .methodology-grid,
  .forecast > .container.forecast-box,
  .cooperation .cooperation-grid {
    gap: 28px;
  }

  .trust .trust-content,
  .forecast > .container.forecast-box,
  .cpl-methodology .methodology-formula {
    padding: 24px;
  }

  .trust .trust-stats,
  .audit-deliverables .audit-list,
  .audit-deliverables .deliverables-list,
  .audit-deliverables .audit-output ul,
  .forecast .forecast-panel {
    grid-template-columns: 1fr;
  }

  .trust .trust-stat,
  .trust .trust-stats article,
  .audit-deliverables .audit-list article,
  .audit-deliverables .deliverables-list .deliverable-card,
  .advantages .advantage-card {
    min-height: auto;
  }

  .audit-deliverables .audit-copy h2,
  .cpl-methodology .methodology-grid h2,
  .cooperation .cooperation-grid h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .cpl-methodology .methodology-formula p {
    font-size: clamp(26px, 8vw, 36px);
  }

  .forecast .forecast-box h2 {
    font-size: clamp(38px, 10vw, 54px);
  }

  .cooperation .cooperation-card {
    min-height: auto;
    padding: 16px 18px;
  }
}

/* Production runtime visual polish */
.public-shell,
.hero,
.cases,
.services,
.audience,
.qualification,
.process,
.trust,
.audit-deliverables,
.cpl-methodology,
.cta-section,
.advantages,
.team,
.forecast,
.blog,
.cooperation,
.faq,
.reviews,
.final-cta,
.footer {
  max-width: 100%;
}

.public-shell {
  overflow-x: clip;
}

.hero-grid,
.hero-content,
.hero-team-visual,
.section-head,
.cta-box,
.forecast-box,
.final-cta-box,
.lead-form,
.faq-shell,
.footer-grid {
  min-width: 0;
}

.hero-content {
  display: grid;
  align-content: center;
}

.hero-actions {
  align-items: center;
}

.hero-team-visual {
  max-width: min(100%, 560px);
}

.team-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding-inline: clamp(18px, 3vw, 42px);
  isolation: isolate;
}

.team-stage {
  width: min(100%, 1040px);
  margin-inline: auto;
}

.team-slide {
  max-width: calc(100vw - 48px);
}

.team-slide[data-position="0"] {
  z-index: 5;
}

.team-slide[data-position="-1"],
.team-slide[data-position="1"] {
  z-index: 3;
}

.team-nav {
  z-index: 7;
}

.cta-section .cta-box,
.forecast > .container.forecast-box,
.final-cta .final-cta-box {
  width: min(1040px, calc(100% - 40px));
  margin-inline: auto;
}

.cta-box > *,
.final-cta-box > *,
.forecast-box > *,
.lead-form > * {
  min-width: 0;
}

.lead-form {
  width: 100%;
  max-width: 100%;
  align-self: stretch;
}

.lead-form input,
.lead-form textarea,
.lead-form select,
.lead-form button {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.lead-form textarea {
  resize: vertical;
}

.faq-shell {
  gap: clamp(34px, 5vw, 72px);
}

.faq-grid {
  min-width: 0;
}

.faq-card summary {
  word-break: normal;
  overflow-wrap: anywhere;
}

.footer {
  padding-block: clamp(42px, 5vw, 62px);
}

.footer-grid {
  align-items: start;
  row-gap: 28px;
}

.footer-brand,
.footer nav,
.footer-links,
.footer-contacts {
  min-width: 0;
}

/* Footer nav spacing fix */
@media (min-width: 901px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr) max-content minmax(0, 1fr);
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .team-carousel {
    padding-inline: 24px;
  }

  .team-slide[data-position="-1"] {
    transform: translate(calc(-50% - 190px), -50%) scale(0.7);
  }

  .team-slide[data-position="1"] {
    transform: translate(calc(-50% + 190px), -50%) scale(0.7);
  }

  .team-slide[data-position="-2"],
  .team-slide[data-position="2"] {
    opacity: 0.22;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .qualification-grid,
  .process-grid,
  .trust-grid,
  .audit-deliverables .audit-deliverables-grid,
  .cpl-methodology .methodology-grid,
  .cta-section .cta-box,
  .forecast > .container.forecast-box,
  .cooperation-grid,
  .faq-shell,
  .final-cta .final-cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .hero .section-lead,
  .section-head,
  .faq-intro,
  .footer p,
  .footer small {
    width: 100%;
    max-width: none;
  }

  .hero-team-visual {
    justify-self: center;
  }

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

  .cta-section .cta-box,
  .forecast > .container.forecast-box,
  .final-cta .final-cta-box {
    width: min(100% - 32px, 1040px);
  }

  .lead-form {
    justify-self: stretch;
  }

  .faq-shell {
    align-items: stretch;
  }
}

@media (max-width: 720px) {
  .public-shell {
    overflow-x: hidden;
  }

  .hero {
    padding-top: 86px;
    padding-bottom: clamp(62px, 9vw, 82px);
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-team-visual {
    max-width: 380px;
    min-height: 340px;
  }

  .team.section {
    padding-bottom: 70px;
  }

  .team-carousel {
    min-height: 430px;
    padding-inline: 0;
  }

  .team-stage {
    height: 390px;
    overflow: visible;
  }

  .team-slide {
    width: min(292px, calc(100vw - 48px));
  }

  .team-slide[data-position="0"] {
    transform: translate(-50%, -50%) scale(1);
  }

  .team-slide[data-position="-1"],
  .team-slide[data-position="1"],
  .team-slide[data-position="-2"],
  .team-slide[data-position="2"] {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.82);
  }

  .team-nav {
    top: auto;
    bottom: 2px;
    transform: none;
  }

  .team-prev {
    left: calc(50% - 76px);
  }

  .team-next {
    right: calc(50% - 76px);
  }

  .cta-section .cta-box,
  .forecast > .container.forecast-box,
  .final-cta .final-cta-box {
    gap: 24px;
    padding: 24px;
    border-radius: 28px;
  }

  .lead-form {
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
  }

  .lead-form label,
  .lead-form fieldset {
    min-width: 0;
  }

  .faq {
    padding-bottom: 72px;
  }

  .faq-shell {
    gap: 24px;
  }

  .faq-intro .btn {
    width: 100%;
    justify-content: center;
  }

  .faq-card summary {
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 14px;
    padding: 18px;
    font-size: 18px;
  }

  .faq-card summary::after {
    width: 34px;
    height: 34px;
  }

  .faq-card p {
    padding: 0 18px 20px;
  }

  .footer {
    padding-block: 38px;
  }

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

@media (max-width: 430px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }

  .logo {
    min-width: 0;
  }

  .logo-text {
    max-width: 112px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-cta {
    width: 74px;
    max-width: 74px;
    margin-left: 0;
    padding: 0 8px;
  }

  .header-cta::after {
    font-size: 11px;
  }

  .nav-toggle {
    width: 42px;
    min-width: 42px;
    padding: 0;
  }

  .nav-toggle-text {
    display: none;
  }

  .container,
  .cases > .container,
  .services > .container,
  .qualification > .container,
  .forecast > .container,
  .cpl-methodology > .container,
  .advantages > .container,
  .cooperation > .container,
  .reviews > .container,
  .faq > .container,
  .final-cta > .container,
  .cta-section .cta-box,
  .forecast > .container.forecast-box,
  .final-cta .final-cta-box {
    width: min(100% - 24px, 1140px);
  }

  .hero-team-visual {
    max-width: 336px;
    min-height: 320px;
  }

  .hero-team-photo img {
    right: 0;
    left: 0;
    width: 100%;
  }

  .team-slide {
    width: min(274px, calc(100vw - 38px));
  }

  .team-slide .member-photo,
  .team-slide[data-position="0"] .member-photo {
    height: 292px;
  }

  .cpl-methodology .methodology-formula strong {
    font-size: clamp(28px, 9vw, 38px);
  }

  .cpl-methodology .methodology-formula p {
    font-size: 16px;
  }
}

/* Landing visual polish after QA report */
.hero .hero-team-visual {
  min-width: 0;
}

.hero .hero-team-glow {
  right: -6%;
  max-width: 100%;
}

.hero .hero-team-photo {
  max-width: 100%;
}

.hero .hero-team-badges,
.hero .hero-team-proof {
  max-width: min(420px, calc(100% - 32px));
}

.hero .hero-actions,
.case-slider,
.case-tabs,
.case-grid,
.service-grid,
.blog-grid,
.review-grid,
.footer-grid {
  max-width: 100%;
}

.hero .btn,
.firstSection__button,
.case-slider button,
.lead-form button {
  flex-shrink: 0;
}

.case-tabs {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.case-tabs::-webkit-scrollbar {
  display: none;
}

.cases .case-card,
.services .service-card,
.qualification .qualification-card,
.process .process-step,
.trust .trust-stat,
.trust .trust-stats article,
.cpl-methodology .methodology-steps article,
.blog .blog-card,
.reviews .review-card {
  min-width: 0;
  overflow-wrap: anywhere;
}

.cases .case-card,
.services .service-card,
.blog .blog-card,
.reviews .review-card {
  height: 100%;
}

.cases .case-grid,
.services .service-grid,
.blog .blog-grid,
.reviews .review-grid {
  align-items: stretch;
}

.case-slider {
  overflow: hidden;
}

.case-slider button {
  touch-action: manipulation;
}

.cta-section .cta-box,
.forecast > .container.forecast-box,
.final-cta .final-cta-box {
  overflow: hidden;
}

.cta-section .lead-form,
.forecast .lead-form,
.final-cta .lead-form {
  gap: clamp(14px, 1.8vw, 18px);
  padding: clamp(20px, 2.4vw, 28px);
}

.lead-form input,
.lead-form select {
  min-height: 56px;
}

.lead-form textarea {
  min-height: 126px;
}

.lead-form .btn,
.lead-form button[type="submit"] {
  min-height: 56px;
  border-radius: 999px;
}

.faq .faq-card {
  overflow: hidden;
}

.faq .faq-card summary {
  min-width: 0;
}

.faq .faq-card summary span,
.faq .faq-card summary strong {
  min-width: 0;
}

.footer nav,
.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

@media (max-width: 640px) {
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 1180px) {
  .hero .hero-team-visual {
    margin-right: 0;
  }

  .hero .hero-team-glow {
    inset: -4% -2% -5% 10%;
  }
}

@media (max-width: 900px) {
  .hero .hero-team-visual {
    width: min(100%, 460px);
    min-height: 390px;
    overflow: clip;
    border-radius: 38px;
  }

  .hero .hero-team-glow {
    inset: -3% 2% -4% 6%;
    transform: rotate(-7deg);
  }

  .hero .hero-team-photo {
    inset: 0;
  }

  .hero .hero-team-proof {
    right: 16px;
  }

  .team .team-carousel {
    overflow: hidden;
    padding-inline: 16px;
  }

  .team .team-stage {
    width: min(100%, 720px);
  }

  .team .team-slide {
    width: min(320px, calc(100vw - 72px));
  }

  .team .team-slide[data-position="-1"] {
    opacity: 0.54;
    transform: translate(calc(-50% - 168px), -50%) scale(0.7);
  }

  .team .team-slide[data-position="1"] {
    opacity: 0.54;
    transform: translate(calc(-50% + 168px), -50%) scale(0.7);
  }

  .team .team-slide[data-position="-2"],
  .team .team-slide[data-position="2"] {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.66);
  }

  .cta-section .cta-box,
  .forecast > .container.forecast-box,
  .final-cta .final-cta-box {
    padding: clamp(28px, 5vw, 42px);
  }
}

@media (max-width: 720px) {
  .site-header .header-inner {
    max-width: 100%;
  }

  .hero .hero-grid {
    overflow: visible;
  }

  .hero .hero-team-visual {
    width: min(100%, 380px);
    min-height: 330px;
    justify-self: center;
  }

  .hero .hero-team-glow {
    inset: 0 8% 2%;
    transform: none;
  }

  .hero .hero-team-proof {
    top: 16px;
    right: 14px;
    max-width: min(236px, calc(100% - 28px));
    padding: 14px;
  }

  .hero .hero-team-badges {
    left: 14px;
    bottom: 14px;
  }

  .hero .hero-team-badges span {
    padding-block: 8px;
    font-size: 11px;
  }

  .firstSection__button {
    top: -44px;
    right: 18px;
    width: 88px;
    height: 88px;
    gap: 8px;
    padding: 0 14px;
    font-size: 10px;
    box-shadow: 0 18px 48px rgba(124, 58, 237, 0.34);
  }

  .firstSection__button span {
    width: 30px;
    height: 30px;
  }

  .team .team-slide[data-position="-1"],
  .team .team-slide[data-position="1"],
  .team .team-slide[data-position="-2"],
  .team .team-slide[data-position="2"] {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.82);
  }

  .case-slider {
    justify-content: center;
  }

  .case-slider button {
    width: 42px;
    height: 42px;
  }

  .cta-section .lead-form,
  .forecast .lead-form,
  .final-cta .lead-form {
    padding: 18px;
  }

  .lead-form input,
  .lead-form select {
    min-height: 54px;
  }

  .lead-form textarea {
    min-height: 112px;
  }

  .faq .faq-card summary {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 430px) {
  .hero .hero-team-visual {
    width: min(100%, 336px);
    min-height: 310px;
  }

  .hero .hero-team-proof {
    max-width: 212px;
    font-size: 12px;
  }

  .team .team-slide {
    width: min(276px, calc(100vw - 40px));
  }

  .cta-section .cta-box,
  .forecast > .container.forecast-box,
  .final-cta .final-cta-box {
    padding: 22px;
  }
}

/* Landing block visual polish */
.site-header .header-inner {
  gap: clamp(14px, 2.2vw, 30px);
}

.site-header .nav {
  gap: clamp(10px, 1.2vw, 18px);
  margin-inline: auto;
}

.site-header .nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 9px clamp(12px, 1.1vw, 16px);
  letter-spacing: 0;
}

.site-header .header-cta {
  box-shadow: 0 12px 34px rgba(139, 92, 246, 0.18);
}

.services .section-head.compact {
  max-width: 860px;
  margin-bottom: clamp(38px, 4.2vw, 58px);
}

.services .section-head h2 {
  max-width: 820px;
  line-height: 0.96;
}

.services .section-head p:not(.eyebrow) {
  display: block;
  max-width: 690px;
  margin-top: clamp(18px, 2vw, 26px);
  color: #6a6871;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.72;
}

.services .service-grid {
  gap: clamp(16px, 1.8vw, 24px);
}

.services .service-card {
  min-height: clamp(248px, 21vw, 306px);
  padding: clamp(24px, 2.3vw, 32px);
}

.services .service-card span,
.advantages .advantage-card span {
  margin-bottom: clamp(26px, 3vw, 42px);
}

.services .service-card h3,
.advantages .advantage-card h3 {
  max-width: 92%;
  line-height: 1.04;
}

.process.section {
  padding-block: clamp(82px, 6vw, 112px);
}

.process > .container.process-grid {
  width: min(1360px, calc(100% - 40px));
}

.process .process-grid {
  grid-template-columns: minmax(380px, 0.86fr) minmax(560px, 1.14fr);
  align-items: center;
  gap: clamp(44px, 4.8vw, 76px);
}

.process .process-grid > div:first-child {
  display: grid;
  align-content: center;
  max-width: none;
  min-width: 0;
}

.process .process-grid h2 {
  max-width: 640px;
  margin-bottom: clamp(16px, 2vw, 24px);
  text-wrap: balance;
  overflow-wrap: break-word;
}

.process .process-grid > div > p {
  max-width: 590px;
  margin-bottom: 0;
}

.process .process-steps {
  justify-self: stretch;
  width: 100%;
  gap: clamp(14px, 1.35vw, 18px);
}

.process .process-step {
  min-height: 0;
  padding: clamp(22px, 2.35vw, 30px) clamp(22px, 2.5vw, 32px);
}

.process .process-step h3 {
  margin-bottom: 9px;
}

.process .process-step > div {
  min-width: 0;
}

.audit-deliverables.section {
  padding-block: clamp(88px, 7vw, 128px);
}

.audit-deliverables .audit-deliverables-grid {
  align-items: center;
  gap: clamp(38px, 6vw, 84px);
}

.audit-deliverables .audit-deliverables-grid > div:first-child {
  display: grid;
  align-content: start;
  gap: clamp(22px, 3vw, 34px);
}

.audit-deliverables .audit-deliverables-grid > div:first-child h2 {
  max-width: 620px;
  margin-bottom: 0;
}

.audit-deliverables .deliverables-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 20px);
}

.audit-deliverables .deliverables-list .deliverable-card {
  min-height: clamp(196px, 17vw, 246px);
  padding: clamp(24px, 2.4vw, 32px);
  border-color: rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 90% 8%, rgba(139, 92, 246, 0.12), transparent 9rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #101010;
}

.audit-deliverables .deliverables-list .deliverable-card p {
  color: rgba(247, 247, 242, 0.66);
}

.audit-deliverables .audit-output {
  min-height: 0;
  padding: clamp(24px, 3.2vw, 38px);
  border-color: rgba(139, 92, 246, 0.46);
  background:
    radial-gradient(circle at 92% 8%, rgba(139, 92, 246, 0.2), transparent 12rem),
    rgba(18, 10, 32, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.audit-deliverables .audit-output li {
  justify-content: center;
  min-height: 44px;
  text-align: center;
}

.trust.section {
  padding-block: clamp(84px, 6.8vw, 122px);
}

.trust .trust-grid {
  align-items: center;
}

.trust .trust-content {
  border-radius: clamp(28px, 3.5vw, 42px);
  padding: clamp(28px, 4vw, 52px);
}

.trust .trust-content h2 {
  max-width: 760px;
}

.trust .trust-stats {
  align-self: center;
  gap: clamp(14px, 1.6vw, 20px);
  border-radius: clamp(26px, 3vw, 36px);
}

.trust .trust-stats article {
  min-height: 142px;
  align-content: center;
  text-align: left;
}

.cpl-methodology.section {
  padding-block: clamp(78px, 6.2vw, 112px);
}

.cpl-methodology .methodology-grid {
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}

.cpl-methodology .methodology-steps article {
  min-height: 0;
  padding: clamp(24px, 2.4vw, 32px);
}

.cpl-methodology .methodology-formula {
  padding: clamp(28px, 3.6vw, 42px);
}

.cpl-methodology .methodology-formula strong {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.cases,
.services,
.trust,
.team,
.cpl-methodology,
.advantages,
.cooperation,
.reviews {
  border-radius: clamp(28px, 3.8vw, 56px);
}

.cta-section,
.final-cta {
  padding-block: clamp(42px, 5.2vw, 74px);
}

#contacts,
#lead-forecast-form {
  scroll-margin-top: 96px;
}

.cta-section .cta-box,
.forecast > .container.forecast-box,
.final-cta .final-cta-box {
  width: min(1120px, calc(100% - 40px));
  gap: clamp(22px, 3.2vw, 42px);
  padding: clamp(26px, 3.5vw, 44px);
}

.cta-section .cta-section-box,
.final-cta .final-cta-box {
  width: min(1120px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 0.95fr);
  align-items: center;
  gap: clamp(22px, 3.2vw, 40px);
  padding: clamp(26px, 3.5vw, 44px);
}

.cta-section .cta-section-box {
  align-items: start;
}

.cta-section .lead-form,
.final-cta .lead-form {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  align-self: start;
  align-content: start;
  gap: clamp(12px, 1.35vw, 16px);
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: clamp(18px, 2vw, 24px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.032)),
    rgba(12, 11, 18, 0.68);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lead-form .form-section {
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.lead-form .form-value {
  border-radius: 18px;
  padding: clamp(14px, 1.5vw, 18px);
}

.lead-form input,
.lead-form select {
  min-height: 52px;
}

.lead-form textarea {
  min-height: 104px;
}

.lead-form .btn,
.lead-form button[type="submit"] {
  min-height: 54px;
  font-size: 16px;
}

.final-cta .final-cta-box {
  width: min(1040px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  align-items: center;
  gap: clamp(22px, 3vw, 36px);
  padding: clamp(24px, 3.2vw, 40px);
}

.lead-form-copy,
.final-cta-copy {
  display: grid;
  align-content: start;
  gap: clamp(12px, 1.3vw, 16px);
  min-width: 0;
}

.lead-form-copy h2,
.final-cta-copy h2,
.lead-form-copy-text,
.final-cta-text,
.lead-copy-value,
.final-cta-value,
.lead-benefit-chips,
.lead-after-card,
.lead-outcome-grid {
  max-width: 620px;
}

.lead-form-copy h2,
.final-cta-copy h2,
.lead-form-copy-text,
.final-cta-text {
  margin: 0;
}

.lead-form-copy h2,
.final-cta-copy h2 {
  font-size: clamp(32px, 2.75vw, 44px);
  line-height: 1.12;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.lead-form-copy-text,
.final-cta-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.16vw, 17px);
  line-height: 1.58;
}

.lead-benefit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lead-benefit-chip {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(139, 92, 246, 0.34);
  border-radius: 999px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.18), rgba(139, 92, 246, 0.09)),
    rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.lead-benefit-check {
  position: relative;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.38);
}

.lead-benefit-check::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 6px;
  height: 4px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.lead-after-card {
  display: grid;
  gap: 8px;
  border: 0;
  border-left: 2px solid rgba(139, 92, 246, 0.6);
  border-radius: 0;
  padding: 2px 0 2px 12px;
  background: transparent;
  box-shadow: none;
}

.lead-after-card strong {
  display: block;
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 900;
  line-height: 1.25;
}

.lead-after-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lead-after-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  min-width: 0;
}

.lead-after-list span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(139, 92, 246, 0.42);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(139, 92, 246, 0.26);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.lead-after-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.42;
}

.cta-section .lead-quick-contact,
.final-cta .lead-quick-contact {
  display: none;
}

.lead-copy-value,
.final-cta-value,
.lead-outcome-card,
.lead-next-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.034)),
    rgba(8, 7, 13, 0.5);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}

.lead-copy-value,
.final-cta-value,
.lead-outcome-card,
.lead-next-card {
  padding: clamp(16px, 1.8vw, 22px);
}

.lead-copy-value strong,
.final-cta-value strong,
.lead-outcome-card > strong,
.lead-next-card > strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.lead-copy-value p,
.final-cta-value p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.lead-outcome-grid,
.lead-outcome-list,
.lead-next-list {
  display: grid;
  gap: 10px;
}

.lead-outcome-card,
.lead-next-card {
  display: grid;
  gap: 12px;
}

.lead-outcome-list,
.lead-next-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lead-outcome-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.38;
}

.lead-outcome-check {
  position: relative;
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  place-items: center;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.28);
}

.lead-outcome-check::after {
  content: "";
  width: 8px;
  height: 5px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.lead-next-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.lead-next-list span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(139, 92, 246, 0.24);
  font-size: 12px;
  font-weight: 900;
}

.lead-next-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.38;
}

.cta-section .lead-form .form-value,
.final-cta .lead-form .form-value {
  display: none;
}

.cta-section .lead-form .form-grid,
.final-cta .lead-form .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px clamp(12px, 1.4vw, 16px);
}

.cta-section .lead-form .form-grid label:nth-child(3),
.final-cta .lead-form .form-grid label:nth-child(3) {
  grid-column: auto;
}

.final-cta .lead-form .form-feedback:empty {
  display: none;
}

.final-cta-action {
  display: grid;
  align-self: center;
  align-content: start;
  min-width: 0;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  padding: clamp(18px, 2.1vw, 26px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.032)),
    rgba(12, 11, 18, 0.58);
}

.final-cta-action strong {
  color: #ffffff;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 900;
  line-height: 1.22;
}

.final-cta-action p,
.final-cta-action small {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.56;
}

.final-cta-action .btn {
  width: 100%;
  min-height: 54px;
  margin-top: 2px;
}

@media (max-width: 980px) {
  .cta-section .cta-section-box,
  .final-cta .final-cta-box {
    grid-template-columns: 1fr;
  }

  .lead-form-copy,
  .lead-form-copy h2,
  .lead-form-copy-text,
  .final-cta-copy,
  .final-cta-copy h2,
  .final-cta-text,
  .lead-copy-value,
  .final-cta-value,
  .lead-benefit-chips,
  .lead-after-card,
  .lead-outcome-grid,
  .final-cta-action {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .cases,
  .services,
  .trust,
  .team,
  .cpl-methodology,
  .advantages,
  .cooperation,
  .reviews {
    border-radius: clamp(22px, 8vw, 36px);
  }

  .cta-section,
  .final-cta {
    padding-block: clamp(30px, 9vw, 50px);
  }

  .cta-section .cta-section-box,
  .final-cta .final-cta-box {
    width: min(100% - 32px, 1120px);
    padding: 20px;
  }

  .cta-section .lead-form,
  .final-cta .lead-form,
  .final-cta-action {
    border-radius: 20px;
    padding: 18px;
  }

  .cta-section .lead-form .form-grid,
  .final-cta .lead-form .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-section .lead-form .form-grid label:nth-child(3),
  .final-cta .lead-form .form-grid label:nth-child(3) {
    grid-column: auto;
  }
}

.forecast .forecast-box {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
}

.forecast .forecast-panel {
  gap: clamp(14px, 1.7vw, 20px);
}

.forecast .forecast-panel div {
  display: grid;
  min-height: 138px;
  align-content: center;
  padding: clamp(22px, 2.2vw, 28px);
}

.advantages.section {
  padding-block: clamp(84px, 6.4vw, 118px);
}

.advantages .section-head {
  max-width: 860px;
  margin-bottom: clamp(34px, 4vw, 54px);
}

.advantages .advantage-grid {
  gap: clamp(16px, 2vw, 24px);
}

.advantages .advantage-card {
  min-height: clamp(230px, 19vw, 280px);
  padding: clamp(24px, 2.4vw, 32px);
}

.team .team-carousel {
  min-height: clamp(548px, 45vw, 650px);
  padding-inline: clamp(34px, 5vw, 72px);
}

.team .team-stage {
  width: min(100%, 1080px);
  height: clamp(500px, 41vw, 580px);
}

.team .team-slide {
  border-radius: 28px;
}

.team .team-slide[data-position="0"] {
  z-index: 6;
  transform: translate(-50%, -50%) scale(1.03);
}

.team .team-slide[data-position="-1"],
.team .team-slide[data-position="1"] {
  opacity: 0.7;
  filter: saturate(0.9) brightness(0.94);
}

.team .team-nav {
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  background: rgba(139, 92, 246, 0.28);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.team .team-dots {
  margin-top: 18px;
}

.team .team-dots button {
  height: 9px;
  border-radius: 999px;
}

.blog {
  overflow: hidden;
  border-radius: clamp(42px, 5vw, 82px);
}

.blog.section {
  padding-block: clamp(78px, 6.4vw, 112px);
}

.blog .section-head {
  margin-bottom: clamp(30px, 3.6vw, 48px);
}

.blog .blog-grid {
  gap: clamp(16px, 2vw, 24px);
}

.blog .blog-card {
  min-height: 100%;
  border-radius: 26px;
}

.blog .blog-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(22px, 3vw, 34px);
}

.blog .blog-slider button {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(139, 92, 246, 0.24);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.blog .blog-slider button:not(:disabled):hover {
  border-color: rgba(183, 148, 255, 0.78);
  background: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
}

.blog .blog-slider .slider-count {
  min-width: 56px;
  border-radius: 999px;
  padding: 8px 13px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 900;
}

.cooperation.section {
  padding-block: clamp(84px, 6.8vw, 122px);
}

.cooperation .cooperation-grid {
  align-items: center;
  gap: clamp(38px, 6vw, 86px);
}

.cooperation .cooperation-grid > div:first-child {
  max-width: 650px;
}

.cooperation .cooperation-list {
  gap: clamp(12px, 1.5vw, 18px);
}

.cooperation .cooperation-card {
  min-height: 70px;
  align-items: center;
  padding: clamp(18px, 2vw, 24px);
}

.faq .faq-card.is-animating {
  overflow: hidden;
}

.faq .faq-card p {
  will-change: opacity, transform;
}

@media (max-width: 1100px) {
  .site-header .nav {
    gap: 8px;
    margin-inline: 0;
  }

  .site-header .nav a {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .process > .container.process-grid {
    width: min(100% - 32px, 980px);
  }

  .process .process-grid {
    grid-template-columns: 1fr;
    gap: clamp(30px, 5vw, 44px);
  }

  .process .process-grid h2,
  .process .process-grid > div > p {
    max-width: none;
  }

  .services .section-head.compact,
  .advantages .section-head {
    max-width: none;
  }

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

  .cta-section .lead-form,
  .final-cta .lead-form {
    max-width: none;
    justify-self: stretch;
  }

  .forecast .forecast-box {
    grid-template-columns: 1fr;
  }

  .team .team-carousel {
    min-height: 560px;
    padding-inline: 20px;
  }

  .team .team-stage {
    height: 500px;
  }

  .team .team-slide[data-position="-1"] {
    transform: translate(calc(-50% - 170px), -50%) scale(0.68);
  }

  .team .team-slide[data-position="1"] {
    transform: translate(calc(-50% + 170px), -50%) scale(0.68);
  }
}

@media (max-width: 720px) {
  .process.section {
    padding-block: 68px;
  }

  .process > .container.process-grid {
    width: min(100% - 28px, 720px);
  }

  .process .process-steps {
    gap: 12px;
  }

  .process .process-steps::before {
    top: 28px;
    bottom: 28px;
    left: 44px;
  }

  .services .section-head p:not(.eyebrow) {
    margin-top: 16px;
  }

  .audit-deliverables .deliverables-list,
  .forecast .forecast-panel {
    grid-template-columns: 1fr;
  }

  .process .process-step {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    border-radius: 20px;
    padding: 18px;
  }

  .process .process-step span {
    width: 52px;
    height: 52px;
  }

  .process .process-step h3 {
    font-size: 22px;
  }

  .trust .trust-content,
  .trust .trust-stats,
  .cpl-methodology .methodology-formula {
    border-radius: 26px;
    padding: 22px;
  }

  .cta-section .cta-box,
  .forecast > .container.forecast-box,
  .final-cta .final-cta-box {
    width: min(100% - 28px, 1120px);
    padding: 24px;
  }

  .team .team-carousel {
    min-height: 450px;
    padding-inline: 0;
  }

  .team .team-stage {
    height: 390px;
  }

  .team .team-slide[data-position="0"] {
    transform: translate(-50%, -50%) scale(1);
  }

  .blog .blog-slider button,
  .team .team-nav {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 430px) {
  .site-header .nav a {
    min-height: 42px;
  }

  .services .service-card,
  .advantages .advantage-card {
    min-height: 0;
    padding: 22px;
  }

  .audit-deliverables .deliverables-list .deliverable-card {
    min-height: 0;
  }

  .lead-form .form-section-head {
    grid-template-columns: 1fr;
  }

  .lead-form input,
  .lead-form select,
  .lead-form .btn,
  .lead-form button[type="submit"] {
    min-height: 54px;
  }

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

/* Landing visual polish after QA report - final runtime pass */
.site-header .logo,
.site-header .header-cta,
.site-header .nav-toggle {
  min-width: 0;
}

.site-header .logo-text {
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-header .logo-image {
  flex: 0 1 auto;
}

.hero .hero-team-photo img {
  right: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.hero .hero-team-photo::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.28), transparent 42%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.46) 86%);
}

.hero .hero-team-photo::after {
  opacity: 0.32;
}

.hero .hero-text,
.hero .hero-trust,
.hero .hero-points,
.section-head p:not(.eyebrow),
.process-grid > div > p,
.trust-content p,
.faq-intro p:not(.eyebrow) {
  overflow-wrap: anywhere;
}

.hero .hero-points li,
.case-tabs button,
.case-slider .slider-count,
.blog .blog-slider .slider-count {
  white-space: normal;
}

.cases .case-grid,
.blog .blog-grid {
  grid-auto-rows: 1fr;
}

.blog .blog-card {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  min-width: 0;
}

.blog .blog-card h3 {
  min-height: clamp(66px, 6vw, 92px);
}

.blog .blog-card a {
  align-self: end;
}

.cta-section .lead-form,
.final-cta .lead-form {
  width: 100%;
}

.lead-form fieldset label {
  min-width: 0;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  min-width: 0;
}

.team .team-carousel {
  max-width: 100%;
}

.team .team-stage {
  max-width: 100%;
  margin-inline: auto;
}

.faq .faq-card summary {
  overflow-wrap: anywhere;
}

.footer .logo,
.footer-links,
.footer-contacts {
  min-width: 0;
}

.footer .logo-text,
.footer a {
  overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  .hero {
    padding-top: clamp(86px, 10vw, 116px);
  }

  .hero .hero-grid {
    align-items: start;
  }

  .hero .hero-content {
    align-self: start;
  }

  .hero .hero-team-visual {
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .site-header .logo-text {
    max-width: 132px;
  }

  .site-header .header-cta {
    flex: 0 0 auto;
  }

  .hero {
    padding-top: 62px;
  }

  .hero h1 {
    font-size: clamp(25px, 7.4vw, 30px);
    line-height: 1.06;
  }

  .hero .hero-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero .hero-trust {
    max-width: 100%;
  }

  .hero .hero-team-photo img {
    object-position: center;
  }

  .team .team-carousel {
    min-height: 500px;
  }

  .team .team-stage {
    height: 440px;
  }

  .team .team-slide .member-photo,
  .team .team-slide[data-position="0"] .member-photo {
    height: 315px;
  }

  .team .team-slide[data-position="-1"],
  .team .team-slide[data-position="1"],
  .team .team-slide[data-position="-2"],
  .team .team-slide[data-position="2"] {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.82);
  }

  .blog .blog-card h3 {
    min-height: 0;
  }
}

@media (max-width: 430px) {
  .site-header .header-inner {
    gap: 8px;
  }

  .site-header .logo {
    gap: 7px;
  }

  .site-header .logo-text {
    max-width: 118px;
    font-size: 13px;
  }

  .site-header .logo-image {
    max-width: 112px;
    max-height: 34px;
  }

  .site-header .header-cta {
    display: none;
  }

  .site-header .nav-toggle {
    width: 40px;
    min-width: 40px;
    height: 36px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(24px, 6.8vw, 28px);
    line-height: 1.06;
  }

  .hero .hero-actions .btn-primary {
    min-height: 46px;
    padding-inline: 14px;
  }

  .hero .hero-team-visual {
    min-height: 286px;
  }

  .hero .hero-team-badges span {
    max-width: 100%;
  }

  .team .team-carousel {
    min-height: 468px;
  }

  .team .team-stage {
    height: 408px;
  }

  .team .team-slide .member-photo,
  .team .team-slide[data-position="0"] .member-photo {
    height: 292px;
  }

  .faq .faq-card summary {
    gap: 14px;
  }
}

/* Team carousel premium visual polish */
.team.section {
  overflow: hidden;
  overflow: clip;
  padding-block: clamp(78px, 7.5vw, 132px) clamp(84px, 8vw, 138px);
  background:
    radial-gradient(circle at 50% 24%, rgba(157, 100, 255, 0.28), transparent 30rem),
    radial-gradient(circle at 88% 56%, rgba(109, 40, 217, 0.16), transparent 30rem),
    linear-gradient(180deg, #09080d 0%, #171020 52%, #09080d 100%);
}

.team.section::before {
  opacity: 0.64;
  mask-image: radial-gradient(ellipse at 50% 48%, #000 0 42%, transparent 72%);
}

.team .container {
  width: min(1640px, calc(100% - clamp(28px, 4vw, 64px)));
  min-width: 0;
}

.team .section-head.compact {
  max-width: min(860px, 100%);
  margin-bottom: 0;
}

.team .section-head h2 {
  max-width: 900px;
}

.team .section-head p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 18px;
  line-height: 1.62;
}

.team .team-carousel {
  --team-card-width: clamp(360px, 23vw, 420px);
  --team-stage-height: clamp(540px, 40vw, 640px);
  --team-side-offset: clamp(340px, 26vw, 480px);
  --team-far-offset: clamp(540px, 41vw, 760px);
  width: min(100%, 1540px);
  min-height: calc(var(--team-stage-height) + 86px);
  margin: clamp(26px, 3vw, 40px) auto 0;
  padding-inline: clamp(72px, 5.8vw, 132px);
  overflow: visible;
}

.team .team-carousel:focus-visible {
  border-radius: 34px;
  outline: 2px solid rgba(190, 162, 255, 0.72);
  outline-offset: 8px;
}

.team .team-stage {
  width: min(100%, 1360px);
  height: var(--team-stage-height);
  margin-inline: auto;
  overflow: visible;
  perspective: 1450px;
}

.team .team-slide {
  box-sizing: border-box;
  width: var(--team-card-width);
  max-width: calc(100vw - 44px);
  padding: 12px 12px 24px;
  overflow: visible;
  border-color: rgba(209, 197, 232, 0.28);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 236, 247, 0.95) 100%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  transform-style: preserve-3d;
  transition:
    transform 660ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.team .team-slide::before {
  position: absolute;
  z-index: -1;
  inset: -22px;
  border-radius: 38px;
  content: "";
  background:
    radial-gradient(circle at 50% 42%, rgba(168, 85, 247, 0.46), transparent 58%),
    radial-gradient(circle at 50% 100%, rgba(109, 40, 217, 0.24), transparent 64%);
  opacity: 0;
  filter: blur(2px);
  transition: opacity 520ms ease, transform 520ms ease;
  pointer-events: none;
}

.team .team-slide:hover {
  border-color: rgba(168, 85, 247, 0.48);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.34);
}

.team .team-slide:hover .member-photo {
  filter: saturate(0.96) brightness(0.84);
}

.team .team-slide[data-position="0"]:hover .member-photo {
  filter: none;
}

.team .team-slide[data-position="0"] {
  z-index: 7;
  opacity: 1;
  filter: none;
  border-color: rgba(190, 162, 255, 0.66);
  box-shadow:
    0 0 0 1px rgba(190, 162, 255, 0.22),
    0 28px 86px rgba(139, 92, 246, 0.36),
    0 42px 118px rgba(0, 0, 0, 0.46);
  transform: translate(-50%, -50%) scale(1.065);
}

.team .team-slide[data-position="0"]::before {
  opacity: 0.86;
  transform: scale(1.02);
}

.team .team-slide[data-position="-1"] {
  z-index: 5;
  opacity: 1;
  border-color: rgba(209, 197, 232, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(234, 229, 244, 0.92) 100%);
  transform: translate(calc(-50% - var(--team-side-offset)), -50%) scale(0.82);
  pointer-events: auto;
}

.team .team-slide[data-position="1"] {
  z-index: 5;
  opacity: 1;
  border-color: rgba(209, 197, 232, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(234, 229, 244, 0.92) 100%);
  transform: translate(calc(-50% + var(--team-side-offset)), -50%) scale(0.82);
  pointer-events: auto;
}

.team .team-slide[data-position="-2"] {
  z-index: 3;
  opacity: 1;
  border-color: rgba(209, 197, 232, 0.16);
  background:
    linear-gradient(180deg, rgba(248, 245, 253, 0.82) 0%, rgba(226, 219, 236, 0.78) 100%);
  transform: translate(calc(-50% - var(--team-far-offset)), -50%) scale(0.66);
  pointer-events: none;
}

.team .team-slide[data-position="2"] {
  z-index: 3;
  opacity: 1;
  border-color: rgba(209, 197, 232, 0.16);
  background:
    linear-gradient(180deg, rgba(248, 245, 253, 0.82) 0%, rgba(226, 219, 236, 0.78) 100%);
  transform: translate(calc(-50% + var(--team-far-offset)), -50%) scale(0.66);
  pointer-events: none;
}

.team .team-slide[data-position="hidden"] {
  opacity: 0;
  filter: blur(7px) saturate(0.7);
  transform: translate(-50%, -50%) scale(0.52);
  pointer-events: none;
}

.team .team-slide .member-photo,
.team .team-slide[data-position="0"] .member-photo {
  height: auto;
  min-height: 0;
  margin-bottom: 18px;
  aspect-ratio: 1 / 1.08;
  border-radius: 22px;
  background-size: cover, auto 122%;
  box-shadow: inset 0 -70px 90px rgba(0, 0, 0, 0.24);
  filter: saturate(0.9) brightness(0.78);
  transition:
    filter 520ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 520ms ease;
}

.team .team-slide .member-photo img {
  object-fit: cover;
  object-position: center 34%;
  transform: scale(1.01);
  transition: transform 660ms cubic-bezier(0.22, 1, 0.36, 1);
}

.team .team-slide[data-position="0"] .member-photo img {
  transform: scale(1);
}

.team .team-slide[data-position="0"] .member-photo {
  filter: none;
}

.team .team-slide .member-photo::before {
  background:
    linear-gradient(180deg, rgba(7, 4, 12, 0.08) 18%, rgba(7, 4, 12, 0.72) 100%),
    radial-gradient(circle at 50% 28%, rgba(168, 85, 247, 0.16), transparent 42%);
  opacity: 0.74;
  transition: opacity 520ms ease, background 520ms ease;
}

.team .team-slide[data-position="0"] .member-photo::before {
  opacity: 0.28;
  background:
    linear-gradient(180deg, rgba(7, 4, 12, 0.02) 30%, rgba(7, 4, 12, 0.3) 100%),
    radial-gradient(circle at 50% 28%, rgba(168, 85, 247, 0.1), transparent 42%);
}

.team .team-slide[data-position="-2"] .member-photo::before,
.team .team-slide[data-position="2"] .member-photo::before {
  opacity: 0.9;
}

.team .team-slide[data-position="-2"] .member-photo,
.team .team-slide[data-position="2"] .member-photo {
  filter: saturate(0.72) brightness(0.54);
}

.team .team-slide h3 {
  position: relative;
  z-index: 2;
  margin: 0 16px 8px;
  color: #0b0910;
  font-size: clamp(22px, 1.65vw, 28px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.06;
}

.team .team-slide p {
  position: relative;
  z-index: 2;
  margin: 0 16px;
  color: #5b21b6;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.045em;
  line-height: 1.34;
  text-transform: uppercase;
}

.team .team-slide span {
  position: relative;
  z-index: 2;
  display: block;
  margin: 11px 16px 0;
  color: rgba(18, 16, 22, 0.78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.team .team-slide[data-position="-2"] span,
.team .team-slide[data-position="2"] span {
  color: rgba(18, 16, 22, 0.68);
}

.team .team-nav {
  top: auto;
  bottom: clamp(14px, 1.8vw, 28px);
  width: clamp(64px, 4.3vw, 72px);
  height: clamp(64px, 4.3vw, 72px);
  border-color: rgba(190, 162, 255, 0.48);
  color: #f8f4ff;
  background:
    radial-gradient(circle at 34% 20%, rgba(216, 198, 255, 0.24), transparent 44%),
    linear-gradient(145deg, rgba(86, 46, 164, 0.88), rgba(19, 13, 32, 0.9));
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 36px rgba(139, 92, 246, 0.32);
  font-size: clamp(22px, 1.8vw, 26px);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.36);
  touch-action: manipulation;
  backdrop-filter: blur(18px) saturate(1.28);
  -webkit-tap-highlight-color: transparent;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.team .team-nav::before {
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.team .team-nav:hover {
  border-color: rgba(231, 221, 255, 0.86);
  color: #ffffff;
  background:
    radial-gradient(circle at 34% 20%, rgba(255, 255, 255, 0.28), transparent 42%),
    linear-gradient(145deg, rgba(168, 85, 247, 0.98), rgba(91, 33, 182, 0.92));
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.09),
    0 0 46px rgba(168, 85, 247, 0.52);
  transform: translateY(-3px) scale(1.04);
}

.team .team-nav:active {
  transform: translateY(0) scale(0.96);
}

.team .team-nav:focus-visible {
  outline: 3px solid rgba(231, 221, 255, 0.92);
  outline-offset: 5px;
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.5),
    0 0 0 6px rgba(124, 58, 237, 0.26),
    0 0 46px rgba(168, 85, 247, 0.5);
}

.team .team-nav:disabled {
  opacity: 0.46;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
}

.team .team-prev {
  left: clamp(22px, 5vw, 96px);
}

.team .team-next {
  right: clamp(22px, 5vw, 96px);
}

.team .team-dots {
  position: relative;
  z-index: 8;
  align-items: center;
  gap: 4px;
  min-height: 32px;
  margin-top: clamp(14px, 1.8vw, 22px);
}

.team .team-dots button {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  background: transparent;
  box-shadow: none;
}

.team .team-dots button::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  content: "";
  background: rgba(236, 231, 246, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition:
    width 220ms ease,
    height 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.team .team-dots button:hover::before {
  background: rgba(236, 231, 246, 0.62);
  transform: scale(1.18);
}

.team .team-dots button:focus-visible {
  outline: 2px solid rgba(231, 221, 255, 0.9);
  outline-offset: 2px;
}

.team .team-dots button.is-active {
  width: 38px;
  background: transparent;
  box-shadow: none;
}

.team .team-dots button.is-active::before {
  width: 30px;
  height: 9px;
  background: #a66cff;
  box-shadow:
    0 0 0 1px rgba(209, 197, 232, 0.18),
    0 0 22px rgba(159, 103, 255, 0.46);
}

@media (max-width: 1180px) {
  .team .team-carousel {
    --team-card-width: clamp(330px, 35vw, 380px);
    --team-stage-height: clamp(520px, 48vw, 600px);
    --team-side-offset: clamp(270px, 33vw, 360px);
    --team-far-offset: clamp(430px, 49vw, 560px);
    padding-inline: clamp(44px, 5vw, 78px);
  }
}

@media (max-width: 900px) {
  .team.section {
    padding-block: clamp(68px, 9vw, 92px);
  }

  .team .team-carousel {
    --team-card-width: min(340px, calc(100vw - 54px));
    --team-stage-height: 500px;
    --team-side-offset: clamp(210px, 30vw, 250px);
    --team-far-offset: 430px;
    min-height: 570px;
    padding-inline: 24px;
  }

  .team .team-slide[data-position="-1"] {
    opacity: 1;
    transform: translate(calc(-50% - var(--team-side-offset)), -50%) scale(0.68);
  }

  .team .team-slide[data-position="1"] {
    opacity: 1;
    transform: translate(calc(-50% + var(--team-side-offset)), -50%) scale(0.68);
  }

  .team .team-slide[data-position="-2"],
  .team .team-slide[data-position="2"] {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.62);
  }

  .team .team-nav {
    bottom: 16px;
    width: 60px;
    height: 60px;
  }

  .team .team-prev {
    left: 14px;
  }

  .team .team-next {
    right: 14px;
  }
}

@media (max-width: 720px) {
  .team .container {
    width: min(100% - 28px, 640px);
  }

  .team .section-head.compact {
    max-width: 100%;
  }

  .team .team-carousel {
    --team-card-width: min(318px, calc(100vw - 42px));
    --team-stage-height: 452px;
    min-height: 562px;
    margin-top: 26px;
    padding-inline: 0;
  }

  .team .team-stage {
    height: var(--team-stage-height);
  }

  .team .team-slide {
    padding: 10px 10px 22px;
    border-radius: 26px;
  }

  .team .team-slide[data-position="0"] {
    transform: translate(-50%, -50%) scale(1);
  }

  .team .team-slide[data-position="-1"],
  .team .team-slide[data-position="1"],
  .team .team-slide[data-position="-2"],
  .team .team-slide[data-position="2"] {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.82);
  }

  .team .team-slide .member-photo,
  .team .team-slide[data-position="0"] .member-photo {
    margin-bottom: 16px;
    aspect-ratio: 1 / 1.02;
    border-radius: 20px;
  }

  .team .team-slide h3 {
    margin-inline: 14px;
    font-size: 21px;
  }

  .team .team-slide p,
  .team .team-slide span {
    margin-inline: 14px;
  }

  .team .team-nav {
    top: auto;
    bottom: 4px;
    width: 56px;
    height: 56px;
    font-size: 22px;
    transform: none;
  }

  .team .team-nav:hover {
    transform: translateY(-2px) scale(1.04);
  }

  .team .team-nav:active {
    transform: scale(0.96);
  }

  .team .team-prev {
    left: calc(50% - 132px);
  }

  .team .team-next {
    right: calc(50% - 132px);
  }

  .team .team-dots {
    min-height: 38px;
    margin-top: 18px;
  }
}

@media (max-width: 430px) {
  .team .container {
    width: min(100% - 24px, 430px);
  }

  .team .team-carousel {
    --team-card-width: min(304px, calc(100vw - 34px));
    --team-stage-height: 424px;
    min-height: 536px;
  }

  .team .team-slide h3 {
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .team .team-slide,
  .team .team-slide::before,
  .team .team-slide .member-photo img,
  .team .team-slide .member-photo::before,
  .team .team-nav,
  .team .team-dots button {
    transition-duration: 1ms;
  }
}

/* Case detail template */
.case-detail-page {
  background: #0a0a0b;
}

.case-detail-page .cms-detail-header {
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(18px);
}

.case-detail-page .cms-detail-header .header-inner,
.case-hero .container,
.case-content-panel .container,
.related-cases .container,
.case-cta .container {
  width: min(1140px, calc(100% - 40px));
  min-width: 0;
  box-sizing: border-box;
}

.case-detail-page .brand,
.case-detail-page .site-nav,
.case-detail-page .header-cta {
  min-width: 0;
}

.case-detail-page .cms-detail-header .header-inner {
  gap: clamp(12px, 2.5vw, 28px);
}

.case-detail-page .site-nav {
  flex-wrap: wrap;
}

.case-hero {
  overflow: hidden;
  position: relative;
  isolation: isolate;
  padding: clamp(118px, 12vw, 164px) 0 clamp(62px, 8vw, 104px);
  color: #ffffff;
  background:
    radial-gradient(circle at 76% 12%, rgba(139, 92, 246, 0.28), transparent 27rem),
    radial-gradient(circle at 16% 72%, rgba(255, 255, 255, 0.055), transparent 20rem),
    #09090a;
}

.case-hero .case-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
  min-width: 0;
  max-width: 100%;
}

.case-hero .case-hero-copy {
  min-width: 0;
}

.case-hero .case-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.case-hero .case-breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
}

.case-hero .case-breadcrumbs strong {
  color: #ffffff;
}

.case-hero .case-category-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(183, 148, 255, 0.64);
  border-radius: 999px;
  padding: 8px 14px;
  color: #d9c9ff;
  background: rgba(139, 92, 246, 0.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-hero .case-title {
  max-width: 880px;
  margin: 20px 0 18px;
  font-size: clamp(42px, 6.6vw, 96px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.case-hero .case-excerpt {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
}

.case-hero .case-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin: 28px 0 0;
}

.case-hero .case-hero-meta div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.055);
}

.case-hero .case-hero-meta dt {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-hero .case-hero-meta dd {
  margin: 0;
  color: #ffffff;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.case-hero .case-detail-cover,
.case-initial .case-initial-image,
.case-work .case-work-image,
.case-audience .case-audience-image,
.case-creatives .case-creative-card,
.case-results .case-result-image {
  position: relative;
  overflow: hidden;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(139, 92, 246, 0.16);
  border-radius: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 70% 12%, rgba(139, 92, 246, 0.26), transparent 14rem),
    linear-gradient(145deg, #20143f, #101012);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.case-hero .case-detail-cover {
  min-height: clamp(300px, 35vw, 520px);
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
}

.case-hero .case-detail-cover img,
.case-initial .case-initial-image img,
.case-work .case-work-image img,
.case-audience .case-audience-image img,
.case-creatives .case-creative-card img,
.case-results .case-result-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.case-content-panel .case-media-fallback {
  display: grid;
  min-height: 320px;
  place-items: end start;
  padding: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-content-panel {
  padding: 0 0 clamp(72px, 8vw, 112px);
  color: #111116;
  background: #0a0a0b;
}

.case-content-panel .case-content-grid {
  display: grid;
  gap: clamp(54px, 7vw, 88px);
  overflow: hidden;
  border: 1px solid rgba(12, 12, 16, 0.08);
  border-radius: clamp(42px, 5vw, 82px);
  padding: clamp(30px, 5vw, 72px);
  background:
    radial-gradient(circle at 86% 6%, rgba(139, 92, 246, 0.13), transparent 28rem),
    linear-gradient(180deg, #ffffff, #f7f5fa);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.28);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.case-content-panel .case-content-grid .cms-detail-section {
  display: grid;
  gap: clamp(24px, 3vw, 38px);
  min-width: 0;
}

.case-content-panel .case-content-grid .section-head {
  max-width: 780px;
}

.case-content-panel .case-content-grid .section-head h2 {
  margin: 0;
  color: #0c0c10;
  font-size: clamp(30px, 4.5vw, 64px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.case-initial .case-initial-layout,
.case-work .case-work-layout.has-media,
.case-audience .case-audience-layout.has-media,
.case-creatives .case-creatives-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.case-work .case-work-layout,
.case-audience .case-audience-layout {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.case-audience .case-audience-layout.has-media {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
}

.case-initial .case-initial-image,
.case-work .case-work-image,
.case-audience .case-audience-image {
  min-height: clamp(260px, 28vw, 430px);
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 11;
}

.case-initial .case-initial-content,
.case-work .case-work-copy,
.case-audience .case-audience-copy,
.case-creatives .case-creatives-copy,
.case-results .case-results-copy {
  min-width: 0;
}

.case-initial .case-initial-content p,
.case-work .case-work-copy p,
.case-audience .case-audience-copy p,
.case-creatives .case-creatives-copy p,
.case-results .case-results-copy p {
  max-width: 640px;
  margin: 0;
  color: #5f5d66;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.7;
}

.case-initial .case-start-metrics,
.case-results .case-results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(22px, 3vw, 34px);
}

.case-initial .case-start-metric,
.case-results .case-result-card {
  display: grid;
  align-content: space-between;
  min-width: 0;
  min-height: 134px;
  border: 1px solid rgba(12, 12, 16, 0.1);
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(17, 17, 22, 0.08);
}

.case-initial .case-start-metric span,
.case-results .case-result-card span {
  color: #6b6573;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-initial .case-start-metric strong,
.case-results .case-result-card strong {
  margin-top: 14px;
  color: var(--accent);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
}

.case-work .case-action-list,
.case-audience .case-action-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.case-work .case-action-list li,
.case-audience .case-action-list li {
  position: relative;
  border: 1px solid rgba(12, 12, 16, 0.09);
  border-radius: 999px;
  padding: 13px 16px 13px 42px;
  color: #242229;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.case-work .case-action-list li::before,
.case-audience .case-action-list li::before {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  content: "";
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.12);
  transform: translateY(-50%);
}

.case-audience .case-segments {
  max-width: 680px;
}

.case-creatives .case-creatives-grid,
.case-results .case-results-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 100%;
}

.case-creatives .case-creative-card,
.case-results .case-result-image {
  min-height: clamp(190px, 18vw, 280px);
  border-radius: 22px;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
}

.case-results .case-results-copy {
  max-width: 760px;
}

.related-cases {
  overflow: hidden;
  padding: clamp(70px, 8vw, 108px) 0;
  background:
    radial-gradient(circle at 80% 8%, rgba(139, 92, 246, 0.18), transparent 26rem),
    #0a0a0b;
}

.related-cases .section-head h2 {
  color: #ffffff;
}

.related-cases .related-case-grid {
  align-items: stretch;
  min-width: 0;
  max-width: 100%;
}

.related-cases .related-case-card {
  min-width: 0;
  min-height: 240px;
}

.case-cta {
  padding: 0 0 clamp(74px, 8vw, 112px);
  background: #0a0a0b;
}

.case-cta .case-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  overflow: hidden;
  border-radius: clamp(30px, 4vw, 52px);
  padding: clamp(28px, 5vw, 60px);
  color: #111116;
  background:
    radial-gradient(circle at 82% 12%, rgba(139, 92, 246, 0.16), transparent 22rem),
    #ffffff;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
  width: 100%;
  box-sizing: border-box;
}

.case-cta .case-cta-box h2 {
  max-width: 720px;
  margin: 0;
  color: #0c0c10;
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.case-cta .case-cta-box p:not(.eyebrow) {
  max-width: 560px;
  margin: 14px 0 0;
  color: #5f5d66;
}

.case-cta .case-cta-box .btn {
  min-width: 0;
  max-width: 100%;
  white-space: normal;
}

@media (max-width: 980px) {
  .case-hero .case-hero-inner,
  .case-initial .case-initial-layout,
  .case-work .case-work-layout.has-media,
  .case-audience .case-audience-layout.has-media,
  .case-creatives .case-creatives-layout,
  .case-cta .case-cta-box {
    grid-template-columns: 1fr;
  }

  .case-hero .case-hero-inner {
    gap: 34px;
  }

  .case-hero .case-detail-cover {
    min-height: clamp(260px, 52vw, 460px);
  }

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

  .case-initial .case-start-metrics,
  .case-results .case-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .case-cta .case-cta-box {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .case-detail-page .cms-detail-header .header-inner,
  .case-hero .container,
  .case-content-panel .container,
  .related-cases .container,
  .case-cta .container {
    width: min(100% - 32px, 1140px);
  }

  .case-detail-page .site-nav {
    max-width: 100%;
  }

  .case-hero {
    padding: 108px 0 50px;
  }

  .case-hero .case-title {
    font-size: clamp(38px, 13vw, 58px);
    line-height: 0.98;
  }

  .case-hero .case-excerpt {
    font-size: 16px;
  }

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

  .case-content-panel .case-content-grid {
    gap: 46px;
    border-radius: 34px;
    padding: 24px;
  }

  .case-content-panel .case-content-grid .section-head h2 {
    font-size: clamp(28px, 11vw, 44px);
    line-height: 1;
  }

  .case-initial .case-initial-image,
  .case-work .case-work-image,
  .case-audience .case-audience-image,
  .case-hero .case-detail-cover {
    min-height: 0;
    aspect-ratio: 16 / 11;
    border-radius: 24px;
  }

  .case-creatives .case-creative-card,
  .case-results .case-result-image {
    min-height: 0;
  }

  .case-initial .case-start-metrics,
  .case-results .case-results-grid,
  .case-creatives .case-creatives-grid,
  .case-results .case-results-gallery {
    grid-template-columns: 1fr;
  }

  .case-initial .case-start-metric,
  .case-results .case-result-card {
    min-height: 118px;
    padding: 18px;
  }

  .case-work .case-action-list li,
  .case-audience .case-action-list li {
    border-radius: 18px;
  }

  .related-cases {
    padding: 62px 0;
  }

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

  .case-cta {
    padding-bottom: 66px;
  }

  .case-cta .case-cta-box {
    border-radius: 28px;
    padding: 24px;
  }

  .case-cta .case-cta-box h2 {
    font-size: clamp(30px, 11vw, 46px);
  }

  .case-cta .case-cta-box .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .case-detail-page .cms-detail-header .header-inner,
  .case-hero .container,
  .case-content-panel .container,
  .related-cases .container,
  .case-cta .container {
    width: min(100% - 24px, 1140px);
  }

  .case-hero {
    padding: 92px 0 44px;
  }

  .case-hero .case-hero-inner {
    gap: 26px;
  }

  .case-hero .case-title {
    font-size: clamp(28px, 8.8vw, 38px);
    line-height: 1.08;
    word-break: break-word;
  }

  .case-content-panel .case-content-grid {
    gap: 38px;
    border-radius: 28px;
    padding: 20px;
  }

  .case-initial .case-start-metric,
  .case-results .case-result-card {
    min-height: 0;
  }

  .case-cta .case-cta-box {
    border-radius: 26px;
    padding: 24px;
  }
}

/* Case detail UX/Lux polish */
.case-detail-page .case-hero {
  padding-bottom: clamp(74px, 9vw, 128px);
}

.case-hero .case-detail-cover {
  display: block;
}

.case-hero .case-detail-cover::after {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  content: "";
  background: linear-gradient(180deg, rgba(9, 9, 10, 0), rgba(9, 9, 10, 0.78));
  pointer-events: none;
}

.case-hero .case-hero-summary {
  position: absolute;
  right: clamp(14px, 2vw, 22px);
  bottom: clamp(14px, 2vw, 22px);
  left: clamp(14px, 2vw, 22px);
  z-index: 1;
  display: grid;
  gap: 12px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: clamp(14px, 2vw, 20px);
  background: rgba(13, 12, 16, 0.74);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.case-hero .case-hero-summary-only {
  min-height: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: clamp(22px, 3vw, 34px);
  padding: clamp(18px, 3vw, 28px);
  background:
    radial-gradient(circle at 80% 16%, rgba(139, 92, 246, 0.28), transparent 16rem),
    rgba(255, 255, 255, 0.06);
}

.case-hero .case-hero-summary-only .case-hero-summary {
  position: static;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.case-hero .case-hero-summary-row {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.case-hero .case-hero-summary-row span,
.case-hero .case-hero-kpi span,
.case-quick-metric span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-hero .case-hero-summary-row strong,
.case-hero .case-hero-kpi strong,
.case-quick-metric strong {
  color: #ffffff;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

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

.case-hero .case-hero-kpi {
  display: grid;
  align-content: space-between;
  min-width: 0;
  min-height: 94px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.case-quick-metrics-section {
  position: relative;
  z-index: 2;
  margin-top: clamp(-54px, -4vw, -28px);
  padding: 0 0 clamp(30px, 5vw, 58px);
  background: #0a0a0b;
}

.case-quick-metrics-section .container {
  width: min(1140px, calc(100% - 40px));
  min-width: 0;
  box-sizing: border-box;
}

.case-quick-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.case-quick-metric {
  display: grid;
  align-content: space-between;
  min-width: 0;
  min-height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 20px;
  background:
    radial-gradient(circle at 82% 12%, rgba(139, 92, 246, 0.18), transparent 13rem),
    #17151c;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}

.case-quick-metric span {
  color: rgba(255, 255, 255, 0.54);
}

.case-quick-metric strong {
  margin-top: 16px;
  color: #b58cff;
  font-size: clamp(26px, 3vw, 42px);
}

.case-content-panel .case-content-grid {
  gap: clamp(58px, 7vw, 96px);
}

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

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

.case-work .case-process-list article {
  display: grid;
  gap: 18px;
  min-width: 0;
  min-height: 148px;
  border: 1px solid rgba(12, 12, 16, 0.09);
  border-radius: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 52px rgba(17, 17, 22, 0.08);
}

.case-work .case-process-list article span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.case-work .case-process-list article p {
  margin: 0;
  color: #242229;
  font-weight: 850;
  line-height: 1.45;
}

.case-audience .case-segments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.case-audience .case-segments span {
  min-width: 0;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 999px;
  padding: 11px 14px;
  color: #322a43;
  background: rgba(139, 92, 246, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.case-creatives .case-creatives-grid,
.case-results .case-results-gallery {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  grid-auto-rows: minmax(150px, auto);
}

.case-creatives .case-creative-card.is-primary,
.case-results .case-result-image.is-primary {
  grid-row: span 2;
  min-height: clamp(280px, 32vw, 520px);
}

.case-creatives .case-creative-card:not(.is-primary),
.case-results .case-result-image:not(.is-primary) {
  min-height: 0;
}

.case-results .case-results-copy {
  border-left: 4px solid var(--accent);
  padding-left: clamp(18px, 2vw, 28px);
}

.case-insight blockquote {
  margin: 0;
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-left: 6px solid var(--accent);
  border-radius: clamp(22px, 3vw, 34px);
  padding: clamp(24px, 4vw, 46px);
  background:
    radial-gradient(circle at 90% 18%, rgba(139, 92, 246, 0.15), transparent 18rem),
    #ffffff;
  box-shadow: 0 22px 70px rgba(17, 17, 22, 0.1);
}

.case-insight blockquote p {
  max-width: 900px;
  margin: 0;
  color: #141217;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.18;
}

.related-cases .related-case-card em {
  display: inline-flex;
  align-self: end;
  width: fit-content;
  margin-top: auto;
  color: #ffffff;
  font-style: normal;
  font-weight: 900;
}

.related-cases .related-case-card .case-card-metrics span {
  display: grid;
  gap: 3px;
}

.related-cases .related-case-card .case-card-metrics small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .case-hero .case-hero-summary {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: -96px clamp(14px, 2vw, 22px) clamp(14px, 2vw, 22px);
  }

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

  .case-work .case-process-list,
  .case-creatives .case-creatives-grid,
  .case-results .case-results-gallery {
    grid-template-columns: 1fr;
  }

  .case-creatives .case-creative-card.is-primary,
  .case-results .case-result-image.is-primary {
    grid-row: auto;
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .case-quick-metrics-section .container {
    width: min(100% - 32px, 1140px);
  }

  .case-hero .case-hero-kpis,
  .case-quick-metrics,
  .case-initial .case-start-metrics,
  .case-work .case-process-list {
    grid-template-columns: 1fr;
  }

  .case-quick-metric,
  .case-work .case-process-list article {
    min-height: 0;
  }

  .case-results .case-results-copy {
    border-left-width: 3px;
  }
}

@media (max-width: 430px) {
  .case-quick-metrics-section .container {
    width: min(100% - 24px, 1140px);
  }

  .case-hero .case-hero-summary {
    border-radius: 20px;
    padding: 14px;
  }

  .case-quick-metric {
    border-radius: 18px;
    padding: 18px;
  }

  .case-insight blockquote {
    border-radius: 22px;
    padding: 22px;
  }
}

/* Case detail reference-style readability polish */
.case-detail-page .case-hero .case-hero-inner {
  align-items: center;
}

.case-detail-page .case-hero .case-title {
  max-width: 820px;
  font-size: clamp(42px, 5.4vw, 78px);
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.case-detail-page .case-hero .case-excerpt {
  max-width: 620px;
}

.case-detail-page .case-hero .case-hero-summary {
  max-width: min(410px, calc(100% - 28px));
  gap: 12px;
}

.case-detail-page .case-quick-metrics {
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
}

.case-detail-page .case-quick-metric {
  min-height: 118px;
  padding: clamp(18px, 2vw, 24px);
}

.case-detail-page .case-quick-metric span,
.case-detail-page .case-result-card span,
.case-detail-page .case-start-metric span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-detail-page .case-content-panel {
  padding-block: clamp(34px, 5vw, 68px);
}

.case-detail-page .case-content-panel .case-content-inner {
  border-radius: clamp(30px, 5vw, 60px);
  padding: clamp(26px, 5.4vw, 72px);
  background:
    radial-gradient(circle at 86% 6%, rgba(139, 92, 246, 0.09), transparent 20rem),
    #f8f7fb;
  box-shadow: 0 38px 110px rgba(12, 12, 18, 0.12);
}

.case-detail-page .case-section {
  min-width: 0;
}

.case-detail-page .case-section .section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(760px, 100%);
  margin: 0 auto clamp(24px, 3.4vw, 42px);
  gap: 12px;
  text-align: center;
}

.case-detail-page .case-section .section-head .eyebrow {
  margin: 0;
}

.case-detail-page .case-section .section-head h2 {
  max-width: 720px;
  margin: 0;
  text-wrap: balance;
}

.case-detail-page .case-section .case-section-inline-head {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  width: 100%;
  max-width: 100%;
  margin: 0 0 clamp(18px, 2.7vw, 30px);
  gap: 10px;
  text-align: center;
}

.case-detail-page .case-section .case-section-inline-head .eyebrow {
  justify-self: start;
}

.case-detail-page .case-section .case-section-inline-head.is-right .eyebrow {
  justify-self: end;
}

.case-detail-page .case-section .case-section-inline-head h2 {
  justify-self: center;
  max-width: min(680px, 100%);
}

.case-detail-page .case-initial .case-initial-layout,
.case-detail-page .case-work .case-work-layout.has-media,
.case-detail-page .case-audience .case-audience-layout.has-media {
  align-items: start;
}

.case-detail-page .case-initial .case-initial-content,
.case-detail-page .case-work .case-work-copy,
.case-detail-page .case-audience .case-audience-copy {
  max-width: 680px;
  padding-top: 0;
}

.case-detail-page .case-initial .case-start-metrics,
.case-detail-page .case-results .case-results-grid {
  gap: 12px;
}

.case-detail-page .case-start-metric,
.case-detail-page .case-result-card {
  min-height: 118px;
}

.case-detail-page .case-work .case-process-list article {
  min-height: 128px;
}

.case-detail-page .case-work .case-process-list article p {
  font-size: clamp(15px, 1.25vw, 18px);
}

.case-detail-page .case-audience .case-segments span {
  line-height: 1.25;
}

.case-detail-page .case-creatives .case-creatives-layout {
  align-items: start;
}

.case-detail-page .case-creatives .case-creatives-copy {
  max-width: 680px;
}

.case-detail-page .case-creatives .case-creatives-grid,
.case-detail-page .case-results .case-results-gallery {
  gap: clamp(12px, 1.8vw, 18px);
}

.case-detail-page .case-creatives .case-creative-card,
.case-detail-page .case-results .case-result-image {
  border-radius: clamp(20px, 3vw, 32px);
}

.case-detail-page .case-results .case-results-copy {
  max-width: 860px;
}

.case-detail-page .case-insight blockquote {
  max-width: 980px;
}

.case-detail-page .related-cases .related-case-grid {
  align-items: stretch;
}

.case-detail-page .related-cases .related-case-card {
  min-height: 280px;
}

.case-detail-page .case-cta .case-cta-box {
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
}

.case-detail-page .case-cta .case-cta-box .btn {
  white-space: normal;
  text-align: center;
}

/* Case detail final blocks readability polish */
.case-detail-page .case-results.case-section {
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: clamp(26px, 4vw, 46px);
  padding: clamp(22px, 3.6vw, 46px);
  background:
    radial-gradient(circle at 88% 4%, rgba(139, 92, 246, 0.12), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  box-shadow: 0 22px 70px rgba(12, 12, 18, 0.08);
}

.case-detail-page .case-results .case-results-grid {
  grid-template-columns: repeat(auto-fit, minmax(174px, 1fr));
  gap: clamp(12px, 1.8vw, 18px);
  margin-top: 0;
}

.case-detail-page .case-results .case-result-card {
  min-height: 126px;
  border-color: rgba(139, 92, 246, 0.14);
  border-radius: 20px;
  padding: clamp(18px, 2vw, 24px);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(12, 12, 18, 0.07);
}

.case-detail-page .case-results .case-result-card strong {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
}

.case-detail-page .case-results .case-results-copy {
  max-width: 860px;
  margin-top: clamp(22px, 3vw, 34px);
  border: 0;
  border-left: 5px solid var(--accent);
  border-radius: 20px;
  padding: clamp(18px, 2.5vw, 28px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(12, 12, 18, 0.06);
}

.case-detail-page .case-results .case-results-copy p {
  max-width: 780px;
  color: #312d39;
  font-size: clamp(16px, 1.15vw, 18px);
}

.case-detail-page .case-results .case-results-gallery {
  margin-top: clamp(20px, 3vw, 36px);
}

.case-detail-page .case-insight.case-section {
  overflow: hidden;
  border-radius: clamp(28px, 4vw, 48px);
  padding: clamp(24px, 4vw, 48px);
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 0%, rgba(139, 92, 246, 0.36), transparent 22rem),
    radial-gradient(circle at 12% 100%, rgba(255, 255, 255, 0.08), transparent 20rem),
    #111114;
  box-shadow: 0 28px 80px rgba(12, 12, 18, 0.18);
}

.case-detail-page .case-insight .section-head {
  margin-bottom: clamp(18px, 2.8vw, 32px);
}

.case-detail-page .case-insight .section-head h2 {
  color: #ffffff;
}

.case-detail-page .case-insight .section-head .eyebrow {
  border-color: rgba(255, 255, 255, 0.22);
  color: #d8c7ff;
  background: rgba(255, 255, 255, 0.08);
}

.case-detail-page .case-insight blockquote {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 6px solid var(--accent);
  border-radius: clamp(20px, 3vw, 32px);
  padding: clamp(22px, 3.5vw, 42px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.case-detail-page .case-insight blockquote p {
  max-width: 860px;
  color: #ffffff;
  font-size: clamp(20px, 2.6vw, 34px);
  line-height: 1.22;
}

.case-detail-page .case-cta {
  padding-top: clamp(18px, 3vw, 38px);
}

.case-detail-page .case-cta .case-cta-box {
  position: relative;
  grid-template-columns: minmax(0, 0.78fr) minmax(180px, auto);
  border: 1px solid rgba(139, 92, 246, 0.14);
  background:
    radial-gradient(circle at 92% 18%, rgba(139, 92, 246, 0.16), transparent 18rem),
    #f8f7fb;
  box-shadow: 0 24px 90px rgba(12, 12, 18, 0.18);
}

.case-detail-page .case-cta .case-cta-box h2 {
  max-width: 760px;
  font-size: clamp(30px, 4.1vw, 56px);
  line-height: 1.02;
  text-wrap: balance;
}

.case-detail-page .case-cta .case-cta-box p:not(.eyebrow) {
  max-width: 620px;
  color: #4d4857;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.65;
}

.case-detail-page .case-cta .case-cta-box .btn {
  min-height: 54px;
  padding-inline: clamp(22px, 3vw, 34px);
  justify-self: end;
  box-shadow: 0 14px 36px rgba(139, 92, 246, 0.28);
}

@media (max-width: 980px) {
  .case-detail-page .case-content-panel .case-content-inner {
    border-radius: 36px;
  }

  .case-detail-page .case-hero .case-hero-summary {
    max-width: calc(100% - 28px);
  }
}

@media (max-width: 720px) {
  .case-detail-page .case-content-panel {
    padding-block: 26px;
  }

  .case-detail-page .case-content-panel .case-content-inner {
    width: min(100%, 100%);
    border-radius: 28px;
    padding: 24px 18px;
  }

  .case-detail-page .case-section .section-head {
    margin-bottom: 18px;
  }

  .case-detail-page .case-start-metric,
  .case-detail-page .case-result-card,
  .case-detail-page .related-cases .related-case-card {
    min-height: 0;
  }

  .case-detail-page .case-cta .case-cta-box {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .case-detail-page .case-cta .case-cta-box .btn {
    justify-self: start;
  }
}

@media (max-width: 430px) {
  .case-detail-page .case-hero .case-title {
    max-width: 100%;
  }

  .case-detail-page .case-content-panel .case-content-inner {
    border-radius: 24px;
    padding: 22px 14px;
  }

  .case-detail-page .case-results.case-section,
  .case-detail-page .case-insight.case-section {
    border-radius: 24px;
    padding: 20px 14px;
  }

  .case-detail-page .case-quick-metrics {
    grid-template-columns: 1fr;
  }
}

/* Case detail width and reference simplicity polish */
.case-detail-page .cms-detail-header .header-inner,
.case-detail-page .case-hero .container,
.case-detail-page .case-quick-metrics-section .container,
.case-detail-page .case-content-panel .container,
.case-detail-page .related-cases .container,
.case-detail-page .case-cta .container {
  width: min(1350px, calc(100% - 48px));
  max-width: 1350px;
  margin-inline: auto;
  box-sizing: border-box;
}

.case-detail-page .case-hero {
  padding-block: clamp(112px, 10vw, 150px) clamp(64px, 7vw, 92px);
  background:
    radial-gradient(circle at 82% 10%, rgba(139, 92, 246, 0.18), transparent 30rem),
    #09090a;
}

.case-detail-page .case-hero .case-hero-inner {
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.86fr);
  gap: clamp(34px, 4.8vw, 72px);
}

.case-detail-page .case-hero .case-title {
  max-width: 840px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.98;
}

.case-detail-page .case-hero .case-excerpt {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.case-detail-page .case-hero .case-detail-cover,
.case-detail-page .case-initial .case-initial-image,
.case-detail-page .case-work .case-work-image,
.case-detail-page .case-audience .case-audience-image,
.case-detail-page .case-creatives .case-creative-card,
.case-detail-page .case-results .case-result-image {
  border-color: rgba(18, 18, 24, 0.08);
  border-radius: clamp(18px, 2.2vw, 28px);
  background: #eceaf1;
  box-shadow: 0 18px 54px rgba(12, 12, 18, 0.14);
}

.case-detail-page .case-hero .case-detail-cover {
  min-height: clamp(320px, 34vw, 520px);
}

.case-detail-page .case-hero .case-hero-summary {
  border-radius: 20px;
  background: rgba(12, 12, 16, 0.72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.case-detail-page .case-hero .case-hero-kpi {
  min-height: 86px;
  border-radius: 14px;
}

.case-detail-page .case-quick-metrics-section {
  margin-top: 0;
  padding: clamp(24px, 4vw, 44px) 0;
}

.case-detail-page .case-quick-metrics {
  gap: clamp(12px, 1.8vw, 18px);
}

.case-detail-page .case-quick-metric {
  min-height: 112px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: #151419;
  box-shadow: none;
}

.case-detail-page .case-content-panel {
  padding-block: clamp(34px, 5vw, 66px);
}

.case-detail-page .case-content-panel .case-content-inner,
.case-detail-page .case-content-panel .case-content-grid {
  width: min(1350px, calc(100% - 48px));
  max-width: 1350px;
  margin-inline: auto;
}

.case-detail-page .case-content-panel .case-content-inner {
  gap: clamp(48px, 5.6vw, 76px);
  border-radius: clamp(28px, 4vw, 46px);
  padding: clamp(30px, 4.4vw, 58px);
  background: #f7f6fa;
  box-shadow: 0 24px 74px rgba(12, 12, 18, 0.1);
}

.case-detail-page .case-initial .case-initial-layout,
.case-detail-page .case-work .case-work-layout.has-media,
.case-detail-page .case-audience .case-audience-layout.has-media,
.case-detail-page .case-creatives .case-creatives-layout {
  gap: clamp(28px, 4vw, 58px);
}

.case-detail-page .case-initial .case-initial-content p,
.case-detail-page .case-work .case-work-copy p,
.case-detail-page .case-audience .case-audience-copy p,
.case-detail-page .case-creatives .case-creatives-copy p,
.case-detail-page .case-results .case-results-copy p {
  color: #595763;
  line-height: 1.72;
}

.case-detail-page .case-start-metric,
.case-detail-page .case-result-card,
.case-detail-page .case-work .case-process-list article {
  border-color: rgba(18, 18, 24, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(12, 12, 18, 0.06);
}

.case-detail-page .case-results.case-section {
  border-color: rgba(18, 18, 24, 0.08);
  border-radius: clamp(24px, 3.5vw, 38px);
  background: #ffffff;
  box-shadow: 0 16px 46px rgba(12, 12, 18, 0.07);
}

.case-detail-page .case-results .case-results-copy {
  max-width: 920px;
  border-left-width: 4px;
  background: #f7f6fa;
  box-shadow: none;
}

.case-detail-page .case-insight.case-section {
  border: 1px solid rgba(18, 18, 24, 0.08);
  border-radius: clamp(24px, 3.5vw, 38px);
  color: #111116;
  background: #ffffff;
  box-shadow: 0 16px 46px rgba(12, 12, 18, 0.07);
}

.case-detail-page .case-insight .section-head h2 {
  color: #111116;
}

.case-detail-page .case-insight .section-head .eyebrow {
  border-color: rgba(139, 92, 246, 0.3);
  color: #7c4dff;
  background: rgba(139, 92, 246, 0.06);
}

.case-detail-page .case-insight blockquote {
  border-color: rgba(139, 92, 246, 0.16);
  border-left-color: var(--accent);
  background: #f7f6fa;
}

.case-detail-page .case-insight blockquote p {
  color: #17151c;
}

.case-detail-page .related-cases {
  padding-block: clamp(58px, 7vw, 92px);
  background: #0a0a0b;
}

.case-detail-page .related-cases .related-case-card {
  min-height: 250px;
}

.case-detail-page .case-cta {
  padding-block: clamp(22px, 4vw, 44px) clamp(66px, 7vw, 96px);
}

.case-detail-page .case-cta .case-cta-box {
  border-color: rgba(18, 18, 24, 0.08);
  border-radius: clamp(24px, 3.5vw, 38px);
  background: #ffffff;
  box-shadow: 0 20px 62px rgba(12, 12, 18, 0.12);
}

@media (max-width: 980px) {
  .case-detail-page .case-hero .case-hero-inner {
    grid-template-columns: 1fr;
  }

  .case-detail-page .case-content-panel .case-content-inner {
    border-radius: 32px;
  }
}

@media (max-width: 720px) {
  .case-detail-page .cms-detail-header .header-inner,
  .case-detail-page .case-hero .container,
  .case-detail-page .case-quick-metrics-section .container,
  .case-detail-page .case-content-panel .container,
  .case-detail-page .related-cases .container,
  .case-detail-page .case-cta .container,
  .case-detail-page .case-content-panel .case-content-inner,
  .case-detail-page .case-content-panel .case-content-grid {
    width: min(100% - 32px, 1350px);
  }

  .case-detail-page .case-hero {
    padding-block: 104px 46px;
  }

  .case-detail-page .case-content-panel .case-content-inner {
    gap: 42px;
    border-radius: 26px;
    padding: 22px 18px;
  }
}

@media (max-width: 430px) {
  .case-detail-page .cms-detail-header .header-inner,
  .case-detail-page .case-hero .container,
  .case-detail-page .case-quick-metrics-section .container,
  .case-detail-page .case-content-panel .container,
  .case-detail-page .related-cases .container,
  .case-detail-page .case-cta .container,
  .case-detail-page .case-content-panel .case-content-inner,
  .case-detail-page .case-content-panel .case-content-grid {
    width: min(100% - 24px, 1350px);
  }

  .case-detail-page .case-content-panel .case-content-inner,
  .case-detail-page .case-results.case-section,
  .case-detail-page .case-insight.case-section,
  .case-detail-page .case-cta .case-cta-box {
    border-radius: 22px;
  }
}

/* Case detail label position fix */
.case-detail-page .case-section .case-section-inline-head,
.case-detail-page .case-results .section-head,
.case-detail-page .case-insight .section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: min(720px, 100%);
  margin-right: 0;
  margin-left: 0;
  gap: 10px;
  text-align: left;
}

.case-detail-page .case-section .case-section-inline-head .eyebrow,
.case-detail-page .case-section .case-section-inline-head.is-right .eyebrow,
.case-detail-page .case-results .section-head .eyebrow,
.case-detail-page .case-insight .section-head .eyebrow {
  align-self: flex-start;
  justify-self: flex-start;
  margin: 0;
}

.case-detail-page .case-section .case-section-inline-head h2,
.case-detail-page .case-results .section-head h2,
.case-detail-page .case-insight .section-head h2 {
  align-self: flex-start;
  justify-self: flex-start;
  max-width: min(680px, 100%);
  text-align: left;
}

@media (max-width: 720px) {
  .case-detail-page .case-section .case-section-inline-head,
  .case-detail-page .case-results .section-head,
  .case-detail-page .case-insight .section-head {
    max-width: 100%;
    gap: 9px;
  }
}

/* Hero dynamic media card polish */
@media (min-width: 981px) {
  .hero {
    height: auto;
    min-height: clamp(680px, 72svh, 820px);
    padding-block: clamp(42px, 5svh, 66px) clamp(112px, 12svh, 170px);
  }

  .hero .container.hero-grid {
    width: min(1460px, calc(100% - 36px));
  }

  .hero .hero-grid {
    min-height: clamp(500px, calc(72svh - 172px), 610px);
    grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
    gap: clamp(26px, 2.45vw, 48px);
  }

  .firstSection__button {
    top: -70px;
  }

  .cases.section {
    padding-top: clamp(70px, 5vw, 96px);
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .hero {
    height: auto;
    min-height: clamp(660px, 84svh, 740px);
    max-height: none;
    padding-block: clamp(30px, 4.6svh, 38px) clamp(108px, 14svh, 132px);
  }

  .hero .hero-grid {
    height: auto;
    min-height: clamp(500px, calc(84svh - 160px), 560px);
    grid-template-columns: minmax(0, 0.94fr) minmax(540px, 1.06fr);
    gap: clamp(22px, 2.2vw, 38px);
    align-items: center;
  }

  .hero h1 {
    max-width: min(760px, 100%);
    font-size: clamp(40px, 3.55vw, 54px);
    line-height: 1.02;
  }

  .hero .hero-text {
    margin-bottom: 14px;
  }

  .hero .hero-trust {
    margin-bottom: 14px;
  }

  .hero .hero-team-visual {
    width: min(100%, 760px);
    max-width: min(100%, 760px);
  }

  .hero .hero-team-badges {
    bottom: 14px;
  }

  .hero .hero-team-proof {
    right: 18px;
    bottom: 16px;
  }

  .firstSection__button {
    top: -58px;
    width: 112px;
    height: 112px;
    gap: 10px;
    font-size: 11px;
  }

  .cases.section {
    padding-top: clamp(88px, 7vw, 116px);
  }
}

@media (min-width: 981px) and (max-height: 740px) {
  .hero {
    min-height: 660px;
    padding-block: 28px 116px;
  }

  .hero .hero-grid {
    min-height: auto;
  }

  .hero .hero-team-visual {
    width: min(100%, 720px);
    max-width: min(100%, 720px);
  }

  .firstSection__button {
    top: -50px;
  }
}

.hero .hero-team-visual {
  width: min(100%, 880px);
  max-width: min(100%, 880px);
  min-height: 0;
  aspect-ratio: 16 / 10.25;
  margin-right: 0;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 18%, rgba(139, 92, 246, 0.34), transparent 54%),
    linear-gradient(135deg, rgba(12, 12, 18, 0.96), rgba(35, 18, 64, 0.92));
  box-shadow:
    0 28px 80px rgba(139, 92, 246, 0.22),
    0 32px 90px rgba(0, 0, 0, 0.42);
}

.hero .hero-team-visual::before {
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 32%, rgba(139, 92, 246, 0.08)),
    radial-gradient(circle at 78% 10%, rgba(96, 165, 250, 0.2), transparent 42%);
  filter: none;
  opacity: 0.68;
}

.hero .hero-team-glow {
  inset: -26% -22% 34% 18%;
  z-index: 0;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.42), transparent 64%);
  filter: blur(18px);
  opacity: 0.92;
  transform: none;
}

.hero .hero-team-photo {
  inset: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  box-shadow: none;
}

.hero .hero-team-photo picture {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.hero .hero-team-photo img {
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(1.04) contrast(1.05) brightness(1.04);
  transform: none;
}

.hero .hero-team-photo::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.28), transparent 46%),
    linear-gradient(180deg, transparent 58%, rgba(3, 3, 6, 0.46) 100%);
}

.hero .hero-team-photo::after {
  background:
    radial-gradient(circle at 64% 20%, rgba(139, 92, 246, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 38%);
  mix-blend-mode: screen;
  opacity: 0.34;
}

.hero .hero-team-badges {
  left: clamp(14px, 2.4vw, 28px);
  bottom: clamp(12px, 1.8vw, 20px);
  max-width: min(320px, calc(100% - 36px));
  gap: 7px;
}

.hero .hero-team-badges span {
  padding: 7px 11px 7px 28px;
  background: rgba(9, 9, 12, 0.58);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  font-size: 11px;
}

.hero .hero-team-badges span::before {
  left: 11px;
}

.hero .hero-team-proof {
  top: auto;
  right: clamp(16px, 2.2vw, 26px);
  bottom: clamp(16px, 2vw, 24px);
}

@media (max-width: 1100px) {
  .hero .hero-team-visual {
    width: min(100%, 700px);
    max-width: min(100%, 700px);
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  .hero .hero-team-proof {
    bottom: 88px;
  }
}

@media (max-width: 720px) {
  .site-header .container.header-inner,
  .hero .container.hero-grid {
    box-sizing: border-box;
    width: min(1140px, calc(100% - 28px));
    max-width: calc(100vw - 28px);
  }

  .hero .hero-grid,
  .hero .hero-content,
  .hero .hero-actions {
    min-width: 0;
  }

  .hero .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  .hero .hero-actions .btn-primary {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  .hero .hero-team-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    aspect-ratio: 16 / 10.25;
    border-radius: 26px;
  }

  .hero .hero-team-photo {
    inset: 0;
    border-radius: inherit;
  }

  .hero .hero-team-glow {
    inset: -18% -10% 42% 8%;
  }

  .hero .hero-team-badges {
    right: 14px;
    bottom: 12px;
    left: 14px;
    gap: 6px;
  }

  .hero .hero-team-badges span {
    padding: 6px 9px 6px 25px;
    font-size: 10px;
  }

  .hero .hero-team-badges span::before {
    left: 10px;
  }
}

@media (max-width: 430px) {
  .site-header .container.header-inner,
  .hero .container.hero-grid {
    width: min(1140px, calc(100% - 24px));
    max-width: calc(100vw - 24px);
  }

  .hero .hero-team-visual {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10.75;
  }
}

/* Premium footer */
.footer-cta {
  overflow-x: clip;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(28px, 4vw, 46px) 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(139, 92, 246, 0.2), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    #08070d;
}

.footer-cta-inner,
.footer .footer-shell {
  width: min(1080px, calc(100% - 40px));
  max-width: calc(100vw - 40px);
  margin: 0 auto;
}

.footer-cta-inner {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 34px);
}

.footer-cta-copy {
  display: grid;
  min-width: 0;
  max-width: 650px;
  gap: 8px;
}

.footer-cta-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.12;
  letter-spacing: 0;
}

.footer-cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.55;
}

.footer-cta-actions {
  display: flex;
  min-width: min(100%, 390px);
  flex: 0 1 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-cta-actions .btn {
  min-width: min(100%, 172px);
  min-height: 46px;
  padding: 13px 18px;
  white-space: normal;
}

.footer {
  overflow-x: clip;
  border-top: 0;
  padding: clamp(34px, 4.8vw, 58px) 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0)),
    #070707;
}

.footer .footer-shell {
  display: grid;
  gap: clamp(22px, 3vw, 30px);
}

.footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.14fr) minmax(132px, 0.72fr) minmax(160px, 0.78fr) minmax(150px, 0.68fr);
  align-items: start;
  gap: clamp(20px, 3vw, 38px);
}

.footer .footer-brand,
.footer .footer-nav-group,
.footer .footer-contact-group,
.footer .footer-social-group {
  display: grid;
  min-width: 0;
  gap: 12px;
}

.footer .footer-brand {
  gap: 14px;
}

.footer .logo {
  min-height: 36px;
  align-items: center;
  color: #ffffff;
  line-height: 1;
}

.footer .logo-image,
.footer .logo-mark {
  flex: 0 0 auto;
}

.footer .logo-text {
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.footer-brand-description {
  max-width: 290px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.55;
}

.footer .footer-group-title {
  color: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer .footer-links,
.footer .footer-contacts,
.footer .footer-social-links,
.footer-policy-links {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.footer .footer-links a,
.footer .footer-contacts a,
.footer .footer-social-links a,
.footer-policy-links a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
  word-break: normal;
}

.footer .footer-links a:hover,
.footer .footer-contacts a:hover,
.footer .footer-social-links a:hover,
.footer-policy-links a:hover {
  color: #a78bfa;
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0 18px;
}

.footer .footer-legal {
  width: auto;
  max-width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.45;
}

.footer-policy-links {
  grid-auto-flow: column;
  gap: 14px;
}

.footer-policy-links a {
  min-height: 28px;
  font-size: 12px;
}

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

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

  .footer-brand-description {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .footer-cta-inner,
  .footer .footer-shell {
    width: min(1080px, calc(100% - 28px));
    max-width: calc(100vw - 28px);
  }

  .footer-cta-inner {
    display: grid;
    align-items: start;
  }

  .footer-cta-actions {
    min-width: 0;
    justify-content: stretch;
  }

  .footer-cta-actions .btn {
    width: 100%;
  }

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

  .footer .footer-brand {
    order: 1;
    grid-column: auto;
  }

  .footer .footer-contact-group {
    order: 2;
  }

  .footer .footer-social-group {
    order: 3;
  }

  .footer .footer-nav-group {
    order: 4;
  }

  .footer .footer-links a,
  .footer .footer-contacts a,
  .footer .footer-social-links a {
    min-height: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-policy-links {
    grid-auto-flow: row;
    gap: 6px;
  }
}

@media (max-width: 640px) {
  .footer-cta {
    padding: 30px 0;
  }

  .footer-cta-copy {
    gap: 6px;
  }

  .footer-cta-actions {
    gap: 8px;
  }

  .footer-cta-actions .btn {
    min-height: 44px;
    padding: 12px 16px;
  }

  .footer {
    padding: 38px 0 0;
  }

  .footer-cta-inner,
  .footer .footer-shell {
    width: min(1080px, calc(100% - 32px));
    max-width: calc(100vw - 32px);
  }

  .footer .footer-shell {
    gap: 18px;
  }

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

  .footer .footer-brand,
  .footer .footer-nav-group,
  .footer .footer-contact-group,
  .footer .footer-social-group {
    gap: 9px;
  }

  .footer-brand-description {
    max-width: none;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
  }

  .footer .footer-group-title {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .footer .footer-contacts {
    gap: 5px;
  }

  .footer .footer-contacts a {
    min-height: 32px;
    font-size: 14px;
    line-height: 1.28;
  }

  .footer .footer-social-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .footer .footer-social-links a {
    justify-content: center;
    min-height: 38px;
    padding: 9px 10px;
    border: 1px solid rgba(167, 139, 250, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 820;
    line-height: 1.15;
    text-align: center;
  }

  .footer .footer-social-links a:hover {
    border-color: rgba(167, 139, 250, 0.46);
    background: rgba(167, 139, 250, 0.13);
    color: #ffffff;
    transform: none;
  }

  .footer .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
  }

  .footer .footer-links a {
    min-height: 32px;
    align-items: center;
    font-size: 14px;
    line-height: 1.25;
    white-space: normal;
  }

  .footer .footer-links a:hover {
    transform: none;
  }

  .footer-bottom {
    gap: 8px;
    padding: 12px 0 16px;
  }

  .footer .footer-legal {
    font-size: 12px;
  }
}

/* Settings-driven contacts */
.lead-quick-contact {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.cta-section .lead-quick-contact,
.final-cta .lead-quick-contact {
  display: none;
}

.lead-quick-contact strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.lead-quick-contact div {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 8px;
}

.lead-quick-contact a,
.contact-social-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(139, 92, 246, 0.14);
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.lead-quick-contact a:hover,
.contact-social-link:hover {
  border-color: rgba(167, 139, 250, 0.5);
  background: rgba(139, 92, 246, 0.24);
}

.contact-page-shell main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(140, 90, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 8% 48%, rgba(104, 63, 210, 0.1), transparent 25rem),
    linear-gradient(155deg, #050507 0%, #0b0712 48%, #120a1f 100%);
}

.contact-page-shell main::before,
.contact-page-shell main::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.contact-page-shell main::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 94px 94px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 58%);
  opacity: 0.22;
}

.contact-page-shell main::after {
  background:
    radial-gradient(circle at 70% 34%, rgba(167, 139, 250, 0.12), transparent 22rem),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.035) 43%, transparent 82%);
  opacity: 0.88;
}

.contact-hero {
  position: relative;
  z-index: 1;
  padding: clamp(76px, 8vw, 118px) 0 clamp(38px, 5vw, 68px);
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.58fr);
  align-items: center;
  gap: clamp(28px, 5vw, 82px);
}

.contact-hero-copy {
  display: grid;
  min-width: 0;
  gap: clamp(18px, 2vw, 28px);
}

.contact-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
}

.contact-page-lead {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.62;
}

.contact-page-question {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.22;
}

.contact-hero-actions {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}

.contact-hero-actions .btn {
  min-width: min(100%, 210px);
}

.contact-hero-visual {
  position: relative;
  min-height: clamp(260px, 28vw, 420px);
  isolation: isolate;
}

.contact-hero-shape {
  position: absolute;
  inset: 8% 2% 6% 6%;
  border: 1px solid rgba(167, 139, 250, 0.24);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(140, 90, 255, 0.12), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.34),
    0 0 80px rgba(140, 90, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: rotate(-6deg);
}

.contact-hero-shape::before,
.contact-hero-shape::after {
  position: absolute;
  content: "";
}

.contact-hero-shape::before {
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
}

.contact-hero-shape::after {
  top: 24%;
  right: 16%;
  width: 46%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  box-shadow:
    0 52px 0 rgba(255, 255, 255, 0.12),
    -46px 104px 0 rgba(167, 139, 250, 0.18);
}

.contact-hero-card-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding-top: clamp(38px, 5vw, 76px);
}

.contact-hero-mini-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: min(100%, 310px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  padding: 14px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(8, 7, 13, 0.62);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.contact-hero-mini-card span {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(167, 139, 250, 0.82), rgba(139, 92, 246, 0.24)),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.contact-hero-mini-card strong {
  min-width: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.contact-hero-mini-card-2 {
  justify-self: end;
  transform: translateY(8px);
}

.contact-hero-mini-card-3 {
  margin-left: clamp(18px, 4vw, 54px);
  transform: translateY(16px);
}

.contact-page-section {
  position: relative;
  z-index: 1;
  padding: clamp(18px, 3vw, 34px) 0;
}

.contact-section-inner {
  display: grid;
  min-width: 0;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 28px;
  padding: clamp(20px, 2.6vw, 32px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.026)),
    rgba(8, 7, 13, 0.38);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.18);
}

.contact-section-head h2,
.contact-form-copy h2 {
  margin: 0;
  letter-spacing: 0;
}

.contact-section-head h2 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.14;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  min-width: 0;
  min-height: 112px;
  align-content: start;
  column-gap: 13px;
  row-gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.038)),
    linear-gradient(135deg, rgba(140, 90, 255, 0.09), rgba(255, 255, 255, 0.022)),
    rgba(12, 10, 19, 0.64);
  color: #ffffff;
  text-decoration: none;
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.contact-card-mark {
  position: relative;
  display: grid;
  grid-row: span 2;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(167, 139, 250, 0.34);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(140, 90, 255, 0.34), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
}

.contact-card-mark::before,
.contact-card-mark::after {
  position: absolute;
  content: "";
}

.contact-card-mark-telegram::after {
  width: 18px;
  height: 15px;
  background: rgba(255, 255, 255, 0.88);
  clip-path: polygon(0 42%, 100% 0, 72% 100%, 48% 64%, 32% 82%);
}

.contact-card-mark-instagram::after {
  width: 19px;
  height: 19px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 7px;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.02);
}

.contact-card-mark-instagram::before {
  top: 12px;
  right: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
}

.contact-card-mark-email::after {
  width: 20px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 4px;
}

.contact-card-mark-email::before {
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.86);
  border-bottom: 2px solid rgba(255, 255, 255, 0.86);
  transform: translateY(-2px) rotate(45deg);
}

.contact-card-mark-phone::after {
  width: 16px;
  height: 16px;
  border-bottom: 4px solid rgba(255, 255, 255, 0.86);
  border-left: 4px solid rgba(255, 255, 255, 0.86);
  border-radius: 4px 2px 7px 2px;
  transform: rotate(-36deg);
}

.contact-card-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-card strong {
  min-width: 0;
  grid-column: 2;
  overflow-wrap: anywhere;
  color: #ffffff;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.3;
}

.contact-card:hover {
  border-color: rgba(167, 139, 250, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.052)),
    linear-gradient(135deg, rgba(140, 90, 255, 0.14), rgba(255, 255, 255, 0.032)),
    rgba(12, 10, 19, 0.7);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.24),
    0 0 42px rgba(140, 90, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.contact-social-inner {
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  background:
    linear-gradient(135deg, rgba(140, 90, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(8, 7, 13, 0.42);
}

.contact-social-head {
  gap: 7px;
}

.contact-social-head p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(14px, 1.08vw, 16px);
  font-weight: 700;
  line-height: 1.5;
}

.contact-social-links {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.contact-form-section {
  position: relative;
  z-index: 1;
  padding: clamp(36px, 5vw, 72px) 0 clamp(46px, 6vw, 84px);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.82fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 30px;
  padding: clamp(22px, 3vw, 38px);
  background:
    radial-gradient(circle at 16% 18%, rgba(140, 90, 255, 0.11), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.056), rgba(255, 255, 255, 0.026)),
    rgba(8, 7, 13, 0.48);
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.22);
}

.contact-form-copy {
  display: grid;
  min-width: 0;
  gap: 16px;
}

.contact-form-copy h2 {
  max-width: 620px;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.08;
}

.contact-form-copy p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.18vw, 18px);
  line-height: 1.62;
}

.contact-after-panel {
  display: grid;
  max-width: 620px;
  gap: 14px;
  margin-top: clamp(10px, 1.6vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  padding: clamp(16px, 2vw, 22px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.018);
}

.contact-after-panel h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0;
}

.contact-after-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-after-list li {
  position: relative;
  min-width: 0;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 780;
  line-height: 1.42;
}

.contact-after-list li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8b5cf6;
  content: "";
}

.contact-page-form-panel,
.contact-page-form-panel .lead-form {
  min-width: 0;
}

.contact-page-form-panel {
  display: grid;
  gap: 12px;
}

.contact-simple-form {
  gap: 16px;
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  padding: clamp(20px, 2.6vw, 30px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.04)),
    rgba(9, 8, 15, 0.76);
  box-shadow:
    0 22px 72px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  scroll-margin-top: 110px;
}

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

.contact-simple-form .form-message-field textarea {
  min-height: 128px;
}

.contact-simple-form .form-feedback:empty {
  display: none;
}

.contact-form-privacy {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .contact-hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-hero-visual {
    min-height: auto;
  }

  .contact-hero-shape {
    inset: 4% 0 0;
  }

  .contact-hero-card-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 18px;
  }

  .contact-hero-mini-card {
    width: 100%;
  }

  .contact-hero-mini-card-2,
  .contact-hero-mini-card-3 {
    justify-self: stretch;
    margin-left: 0;
    transform: none;
  }

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

  .contact-social-inner,
  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .contact-page-form-panel {
    width: 100%;
  }

}

@media (max-width: 720px) {
  .contact-hero,
  .contact-page-section,
  .contact-form-section {
    overflow-x: clip;
  }

  .contact-hero > .container,
  .contact-page-section > .container,
  .contact-form-section > .container {
    width: min(1140px, calc(100% - 28px));
    max-width: calc(100vw - 28px);
  }

  .contact-hero {
    padding-top: clamp(58px, 14vw, 76px);
    padding-bottom: 28px;
  }

  .contact-hero-visual {
    display: none;
  }

  .contact-hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.2vw, 38px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .contact-hero-inner,
  .contact-section-inner,
  .contact-form-layout,
  .contact-page-form-panel,
  .contact-simple-form,
  .contact-after-panel,
  .contact-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .contact-hero-actions {
    width: 100%;
  }

  .contact-hero-actions .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .contact-section-inner,
  .contact-form-layout {
    border-radius: 22px;
    padding: 18px;
  }

  .contact-form-copy h2 {
    max-width: 100%;
    font-size: clamp(30px, 8.2vw, 38px);
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .contact-page-lead,
  .contact-page-question,
  .contact-form-copy p,
  .contact-after-list li,
  .contact-form-privacy {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .contact-page-question {
    font-size: 22px;
  }

  .contact-simple-form input,
  .contact-simple-form textarea,
  .contact-simple-form .btn {
    max-width: 100%;
  }

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

@media (max-width: 430px) {
  .lead-quick-contact div,
  .contact-social-links {
    flex-direction: column;
  }

  .lead-quick-contact a,
  .contact-social-link {
    width: 100%;
  }
}

/* First-step result panel balance */
.audit-deliverables .audit-deliverables-grid {
  width: min(1288px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.76fr);
  grid-template-areas:
    "intro result"
    "cards cards";
  align-items: center;
  column-gap: clamp(28px, 4.2vw, 56px);
  row-gap: clamp(24px, 3.4vw, 44px);
}

.audit-deliverables .audit-main,
.audit-deliverables .audit-deliverables-grid > div:first-child {
  display: contents;
  min-width: 0;
}

.audit-deliverables .audit-copy {
  grid-area: intro;
  position: static;
  max-width: none;
  min-width: 0;
}

.audit-deliverables .audit-copy h2,
.audit-deliverables .audit-deliverables-grid > div:first-child h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(44px, 4vw, 56px);
  letter-spacing: 0;
  line-height: 1.02;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.audit-deliverables .audit-copy .section-lead {
  max-width: 640px;
}

.audit-deliverables .deliverables-list {
  grid-area: cards;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.45vw, 20px);
  min-width: 0;
}

.audit-deliverables .audit-list article,
.audit-deliverables .deliverables-list .deliverable-card {
  min-height: clamp(214px, 16vw, 244px);
  padding: clamp(22px, 2.15vw, 30px);
}

.audit-deliverables .deliverables-list .deliverable-card span {
  margin-bottom: clamp(20px, 2.2vw, 32px);
}

.audit-deliverables .deliverables-list .deliverable-card h3 {
  max-width: none;
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1.04;
}

.audit-deliverables .audit-output {
  grid-area: result;
  position: relative;
  isolation: isolate;
  display: grid;
  align-self: center;
  justify-self: stretch;
  align-content: start;
  gap: clamp(14px, 1.7vw, 20px);
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  padding: clamp(24px, 2.6vw, 32px);
  border-color: rgba(139, 92, 246, 0.46);
  background:
    radial-gradient(circle at 90% 8%, rgba(139, 92, 246, 0.28), transparent 13rem),
    linear-gradient(145deg, rgba(139, 92, 246, 0.18), rgba(255, 255, 255, 0.035) 58%, rgba(139, 92, 246, 0.1)),
    rgba(18, 10, 32, 0.78);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.34),
    0 0 80px rgba(139, 92, 246, 0.18);
}

.audit-deliverables .audit-output::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(145deg, rgba(0, 0, 0, 0.82), transparent 72%);
}

.audit-deliverables .audit-output::after {
  content: "";
  position: absolute;
  inset: auto -18% -24% 18%;
  z-index: -1;
  height: 42%;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.2);
  filter: blur(42px);
}

.audit-deliverables .audit-output > * {
  position: relative;
  z-index: 1;
}

.audit-deliverables .audit-output strong {
  margin-bottom: 0;
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.2;
}

.audit-deliverables .audit-output ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.25vw, 14px);
}

.audit-deliverables .audit-output li {
  justify-content: flex-start;
  min-height: clamp(78px, 6vw, 92px);
  border-radius: 20px;
  padding: clamp(16px, 1.55vw, 20px);
  text-align: left;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

@media (max-width: 1440px) {
  .audit-deliverables .audit-copy h2,
  .audit-deliverables .audit-deliverables-grid > div:first-child h2 {
    font-size: clamp(42px, 4vw, 54px);
  }
}

@media (max-width: 980px) {
  .audit-deliverables .audit-deliverables-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "result"
      "cards";
    width: min(100% - 32px, 980px);
  }

  .audit-deliverables .audit-copy h2,
  .audit-deliverables .audit-deliverables-grid > div:first-child h2 {
    font-size: 42px;
  }

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

  .audit-deliverables .audit-output {
    min-height: 0;
    align-content: start;
  }
}

@media (max-width: 720px) {
  .audit-deliverables .audit-copy h2,
  .audit-deliverables .audit-deliverables-grid > div:first-child h2 {
    font-size: 38px;
    overflow-wrap: break-word;
  }

  .audit-deliverables .deliverables-list,
  .audit-deliverables .audit-output ul {
    grid-template-columns: 1fr;
  }

  .audit-deliverables .audit-output {
    min-height: 0;
    padding: 24px;
  }

  .audit-deliverables .audit-output li {
    min-height: 56px;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .audit-deliverables .audit-copy h2,
  .audit-deliverables .audit-deliverables-grid > div:first-child h2 {
    font-size: 35px;
    line-height: 1.05;
  }
}

/* Blog section compact premium layout */
.blog {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(139, 92, 246, 0.2), transparent 38%),
    linear-gradient(180deg, #100b19 0%, #0b0811 52%, #080808 100%);
}

.blog::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 84px 84px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68), transparent 82%);
}

.blog > .container {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 48px));
}

.blog.section {
  padding-block: clamp(46px, 4.4vw, 72px);
}

.blog .section-head {
  display: flex;
  max-width: min(860px, 100%);
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 auto clamp(18px, 2.2vw, 24px);
  text-align: center;
}

.blog .section-head .eyebrow {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 2px;
}

.blog .section-head h2 {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text);
  font-size: 58px;
  letter-spacing: 0;
  line-height: 1.02;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.blog .section-head p:not(.eyebrow) {
  max-width: 620px;
  margin: 4px auto 0;
  padding-top: 0;
  color: rgba(247, 247, 242, 0.72);
  font-size: 17px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.blog .blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  align-items: stretch;
}

.blog .blog-card {
  display: grid;
  min-height: clamp(390px, 29vw, 460px);
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(180deg, #fbfaff 0%, #f2eff9 100%);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(139, 92, 246, 0.08);
}

.blog .blog-card:hover {
  border-color: rgba(183, 148, 255, 0.46);
  box-shadow:
    0 30px 84px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(139, 92, 246, 0.16);
}

.blog .blog-visual {
  min-height: clamp(168px, 12vw, 210px);
  margin-bottom: clamp(18px, 1.8vw, 22px);
}

.blog .blog-card span,
.blog .blog-card h3,
.blog .blog-card p,
.blog .blog-card a {
  margin-left: clamp(20px, 2vw, 28px);
  margin-right: clamp(20px, 2vw, 28px);
}

.blog .blog-card span {
  width: fit-content;
  max-width: calc(100% - clamp(40px, 4vw, 56px));
  margin-bottom: 12px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 999px;
  padding: 7px 10px;
  color: #5b21b6;
  background: rgba(139, 92, 246, 0.08);
  line-height: 1;
  white-space: normal;
}

.blog .blog-card h3 {
  min-height: 0;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.blog .blog-card p {
  margin-top: -6px;
  color: #5f5d66;
  font-size: 15px;
  line-height: 1.55;
}

.blog .blog-card a {
  min-height: 40px;
  align-items: center;
  align-self: end;
  justify-content: flex-start;
  margin-top: auto;
  margin-bottom: clamp(20px, 2vw, 28px);
  color: #5b21b6;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.blog .blog-card a:hover {
  color: #3b0f8a;
}

.blog .blog-slider {
  width: max-content;
  max-width: 100%;
  margin: clamp(12px, 1.5vw, 18px) auto 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.blog .blog-slider button {
  width: 42px;
  height: 42px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(139, 92, 246, 0.28);
  box-shadow: none;
}

.blog .blog-slider button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.blog .blog-slider .slider-count {
  display: inline-flex;
  min-width: 66px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1180px) {
  .blog .section-head h2 {
    font-size: 52px;
  }

  .blog .blog-card h3 {
    font-size: 26px;
  }
}

@media (max-width: 980px) {
  .blog > .container {
    width: min(100% - 32px, 1240px);
  }

  .blog.section {
    padding-block: 58px;
  }

  .blog .section-head {
    max-width: min(760px, 100%);
    gap: 10px;
    margin-bottom: 22px;
  }

  .blog .section-head h2 {
    max-width: 720px;
    font-size: 48px;
  }

  .blog .section-head p:not(.eyebrow) {
    max-width: 620px;
  }

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

@media (max-width: 720px) {
  .blog {
    border-radius: 32px;
  }

  .blog > .container {
    width: min(100% - 28px, 1240px);
  }

  .blog.section {
    padding-block: 44px;
  }

  .blog .section-head {
    margin-bottom: 16px;
  }

  .blog .section-head h2 {
    font-size: 40px;
    line-height: 1.04;
  }

  .blog .section-head p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.58;
  }

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

  .blog .blog-card {
    min-height: 0;
    border-radius: 22px;
  }

  .blog .blog-card h3 {
    font-size: 24px;
  }

  .blog .blog-visual {
    min-height: 180px;
  }

  .blog .blog-slider {
    margin-top: 16px;
  }
}

@media (max-width: 430px) {
  .blog > .container {
    width: min(100% - 24px, 1240px);
  }

  .blog .blog-card span,
  .blog .blog-card h3,
  .blog .blog-card p,
  .blog .blog-card a {
    margin-left: 20px;
    margin-right: 20px;
  }

  .blog .blog-card span {
    max-width: calc(100% - 40px);
  }

  .blog .section-head h2 {
    font-size: 34px;
  }
}

/* Responsive audit hardening for decorative layers and carousel controls. */
.hero .hero-team-glow {
  inset: 0 0 auto;
  width: 100%;
  height: 68%;
}

.trust .trust-stats {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 156px), 1fr));
}

.trust .trust-stat,
.trust .trust-stats article {
  min-width: 0;
}

.trust .trust-stat strong,
.trust .trust-stats article strong,
.trust .trust-stat span,
.trust .trust-stats article span {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.audit-deliverables .audit-output::after {
  right: 0;
  bottom: 0;
  left: 18%;
  height: 34%;
}

.team .team-dots button {
  width: 32px;
  height: 32px;
}

.team .team-dots button.is-active {
  width: 42px;
}

@media (max-width: 1320px) and (min-width: 901px) {
  .team .team-carousel {
    --team-side-offset: clamp(250px, 24vw, 320px);
    padding-inline: clamp(40px, 4vw, 72px);
  }

  .team .team-slide[data-position="-2"],
  .team .team-slide[data-position="2"] {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.58);
  }
}

/* Softer light-to-dark landing transitions */
.cases,
.services,
.qualification,
.trust,
.audit-deliverables,
.cpl-methodology,
.advantages,
.forecast,
.cooperation,
.reviews {
  border-radius: clamp(24px, 3.2vw, 48px);
}

.cpl-methodology.section {
  padding-bottom: clamp(54px, 4.8vw, 78px);
}

.advantages.section,
.reviews.section {
  padding-top: clamp(58px, 5vw, 84px);
}

.forecast.section,
.cooperation.section {
  padding-block: clamp(62px, 5.4vw, 92px);
}

.cta-section,
.final-cta {
  position: relative;
  isolation: isolate;
  padding-block: clamp(34px, 4.4vw, 62px);
  background:
    radial-gradient(circle at 50% 4%, rgba(139, 92, 246, 0.16), transparent 30rem),
    linear-gradient(180deg, rgba(243, 241, 246, 0.09), rgba(8, 8, 8, 0) 18%, rgba(8, 8, 8, 0) 82%, rgba(243, 241, 246, 0.075)),
    transparent;
}

.cta-section::before,
.cta-section::after,
.final-cta::before {
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  height: clamp(22px, 3vw, 42px);
  pointer-events: none;
  content: "";
}

.cta-section::before,
.final-cta::before {
  top: 0;
  background: linear-gradient(180deg, rgba(243, 241, 246, 0.12), rgba(8, 8, 8, 0));
}

.cta-section::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(243, 241, 246, 0.1), rgba(8, 8, 8, 0));
}

.cta-section .cta-box,
.forecast > .container.forecast-box,
.final-cta .final-cta-box {
  border-radius: clamp(22px, 2.4vw, 34px);
}

@media (max-width: 980px) {
  .cases,
  .services,
  .qualification,
  .trust,
  .audit-deliverables,
  .cpl-methodology,
  .advantages,
  .forecast,
  .cooperation,
  .reviews {
    border-radius: clamp(22px, 4vw, 38px);
  }

  .cpl-methodology.section {
    padding-bottom: 58px;
  }

  .advantages.section,
  .reviews.section {
    padding-top: 58px;
  }

  .forecast.section,
  .cooperation.section {
    padding-block: 58px;
  }
}

@media (max-width: 720px) {
  .cases,
  .services,
  .qualification,
  .trust,
  .audit-deliverables,
  .cpl-methodology,
  .advantages,
  .forecast,
  .cooperation,
  .reviews {
    border-radius: clamp(18px, 6vw, 30px);
  }

  .cpl-methodology.section {
    padding-bottom: 46px;
  }

  .cta-section,
  .final-cta {
    padding-block: 26px 36px;
  }

  .advantages.section,
  .reviews.section {
    padding-top: 48px;
  }

  .forecast.section,
  .cooperation.section {
    padding-block: 48px;
  }

  .cta-section::before,
  .cta-section::after,
  .final-cta::before {
    height: 24px;
  }

  .cta-section .cta-box,
  .forecast > .container.forecast-box,
  .final-cta .final-cta-box {
    border-radius: 22px;
  }
}
