:root {
  color-scheme: light;
  --bg: #f4f0e8;
  --bg-alt: #fcfaf7;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --surface-ink: #11223d;
  --surface-ink-soft: rgba(17, 34, 61, 0.82);
  --text: #122038;
  --text-soft: #526074;
  --text-inverse: #eff3f8;
  --line: rgba(18, 32, 56, 0.1);
  --line-strong: rgba(18, 32, 56, 0.18);
  --accent: #143b6e;
  --accent-strong: #0d2c55;
  --accent-soft: rgba(20, 59, 110, 0.1);
  --gold: #b38a48;
  --gold-soft: rgba(179, 138, 72, 0.14);
  --danger: #8a2e2e;
  --shadow-lg: 0 30px 70px rgba(12, 24, 46, 0.12);
  --shadow-md: 0 18px 40px rgba(12, 24, 46, 0.1);
  --shadow-sm: 0 10px 22px rgba(12, 24, 46, 0.06);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-sans: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --content-measure: 66ch;
  --content-width: calc(100% - clamp(200px, 14vw, 240px));
  --section-gap: clamp(76px, 10vw, 128px);
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(179, 138, 72, 0.16), transparent 0 34%),
    radial-gradient(circle at 82% 16%, rgba(20, 59, 110, 0.12), transparent 0 28%),
    linear-gradient(180deg, #ede7de 0%, #f8f4ee 24%, #fcfaf7 100%);
  line-height: 1.68;
  min-width: 320px;
  overflow-x: hidden;
}

body[data-page="home"] {
  background: #fcfaf7;
}

body[data-page="home"] #content {
  position: relative;
  isolation: isolate;
}

body[data-page="home"] #content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: clamp(720px, 50vw, 900px);
  width: min(1820px, calc(100vw - 32px));
  height: clamp(1080px, 116vw, 1760px);
  transform: translateX(-50%);
  background: url("../images/home-russia-map-bg-muted.png") center 120px / contain no-repeat;
  opacity: 0.84;
  pointer-events: none;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 59, 110, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 59, 110, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at top, rgba(0, 0, 0, 0.6), transparent 78%);
  opacity: 0.4;
}

body[data-page="home"]::before {
  display: none;
}

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

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

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

button {
  border: 0;
  cursor: pointer;
}

main {
  position: relative;
  z-index: 1;
}

main p,
main li {
  font-size: 1.12rem;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  padding: 12px 16px;
  background: var(--surface-ink);
  color: var(--text-inverse);
  border-radius: 999px;
  z-index: 20;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: var(--content-width);
  margin-inline: auto;
}

.section {
  padding: var(--section-gap) 0;
}

.section--quiz-home {
  padding-bottom: 24px;
}

.section--seo-home {
  padding-top: 56px;
}

.section--faq-home {
  padding-bottom: 24px;
}

.section--tight {
  padding: clamp(56px, 8vw, 86px) 0;
}

.section--cta-home {
  padding-top: 56px;
}

.section--muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.88));
  border-block: 1px solid rgba(18, 32, 56, 0.06);
}

body[data-page="about"],
body[data-page="services"],
body[data-page="articles"],
body[data-page="contacts"],
body[data-page="privacy"],
body[data-page="sitemap"] {
  background:
    radial-gradient(circle at 18% 12%, rgba(179, 138, 72, 0.11), transparent 0 30%),
    radial-gradient(circle at 84% 14%, rgba(20, 59, 110, 0.08), transparent 0 24%),
    linear-gradient(180deg, #f3eee5 0%, #faf6f0 24%, #fcfaf7 100%);
}

body[data-page="about"] .grid.grid--3,
body[data-page="services"] .grid.grid--2,
body[data-page="services"] .grid.grid--3,
body[data-page="services"] .comparison,
body[data-page="services"] .timeline,
body[data-page="articles"] .article-layout,
body[data-page="articles"] .article-grid,
body[data-page="contacts"] .contact-grid,
body[data-page="sitemap"] .site-map-grid {
  position: relative;
  padding: clamp(22px, 2.4vw, 32px);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 12px 28px rgba(12, 24, 46, 0.04);
  isolation: isolate;
}

body[data-page="about"] .grid.grid--3 > *,
body[data-page="services"] .grid.grid--2 > *,
body[data-page="services"] .grid.grid--3 > *,
body[data-page="services"] .comparison > *,
body[data-page="services"] .timeline > *,
body[data-page="articles"] .article-layout > *,
body[data-page="articles"] .article-grid > *,
body[data-page="contacts"] .contact-grid > *,
body[data-page="sitemap"] .site-map-grid > * {
  position: relative;
  z-index: 1;
}

.section--ornament {
  position: relative;
  overflow: clip;
}

.section--ornament .container {
  position: relative;
}

.section--ornament .container::after {
  content: "";
  position: absolute;
  top: clamp(-18px, -1vw, -8px);
  right: clamp(-18px, -1vw, -8px);
  width: clamp(200px, 18vw, 280px);
  height: clamp(240px, 22vw, 340px);
  background:
    radial-gradient(circle at center, rgba(179, 138, 72, 0.16), transparent 58%),
    url("../images/process-scales-cutout.png") center top / contain no-repeat;
  opacity: 0.13;
  filter:
    saturate(0.94)
    brightness(1.02)
    blur(0.6px);
  pointer-events: none;
  z-index: 0;
}

.section--ornament .container > * {
  position: relative;
  z-index: 1;
}

.section--ornament-left .container::after {
  right: auto;
  left: clamp(-18px, -1vw, -8px);
}

.section--ornament-center .container::after {
  left: 50%;
  right: auto;
  top: -74px;
  transform: translateX(-50%);
  width: clamp(230px, 20vw, 320px);
  height: clamp(280px, 26vw, 380px);
  opacity: 0.11;
}

.section--brief-home {
  background: #ffffff;
  border-block: 0;
  padding-top: clamp(64px, 7vw, 88px);
  padding-bottom: clamp(64px, 7vw, 88px);
}

.section--deep-blue {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.08), transparent 0 22%),
    radial-gradient(circle at 84% 22%, rgba(179, 138, 72, 0.14), transparent 0 24%),
    linear-gradient(180deg, rgba(9, 24, 48, 0.98), rgba(17, 34, 61, 0.95));
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.section--deep-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.62), transparent 88%);
  opacity: 0.34;
}

.section--deep-blue .container {
  position: relative;
  z-index: 1;
}

.section--deep-blue .section-head h2 {
  color: var(--text-inverse);
}

.section--deep-blue .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(239, 243, 248, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
}

.section--deep-blue .service-card {
  background: linear-gradient(180deg, rgba(243, 246, 251, 0.98), rgba(231, 236, 245, 0.95));
  border-color: rgba(170, 185, 208, 0.22);
  box-shadow: 0 18px 34px rgba(5, 13, 24, 0.18);
}

.section--deep-blue .service-card h3 {
  color: var(--surface-ink);
}

.section--deep-blue .service-card p {
  color: rgba(63, 80, 106, 0.9);
}

.section--deep-blue .service-card .card__eyebrow {
  color: #bd9652;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(20, 59, 110, 0.08);
  border: 1px solid rgba(20, 59, 110, 0.12);
}

.eyebrow--inverse {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.12);
}

.eyebrow--cases-summary {
  width: fit-content;
  max-width: max-content;
  justify-self: start;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold), #d4b173);
  box-shadow: 0 0 0 6px rgba(179, 138, 72, 0.12);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-serif);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.35rem, 4.9vw, 4.3rem);
}

h2 {
  font-size: clamp(1.85rem, 3.3vw, 2.95rem);
}

h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.58rem);
}

p {
  margin: 0;
}

p,
li {
  text-wrap: pretty;
}

.lead {
  font-size: clamp(1.16rem, 1.72vw, 1.42rem);
  color: var(--text-soft);
  max-width: 760px;
  line-height: 1.74;
}

.text-soft {
  color: var(--text-soft);
}

.text-inverse {
  color: var(--text-inverse);
}

.section-head {
  display: grid;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  margin-bottom: 48px;
}

.section-head h2 {
  max-width: 900px;
  line-height: 1.08;
  text-wrap: balance;
}

.section-head__aside {
  color: var(--text-soft);
  max-width: 480px;
  line-height: 1.74;
}

.section-head__aside--service-note {
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.34));
  border: 1px solid rgba(18, 32, 56, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
  color: rgba(18, 32, 56, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.section-head--centered {
  grid-template-columns: 1fr;
  justify-items: center;
  margin-bottom: 42px;
  text-align: center;
}

.section-head--centered > div {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.section-head--centered h2 {
  max-width: 1480px;
  text-align: center;
}

.section-head--process h2 {
  max-width: 920px;
}

.section-head__title--about-process {
  max-width: min(54ch, 100%);
  margin-top: 10px;
}

.section-head__title--about-process span {
  display: block;
}

@media (min-width: 960px) {
  .section-head__title--about-process span {
    white-space: nowrap;
  }
}

.section-head__title--about-comparison {
  max-width: min(54ch, 100%);
  margin-top: 10px;
}

.section-head__title--about-comparison span {
  display: block;
}

@media (min-width: 960px) {
  .section-head__title--about-comparison span {
    white-space: nowrap;
  }
}

.section-head__title--services-comparison {
  max-width: min(56ch, 100%);
  margin-top: 10px;
}

.section-head__title--services-comparison span {
  display: block;
}

@media (min-width: 960px) {
  .section-head__title--services-comparison span {
    white-space: nowrap;
  }
}

.section-head__title--services-outcome {
  margin-top: 10px;
}

.section-head__title--service-work {
  margin-top: 10px;
}

.section-head__title--contacts-presence {
  max-width: min(52ch, 100%);
  margin-top: 10px;
}

.section-head__title--contacts-presence span {
  display: block;
}

@media (min-width: 960px) {
  .section-head__title--contacts-presence span {
    white-space: nowrap;
  }
}

.section-head__title--cases-projects {
  max-width: min(60ch, 100%);
  margin-top: 12px;
}

.section-head__title--cases-projects span {
  display: block;
}

@media (min-width: 960px) {
  .section-head__title--cases-projects span {
    white-space: nowrap;
  }
}

.section-head__title--cases-process {
  max-width: min(58ch, 100%);
  margin-top: 12px;
}

.section-head__title--cases-process span {
  display: block;
}

@media (min-width: 960px) {
  .section-head__title--cases-process span {
    white-space: nowrap;
  }
}

.section--process-home {
  position: relative;
  overflow: hidden;
}

.section--process-home::before {
  display: none;
}

.section--process-home::after {
  display: none;
}

.section--process-home .container {
  position: relative;
  z-index: 1;
}

.section-head--process,
.timeline--home {
  position: relative;
  z-index: 1;
}

.timeline--home {
  isolation: isolate;
}

.timeline--home::before {
  content: "";
  position: absolute;
  top: -126px;
  left: 50%;
  width: clamp(320px, 27vw, 460px);
  height: clamp(360px, 34vw, 520px);
  transform: translateX(-50%);
  background:
    radial-gradient(circle at center, rgba(193, 153, 90, 0.18), transparent 56%),
    url("../images/process-scales-cutout.png") center top / contain no-repeat;
  opacity: 0.34;
  filter:
    saturate(1.06)
    contrast(1.08)
    brightness(1.04)
    blur(0.8px)
    drop-shadow(0 0 18px rgba(251, 242, 220, 0.34))
    drop-shadow(0 0 38px rgba(179, 138, 72, 0.16));
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.98) 0%,
    rgba(0, 0, 0, 0.94) 34%,
    rgba(0, 0, 0, 0.74) 52%,
    rgba(0, 0, 0, 0.26) 72%,
    transparent 90%
  );
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.98) 0%,
    rgba(0, 0, 0, 0.94) 34%,
    rgba(0, 0, 0, 0.74) 52%,
    rgba(0, 0, 0, 0.26) 72%,
    transparent 90%
  );
}

.timeline-card--home {
  position: relative;
  z-index: 1;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: var(--text-inverse);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border: 1px solid rgba(18, 32, 56, 0.12);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-inverse);
  background: transparent;
}

.btn--small {
  padding: 12px 16px;
  font-size: 0.92rem;
}

.progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--gold), var(--accent));
  z-index: 120;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 18px 0;
  transition: padding 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  backdrop-filter: blur(18px);
}

.site-header--cinematic .container {
  width: calc(100vw - 64px);
}

.site-header__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 50px;
  padding: 10px 28px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(33, 49, 73, 0.8), rgba(33, 49, 73, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px);
  box-shadow: 0 10px 24px rgba(6, 14, 28, 0.18);
}

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

.brand__mark {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.brand__mark img {
  display: block;
  width: auto;
  height: clamp(42px, 2.9vw, 56px);
  object-fit: contain;
  filter:
    drop-shadow(0 10px 22px rgba(202, 166, 88, 0.16))
    drop-shadow(0 2px 6px rgba(255, 245, 214, 0.16));
}

.brand__text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand__title {
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.brand__subtitle {
  display: none;
}

.site-footer .brand__mark img {
  height: clamp(56px, 4.2vw, 74px);
}

.site-footer .brand {
  align-items: center;
  gap: 14px;
}

.site-footer .brand__text {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: nowrap;
  border: 0;
  display: inline-flex;
  align-items: center;
}

.site-footer .brand__title {
  display: inline-block;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
}

.site-nav {
  display: flex;
  justify-content: flex-end;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav__list > li {
  min-width: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  font-weight: 400;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.site-nav a.is-current {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(196, 170, 122, 0.42);
}

.site-nav__cta-item {
  display: none;
}

.site-nav__cta-link {
  min-height: 38px;
  padding-inline: 16px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(191, 165, 117, 0.58);
  border-radius: 10px;
  font-weight: 500;
  box-shadow: none;
}

.site-nav__cta-link:hover,
.site-nav__cta-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(214, 190, 145, 0.72);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.btn--header-cta {
  min-height: 38px;
  padding-inline: 16px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(191, 165, 117, 0.58);
  box-shadow: none;
  border-radius: 10px;
  font-weight: 500;
}

.btn--header-cta:hover,
.btn--header-cta:focus-visible {
  background: rgba(179, 138, 72, 0.16);
  border-color: rgba(205, 174, 118, 0.9);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: rgba(255, 255, 255, 0.88);
  transition: transform 0.24s ease, top 0.24s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  top: 18px;
}

.menu-toggle span:nth-child(2) {
  top: 23px;
}

.menu-toggle span:nth-child(3) {
  top: 28px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.showcase-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: calc(-1 * (var(--header-height) + 34px));
  padding: calc(var(--header-height) + 102px) 0 94px;
  color: var(--text-inverse);
}

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

.showcase-hero::before {
  background:
    linear-gradient(180deg, rgba(5, 13, 24, 0.32), rgba(5, 13, 24, 0.84)),
    linear-gradient(90deg, rgba(8, 18, 34, 0.42), rgba(8, 18, 34, 0.14) 34%, rgba(255, 229, 188, 0.08) 74%, rgba(8, 18, 34, 0.46) 100%),
    url("../images/showcase-hero-bg.png");
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
}

.showcase-hero::after {
  inset: auto -10% -2% -10%;
  height: 72%;
  background:
    radial-gradient(circle at 14% 52%, rgba(255, 255, 255, 0.22), transparent 0 8%),
    radial-gradient(circle at 38% 50%, rgba(255, 255, 255, 0.16), transparent 0 8%),
    radial-gradient(circle at 66% 50%, rgba(255, 255, 255, 0.18), transparent 0 7%),
    radial-gradient(circle at 93% 44%, rgba(255, 255, 255, 0.2), transparent 0 9%),
    radial-gradient(circle at 50% 100%, rgba(194, 162, 108, 0.16), transparent 0 24%);
  filter: blur(42px);
  opacity: 0.74;
}

.showcase-hero__shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
  min-height: min(748px, calc(100vh - 32px));
  align-content: center;
}

.showcase-hero__copy {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.showcase-hero--home .showcase-hero__copy {
  margin-top: -55px;
}

.showcase-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  color: rgba(242, 236, 226, 0.82);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.showcase-hero__eyebrow::before {
  display: none;
}

.showcase-hero__copy h1 {
  max-width: 1120px;
  font-size: clamp(2.5rem, 4.9vw, 4.45rem);
  color: #f7f1e7;
  line-height: 1.02;
  text-wrap: balance;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.showcase-hero--home .showcase-hero__copy h1 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
}

.showcase-hero__lead {
  max-width: 880px;
  font-size: 1.14rem;
  color: rgba(242, 236, 226, 0.78);
}

.showcase-hero__steps {
  --showcase-step-gap: 68px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 256px);
  justify-content: center;
  gap: var(--showcase-step-gap);
  align-items: stretch;
}

.showcase-hero--home .showcase-hero__steps {
  margin-top: 18px;
}

.showcase-hero__steps::before {
  display: none;
}

.showcase-step {
  --showcase-connector-size: 38px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 122px minmax(78px, auto) minmax(118px, 1fr);
  gap: 10px;
  min-height: 352px;
  height: 100%;
  align-content: start;
  align-items: start;
  justify-items: center;
  text-align: center;
  padding: 40px 32px 22px;
  border-radius: 26px;
  background: rgba(251, 248, 242, 0.98);
  color: var(--text);
  box-shadow: 0 18px 34px rgba(4, 10, 20, 0.2);
  overflow: visible;
}

.showcase-step,
.hero__wrap > *,
.page-hero__grid > *,
.cta-band__content > *,
.article-layout > *,
.contact-grid > *,
.problem-grid > *,
.site-footer__grid > * {
  min-width: 0;
}

.showcase-step > * {
  position: relative;
  z-index: 1;
}

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

.showcase-step:not(:last-child)::after {
  top: calc(50% - 1px);
  left: 100%;
  width: var(--showcase-step-gap);
  height: 2px;
  background: linear-gradient(90deg, rgba(122, 146, 181, 0.22), rgba(122, 146, 181, 0.52), rgba(122, 146, 181, 0.22));
  z-index: 0;
}

.showcase-step:not(:last-child)::before {
  top: calc(50% - (var(--showcase-connector-size) / 2));
  left: calc(100% + (var(--showcase-step-gap) / 2) - (var(--showcase-connector-size) / 2));
  width: var(--showcase-connector-size);
  height: var(--showcase-connector-size);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(10, 22, 38, 0.92) 0 44%, rgba(10, 22, 38, 0) 45%),
    radial-gradient(circle at center, rgba(116, 146, 184, 0.22) 0 63%, rgba(116, 146, 184, 0) 64%);
  border: 4px solid rgba(88, 114, 150, 0.68);
  box-shadow:
    0 0 0 6px rgba(88, 114, 150, 0.08),
    0 8px 18px rgba(12, 24, 42, 0.18);
  z-index: 0;
}

.showcase-step__icon {
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(17, 34, 61, 0.02), rgba(17, 34, 61, 0.07));
  color: #2f476d;
  align-self: center;
}

.showcase-step__icon--asset {
  background: transparent;
}

.showcase-step__icon svg {
  width: 62px;
  height: 62px;
}

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

.showcase-step h2 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: 78px;
  font-family: var(--font-sans);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.16;
  max-width: 210px;
}

.showcase-step p {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: 118px;
  color: #5c6b80;
  font-size: 1.08rem;
  line-height: 1.46;
  font-weight: 500;
  max-width: 210px;
}

.showcase-step--result .showcase-step__icon {
  width: 108px;
  height: 108px;
  background: transparent;
}

.showcase-step--result .showcase-step__icon svg {
  width: 62px;
  height: 62px;
}

.showcase-step--result {
  gap: 10px;
  padding-top: 40px;
}

.showcase-step--result h2 {
  min-height: 78px;
  max-width: 184px;
  color: #0f1116;
  font-size: 1.18rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.showcase-step--result p {
  min-height: 118px;
  max-width: 210px;
  color: #566b8e;
  font-size: 1.08rem;
  line-height: 1.46;
  font-weight: 500;
}

.showcase-hero--home .showcase-hero__steps--risk-links {
  --showcase-step-gap: 16px;
  left: 50%;
  transform: none;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--showcase-step-gap);
  width: calc(100vw - 64px);
  max-width: none;
  margin: 16px 0 0 calc(-50vw + 32px);
}

.showcase-hero--home .showcase-hero__steps--risk-links .showcase-step::before,
.showcase-hero--home .showcase-hero__steps--risk-links .showcase-step::after {
  display: none;
}

.showcase-step--clickable {
  cursor: pointer;
}

.showcase-step--risk-link {
  grid-template-rows: auto minmax(112px, 1fr) auto;
  gap: 12px;
  min-height: 286px;
  padding: 24px 18px 20px;
  justify-items: start;
  align-content: stretch;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    0 18px 34px rgba(4, 10, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.showcase-step--risk-link:hover,
.showcase-step--risk-link:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(196, 167, 111, 0.72);
  background: #ffffff;
  box-shadow:
    0 28px 48px rgba(4, 10, 20, 0.26),
    0 0 0 1px rgba(179, 138, 72, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  outline: none;
}

.showcase-step--risk-link h2 {
  display: block;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-height: auto;
  max-width: none;
  color: #111a2c;
  font-size: clamp(0.94rem, 0.9vw, 1.08rem);
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.showcase-step--risk-link p {
  display: block;
  justify-content: flex-start;
  width: 100%;
  min-height: auto;
  max-width: none;
  color: #5c6b80;
  font-size: clamp(0.84rem, 0.72vw, 0.96rem);
  line-height: 1.46;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.showcase-step__link-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: end;
  color: #9b7337;
  font-size: 0.86rem;
  font-weight: 700;
}

.showcase-step__link-label::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}

.showcase-step--risk-link:hover .showcase-step__link-label::after,
.showcase-step--risk-link:focus-visible .showcase-step__link-label::after {
  transform: translateX(3px) rotate(45deg);
}

.showcase-hero__actions {
  display: flex;
  justify-content: center;
}

.showcase-hero--home .showcase-hero__actions {
  margin-top: 32px;
}

.showcase-hero--home .showcase-hero__actions .btn--showcase {
  padding-inline: 18px;
}

.btn--showcase {
  min-width: min(280px, 100%);
  padding: 16px 26px;
  border-radius: 10px;
  font-size: 0.98rem;
  color: #162236;
  background: linear-gradient(180deg, #b79b68, #c7af82);
  box-shadow: 0 12px 24px rgba(8, 18, 34, 0.2);
}

.btn--showcase:hover,
.btn--showcase:focus-visible {
  background: linear-gradient(180deg, #c7af82, #d7c39a);
}

.showcase-hero--inner {
  padding-bottom: 90px;
}

.showcase-hero--inner .showcase-hero__shell {
  min-height: min(720px, calc(100vh - 44px));
}

.showcase-hero--inner .showcase-hero__copy h1 {
  max-width: 1120px;
  font-size: clamp(1.78rem, 2.46vw, 2.92rem);
  line-height: 1.05;
}

.showcase-hero--inner .showcase-hero__copy h1.showcase-hero__title--service-creditor {
  max-width: min(100%, 1560px);
  font-size: clamp(1.78rem, 2.46vw, 2.92rem);
  line-height: 1.05;
}

.showcase-hero--inner .showcase-hero__copy h1.showcase-hero__title--cases-cinematic {
  max-width: min(100%, 1420px);
  font-size: clamp(1.78rem, 2.46vw, 2.92rem);
  line-height: 1.05;
}

.showcase-creditor-title-line {
  display: block;
}

.showcase-cases-title-line {
  display: block;
}

body[data-page="services"] .showcase-hero--inner::before {
  background:
    linear-gradient(180deg, rgba(5, 13, 24, 0.42), rgba(5, 13, 24, 0.84)),
    linear-gradient(90deg, rgba(8, 18, 34, 0.46), rgba(8, 18, 34, 0.18) 34%, rgba(255, 229, 188, 0.06) 72%, rgba(8, 18, 34, 0.46) 100%),
    url("../images/hero-services-custom.png");
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
}

body[data-page="about"] .showcase-hero--inner::before {
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.34), rgba(7, 17, 31, 0.82)),
    linear-gradient(90deg, rgba(9, 22, 40, 0.5), rgba(9, 22, 40, 0.16) 34%, rgba(255, 244, 218, 0.08) 72%, rgba(9, 22, 40, 0.48) 100%),
    url("../images/hero-about-custom.png");
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
}

body[data-page="contacts"] .showcase-hero--inner::before {
  background:
    linear-gradient(180deg, rgba(6, 14, 28, 0.42), rgba(6, 14, 28, 0.84)),
    linear-gradient(90deg, rgba(7, 18, 35, 0.64), rgba(7, 18, 35, 0.28) 34%, rgba(182, 218, 255, 0.08) 74%, rgba(7, 18, 35, 0.48) 100%),
    url("../images/contacts-hero-custom.png");
  background-size: auto, auto, cover;
  background-position: center, center, 58% center;
  background-repeat: no-repeat;
}

body[data-page="cases"] .showcase-hero--inner::before {
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.42), rgba(7, 17, 31, 0.84)),
    linear-gradient(90deg, rgba(9, 22, 40, 0.68), rgba(9, 22, 40, 0.32) 34%, rgba(255, 244, 218, 0.08) 74%, rgba(9, 22, 40, 0.5) 100%),
    url("../images/process-scales-warm.jpeg");
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
}

body[data-page="contacts"] .showcase-hero--inner .showcase-hero__copy h1 {
  max-width: 1440px;
  font-size: clamp(1.78rem, 2.46vw, 2.92rem);
  line-height: 1.05;
}

body[data-page="contacts"] .showcase-hero--inner .showcase-hero__copy h1.showcase-hero__title--contacts-cinematic {
  max-width: min(100%, 1380px);
}

body[data-page="contacts"] .showcase-hero--inner .showcase-hero__copy h1 span {
  display: block;
}

.showcase-contact-title-line {
  display: block;
}

.hero-line-nowrap {
  white-space: nowrap;
}

.showcase-hero + .hero,
.showcase-hero + .page-hero {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

body[data-page="about"] .showcase-hero + .page-hero {
  margin-top: clamp(34px, 4vw, 58px);
}

.showcase-hero + .page-hero.page-hero--services-hub {
  margin-top: clamp(26px, 3.2vw, 42px);
}

body[data-page="services"] .showcase-hero + .page-hero:not(.page-hero--services-hub) {
  margin-top: clamp(42px, 4.4vw, 68px);
}

body[data-page="contacts"] .showcase-hero + .page-hero {
  margin-top: clamp(42px, 4.6vw, 72px);
}

body[data-page="cases"] .showcase-hero + .page-hero {
  margin-top: clamp(54px, 5vw, 84px);
}

body[data-page="privacy"] .showcase-hero + .page-hero {
  margin-top: clamp(44px, 4.8vw, 74px);
}

body[data-page="home"] .showcase-hero + .hero {
  margin-top: clamp(60px, 5vw, 80px);
}

body[data-page="home"] .section--seo-home .eyebrow {
  display: none;
}

body[data-page="home"] .hero,
body[data-page="home"] .hero .container,
body[data-page="home"] .hero__single,
body[data-page="home"] .hero__single--home-map {
  background: transparent !important;
  box-shadow: none !important;
}

body[data-page="home"] .section--process-home,
body[data-page="home"] .section--seo-home,
body[data-page="home"] .section--brief-home,
body[data-page="home"] .section--faq-home {
  background: transparent;
  border-block: 0;
}

.hero--lowered {
  padding-top: 0;
}

.hero--lowered .hero__main,
.hero--lowered .hero__panel {
  box-shadow: var(--shadow-md);
}

.hero {
  padding: 36px 0 var(--section-gap);
}

.hero__single {
  position: relative;
  overflow: visible;
  padding: 6px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero__single::before {
  display: none;
}

.hero__single--home-map {
  isolation: isolate;
  overflow: hidden;
  padding-bottom: 18px;
  background: transparent;
}

.hero__single--home-map::before {
  display: none;
}

.hero__single--home-map::after {
  display: none;
}

.hero__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 34px;
  align-items: stretch;
}

.hero__main,
.hero__panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero__main {
  padding: clamp(38px, 5vw, 58px);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at top right, rgba(179, 138, 72, 0.2), transparent 38%);
  border: 1px solid rgba(18, 32, 56, 0.08);
}

.hero__main::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: min(58%, 440px);
  height: min(68%, 380px);
  background:
    radial-gradient(circle at 20% 30%, rgba(179, 138, 72, 0.22), transparent 0 28%),
    linear-gradient(180deg, rgba(20, 59, 110, 0.08), transparent 55%),
    linear-gradient(90deg, rgba(20, 59, 110, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(20, 59, 110, 0.06) 1px, transparent 1px);
  background-size: auto, auto, 32px 32px, 32px 32px;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.95), transparent 88%);
  opacity: 0.9;
}

.hero__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
}

.hero__copy--centered {
  max-width: 1180px;
  margin: 0 auto;
  justify-items: center;
  text-align: center;
  gap: 26px;
}

.hero__eyebrow-center {
  justify-self: center;
  padding: 10px 18px;
}

.hero__lede {
  margin: 0;
  max-width: 1120px;
  color: rgba(17, 34, 61, 0.72);
  font-size: clamp(1.2rem, 1.56vw, 1.5rem);
  line-height: 1.72;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero__copy h1,
.hero__copy h2 {
  font-size: clamp(1.7rem, 3.7vw, 3.24rem);
  line-height: 1.04;
  max-width: 16ch;
  text-wrap: balance;
}

.hero__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(20, 59, 110, 0.08);
  border: 1px solid rgba(20, 59, 110, 0.1);
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 600;
}

.pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

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

.stat-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(18, 32, 56, 0.08);
  box-shadow: 0 10px 22px rgba(12, 24, 46, 0.04);
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.6rem;
  font-family: var(--font-serif);
}

.stat-card span {
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.5;
  font-weight: 500;
}

.hero__actions-row {
  justify-content: center;
}

.hero__actions-row .btn--primary {
  padding-inline: 28px;
}

.hero__actions-row .btn--secondary {
  padding-inline: 25px;
}

.hero__panel {
  background:
    radial-gradient(circle at 12% 10%, rgba(179, 138, 72, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(9, 24, 48, 0.98), rgba(17, 34, 61, 0.94));
  color: var(--text-inverse);
  padding: clamp(30px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.hero__panel::before {
  inset: auto -80px -120px auto;
  width: 280px;
  height: 280px;
}

.hero__panel::after {
  inset: -110px auto auto -50px;
  width: 180px;
  height: 180px;
}

.panel-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.panel-stack__card {
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
}

.panel-stack__card strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.panel-stack__card ul {
  padding-left: 18px;
  margin: 0;
  color: rgba(239, 243, 248, 0.82);
  line-height: 1.72;
}

.hero-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(239, 243, 248, 0.86);
}

.hero-note--standalone {
  width: min(100%, 860px);
  margin: 6px auto 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  justify-content: center;
  background: #f2f4f7;
  border: 1px solid rgba(20, 59, 110, 0.12);
  color: var(--text);
}

.hero-note--standalone p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.hero-note--standalone strong {
  color: var(--text);
  font-size: 1.08rem;
}

.hero-note__index {
  width: 38px;
  height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(179, 138, 72, 0.12);
  color: #fff;
  font-weight: 700;
}

.hero-note--standalone .hero-note__index {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #e5eaf2;
  color: var(--accent);
  box-shadow: none;
}

.hero-note__body--centered {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.hero-marquee {
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(18, 32, 56, 0.08);
  background: #ffffff;
  margin-top: 22px;
}

.hero-marquee--standalone {
  width: min(100%, 1840px);
  margin: 10px auto 0;
  background: #ffffff;
  box-shadow: none;
}

.hero-marquee__track {
  display: flex;
  gap: 32px;
  min-width: max-content;
  padding: 12px 22px;
  animation: ticker 22s linear infinite;
}

.hero-marquee__item {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--text-soft);
  font-weight: 600;
  white-space: nowrap;
}

.hero-marquee__item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(18, 32, 56, 0.09);
  box-shadow: 0 14px 30px rgba(12, 24, 46, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.14));
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(18, 32, 56, 0.12);
  box-shadow: 0 22px 42px rgba(12, 24, 46, 0.1);
}

.card--dark {
  background: linear-gradient(180deg, rgba(9, 24, 48, 0.98), rgba(17, 34, 61, 0.94));
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.08);
}

.card--about-coverage-map {
  isolation: isolate;
}

.card--about-coverage-map::after {
  content: "";
  position: absolute;
  inset: -14% -18% -22% 8%;
  background:
    linear-gradient(90deg, rgba(9, 24, 48, 0.92) 0%, rgba(9, 24, 48, 0.74) 30%, rgba(9, 24, 48, 0.36) 54%, rgba(9, 24, 48, 0) 100%),
    url("../images/about-coverage-map-glow.png") 74% 56% / 146% auto no-repeat;
  opacity: 0.34;
  mix-blend-mode: screen;
  filter: saturate(0.88) brightness(0.92);
  pointer-events: none;
  z-index: 0;
}

.card--about-coverage-map > * {
  position: relative;
  z-index: 1;
}

.card__number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(20, 59, 110, 0.08);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 18px;
}

.card__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.card h3 {
  margin-bottom: 12px;
}

.card--about-positioning h2 {
  font-size: clamp(1.52rem, 2.05vw, 1.88rem);
  line-height: 1.14;
  max-width: min(28ch, 100%);
}

.card__title--about-positioning span {
  display: block;
}

.card--about-positioning p {
  margin-top: 18px;
}

.card__title--privacy-operator {
  font-size: clamp(1.14rem, 1.44vw, 1.54rem);
  line-height: 1.08;
  margin-bottom: 28px;
}

.card__title--service-entry {
  font-size: clamp(1.62rem, 2.18vw, 1.96rem);
}

.card__copy--service-entry {
  margin-top: 16px;
}

.card__title--service-appeal-critical {
  font-size: clamp(1.56rem, 2.02vw, 1.84rem);
}

.card__copy--service-appeal-critical {
  margin-top: 16px;
}

.card__copy--service-planning-demand {
  margin-top: 16px;
}

.card__title--service-planning-stage {
  font-size: clamp(1.56rem, 2vw, 1.84rem);
}

.card__title--service-planning-result {
  font-size: clamp(1.5rem, 2vw, 1.82rem);
  margin-top: 10px;
}

.card__copy--service-planning-result {
  margin-top: 16px;
}

.card__copy--service-creditor-evidence {
  margin-top: 16px;
}

.card__title--service-creditor-delay {
  font-size: clamp(1.56rem, 1.94vw, 1.82rem);
}

.card--about-audience .feature-list {
  margin-top: 20px;
}

.feature-list--privacy-operator {
  margin-top: 0;
  padding-top: 0;
}

.feature-list--service-requirements {
  margin-top: 22px;
}

.feature-list--service-appeal-result {
  margin-top: 16px;
}

.feature-list--cases-reading {
  margin-top: 18px;
}

.card p,
.card li {
  color: var(--text-soft);
  line-height: 1.74;
}

.card--dark p,
.card--dark li {
  color: rgba(239, 243, 248, 0.78);
}

.card__title--about-coverage {
  font-size: clamp(1.58rem, 2.2vw, 2.12rem);
  margin-top: 12px;
}

.card--about-coverage-map p {
  margin-top: 20px;
}

.service-card {
  display: grid;
  gap: 20px;
  height: 100%;
}

.service-card h2,
.service-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.7vw, 1.58rem);
  line-height: 1.08;
  text-wrap: balance;
}

.service-grid {
  width: 100%;
  margin-inline: auto;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-weight: 700;
  color: var(--accent-strong);
  padding-top: 4px;
  transition: color 0.2s ease, transform 0.2s ease, gap 0.2s ease;
}

.service-card__link:hover,
.service-card__link:focus-visible {
  color: var(--accent);
  gap: 12px;
  transform: translateX(2px);
}

.service-card__link::after {
  content: "→";
}

.feature-list,
.check-list,
.timeline-list,
.footer-list,
.article-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list li,
.check-list li,
.footer-list li,
.article-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-list li::before,
.check-list li::before,
.footer-list li::before,
.article-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 8px;
  flex: none;
  background: linear-gradient(180deg, var(--gold), #dfc18d);
  box-shadow: 0 0 0 7px rgba(179, 138, 72, 0.14);
}

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

.timeline--home {
  width: 100%;
  margin-inline: auto;
  gap: 20px;
  align-items: stretch;
}

.timeline-card {
  position: relative;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(18, 32, 56, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.timeline-card:hover,
.timeline-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(18, 32, 56, 0.12);
  box-shadow: 0 22px 42px rgba(12, 24, 46, 0.1);
}

.timeline-card::before {
  content: attr(data-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(20, 59, 110, 0.1);
  color: var(--accent);
  font-weight: 800;
}

.timeline-card--home {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 28px 24px 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 248, 251, 0.9));
}

.timeline-card--home::before {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
  border-radius: 14px;
  background: rgba(20, 59, 110, 0.09);
}

.timeline-card--home h3 {
  margin: 0;
  min-height: 72px;
  font-size: clamp(1.22rem, 1.45vw, 1.56rem);
  line-height: 1.08;
  color: var(--surface-ink);
  text-wrap: balance;
}

.timeline-card--home p {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.7;
  color: rgba(63, 80, 106, 0.9);
}

.problem-grid {
  display: grid;
  gap: 26px;
}

.problem-card {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 42px 46px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(9, 24, 48, 0.98), rgba(17, 34, 61, 0.96));
  color: var(--text-inverse);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.problem-card h3 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 2.35vw, 2.7rem);
  line-height: 1.14;
}

.problem-card .check-list {
  width: min(100%, 1040px);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.problem-card .check-list li {
  color: rgba(239, 243, 248, 0.9);
  font-size: 1.24rem;
  line-height: 1.74;
  text-align: left;
}

.problem-card .check-list li::before {
  width: 9px;
  height: 9px;
  margin-top: 7px;
  box-shadow: 0 0 0 5px rgba(179, 138, 72, 0.16);
}

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

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

.surface-grid .card {
  min-height: 100%;
}

.stage-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 26px 24px 24px;
  border-radius: 28px;
}

.stage-card .card__number {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  border-radius: 13px;
}

.stage-card h3 {
  min-height: 72px;
  margin: 0;
  font-size: clamp(1.2rem, 1.7vw, 1.58rem);
  line-height: 1.08;
  text-wrap: balance;
}

.stage-card p {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.68;
}

.quiz {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 28px;
  align-items: start;
}

.quiz__questions {
  display: grid;
  gap: 18px;
}

.quiz-question {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 32, 56, 0.08);
  box-shadow: var(--shadow-sm);
}

.quiz-question h3 {
  margin-bottom: 16px;
}

.quiz-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quiz-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(20, 59, 110, 0.06);
  border: 1px solid rgba(20, 59, 110, 0.1);
  color: var(--text);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.quiz-option.is-active,
.quiz-option:hover,
.quiz-option:focus-visible {
  background: rgba(20, 59, 110, 0.12);
  border-color: rgba(20, 59, 110, 0.18);
  transform: translateY(-1px);
}

.quiz__result {
  position: sticky;
  top: 110px;
}

.result-card {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(9, 24, 48, 0.98), rgba(17, 34, 61, 0.96));
  color: var(--text-inverse);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.result-card p {
  color: rgba(239, 243, 248, 0.82);
}

.result-card__title--cases-summary {
  font-size: clamp(1.42rem, 1.86vw, 1.7rem);
  line-height: 1.12;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(239, 243, 248, 0.9);
  font-size: 0.98rem;
}

.case-grid,
.article-grid,
.contact-grid,
.site-map-grid,
.resource-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card,
.article-card,
.contact-card,
.resource-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(18, 32, 56, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.case-card:hover,
.article-card:hover,
.contact-card:hover,
.resource-card:hover,
.case-card:focus-within,
.article-card:focus-within,
.contact-card:focus-within,
.resource-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(18, 32, 56, 0.12);
  box-shadow: 0 22px 42px rgba(12, 24, 46, 0.1);
}

.case-card__label,
.article-card__label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(20, 59, 110, 0.08);
  color: var(--accent);
  font-size: 0.98rem;
  font-weight: 800;
}

.case-card {
  align-content: start;
}

.case-card h2 {
  margin: 0;
  font-size: clamp(1.3rem, 1.66vw, 1.62rem);
  line-height: 1.14;
  text-wrap: balance;
}

.case-card__summary {
  margin: 0;
  color: rgba(56, 75, 108, 0.9);
  font-size: 1.03rem;
  line-height: 1.64;
}

.case-card__meta {
  display: grid;
  gap: 12px;
}

.case-card__meta-item {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(18, 32, 56, 0.08);
}

.case-card__meta-item p {
  margin: 0;
  color: rgba(56, 75, 108, 0.88);
  line-height: 1.58;
}

.case-card__meta-title {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.case-card__result {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(20, 59, 110, 0.06);
  color: var(--text);
  font-weight: 600;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-chip {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(18, 32, 56, 0.1);
  color: var(--text-soft);
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter-chip.is-active {
  color: var(--accent);
  background: rgba(20, 59, 110, 0.1);
  border-color: rgba(20, 59, 110, 0.14);
}

.filter-chip:hover,
.filter-chip:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(18, 32, 56, 0.14);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list--home {
  width: 100%;
  max-width: calc(100% - clamp(360px, 24vw, 500px));
  margin-inline: auto;
}

.faq {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(18, 32, 56, 0.08);
  overflow: clip;
  box-shadow: var(--shadow-sm);
}

.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 700;
}

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

.faq summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(20, 59, 110, 0.08);
  color: var(--accent);
  font-size: 1.2rem;
  flex: none;
}

.faq[open] summary::after {
  content: "−";
}

.faq__content {
  padding: 0 26px 26px;
  color: var(--text-soft);
  line-height: 1.74;
}

.cta-band {
  width: min(100%, 1340px);
  margin-inline: auto;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) + 10px);
  padding: clamp(40px, 4.4vw, 58px);
  background:
    linear-gradient(135deg, rgba(9, 24, 48, 0.98), rgba(17, 34, 61, 0.9)),
    radial-gradient(circle at top right, rgba(179, 138, 72, 0.18), transparent 36%);
  color: var(--text-inverse);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: auto -80px -70px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-band__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(620px, 1.18fr) minmax(280px, 0.82fr);
  align-items: start;
}

.cta-band__lead {
  display: grid;
  align-content: start;
  padding-top: 8px;
}

.cta-band__lead h2 {
  max-width: none;
  font-size: clamp(1.9rem, 3.2vw, 2.95rem);
  line-height: 1.06;
  text-align: left;
  text-wrap: normal;
}

.cta-band__title--services {
  font-size: clamp(1.72rem, 2.85vw, 2.55rem);
  margin-top: 10px;
}

.cta-band__title--service-check {
  font-size: clamp(1.46rem, 2.18vw, 2.02rem);
  margin-top: 10px;
}

.cta-band__title--service-appeal {
  font-size: clamp(1.42rem, 2.08vw, 1.94rem);
  margin-top: 10px;
}

.cta-band__title--service-planning {
  font-size: clamp(1.4rem, 2vw, 1.88rem);
  margin-top: 14px;
}

.cta-band__title--service-creditor {
  font-size: clamp(1.38rem, 1.96vw, 1.84rem);
  margin-top: 12px;
}

.cta-band__title--cases {
  font-size: clamp(1.42rem, 2.04vw, 1.88rem);
  margin-top: 12px;
}

.cta-band__title--about-next-step {
  font-size: clamp(1.46rem, 2.28vw, 1.96rem);
  margin-top: 10px;
}

.cta-band__lead h2 span {
  display: block;
  white-space: nowrap;
}

.cta-band__meta {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 16px;
  width: min(100%, 420px);
  justify-self: end;
  color: rgba(239, 243, 248, 0.78);
  font-weight: 400;
}

.cta-band__meta p {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.72;
  font-weight: 400;
  color: rgba(239, 243, 248, 0.84);
}

.cta-band__meta .btn-group {
  margin-top: 12px;
}

.btn-group--about-cta {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}

.btn-group--about-cta .btn {
  min-width: 0;
  padding: 16px 24px;
  font-size: 1rem;
  white-space: nowrap;
}

.btn-group--service-check {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

.btn-group--service-check .btn {
  min-width: 0;
  padding: 13px 18px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-group--cases-cta {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

.btn-group--cases-cta .btn {
  min-width: 0;
  padding: 13px 18px;
  font-size: 0.92rem;
  white-space: nowrap;
}

.cta-band__meta-title {
  font-size: 1.18rem;
  line-height: 1.45;
}

.cta-band__meta-copy {
  max-width: none;
}

.cta-band__meta-copy span {
  display: block;
  white-space: nowrap;
}

.cta-band__buttons {
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.cta-band__cta {
  min-width: 204px;
}

.cta-band .btn--primary {
  color: #162236;
  background: linear-gradient(180deg, #b79b68, #c7af82);
  box-shadow: 0 12px 24px rgba(8, 18, 34, 0.2);
}

.cta-band .btn--primary:hover,
.cta-band .btn--primary:focus-visible {
  color: #162236;
  background: linear-gradient(180deg, #c7af82, #d7c39a);
}

.cta-band .btn--ghost {
  min-width: 166px;
  min-height: 56px;
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.02);
}

.cta-band .btn--ghost:hover,
.cta-band .btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
}

.page-hero {
  position: relative;
  padding: 36px 0 58px;
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero--lowered {
  padding-top: 0;
}

.page-hero--services-hub {
  padding-top: clamp(28px, 3vw, 42px);
}

.page-hero__card {
  padding: clamp(36px, 4.2vw, 52px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8)),
    radial-gradient(circle at right top, rgba(179, 138, 72, 0.16), transparent 34%);
  border: 1px solid rgba(18, 32, 56, 0.08);
  box-shadow: 0 22px 46px rgba(12, 24, 46, 0.1);
}

.page-hero--about::before,
.page-hero--contacts::before,
.page-hero--services-hub::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  border-radius: clamp(28px, 3vw, 40px);
  background-repeat: no-repeat;
  background-size: cover;
}

.page-hero--about::before {
  display: none;
}

.page-hero--contacts::before {
  display: none;
}

.page-hero--about .page-hero__card,
.page-hero--contacts .page-hero__card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at right top, rgba(179, 138, 72, 0.12), transparent 34%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.page-hero--contacts .page-hero__card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.96));
  box-shadow: 0 20px 40px rgba(12, 24, 46, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-hero--services-hub::before {
  display: none;
}

.page-hero--cases::before {
  background:
    linear-gradient(90deg, rgba(11, 22, 44, 0.12), rgba(11, 22, 44, 0.04)),
    url("../images/process-scales-warm.jpeg") center/cover no-repeat;
}

.page-hero--services-hub .page-hero__card {
  background: none;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  gap: 32px;
  align-items: start;
}

.page-hero__grid h1,
.page-hero__grid h2 {
  font-size: clamp(1.4rem, 2.7vw, 2.29rem);
  line-height: 1.06;
  max-width: 16ch;
  text-wrap: balance;
}

.page-hero__title--privacy {
  font-size: clamp(1.96rem, 3.12vw, 3.24rem);
  line-height: 1.04;
  margin-top: 12px;
  max-width: none;
  text-wrap: balance;
}

.page-hero__title--cases {
  font-size: clamp(1.82rem, 3vw, 3.04rem);
  line-height: 1.05;
  margin-top: 10px;
  max-width: min(31ch, 100%);
}

.case-title-line {
  display: block;
}

.page-hero__lead--privacy {
  max-width: min(64ch, 100%);
  margin-top: 14px;
}

.page-hero__lead--privacy span {
  display: block;
}

.page-hero__title--service-check {
  max-width: min(31ch, 100%);
  margin-top: 10px;
}

.page-hero__title--service-check span {
  display: block;
}

.page-hero__title--service-appeal {
  max-width: min(34ch, 100%);
  margin-top: 10px;
}

.page-hero__title--service-appeal span {
  display: block;
}

.page-hero__title--service-planning {
  max-width: min(31ch, 100%);
  margin-top: 10px;
}

.page-hero__title--service-planning span {
  display: block;
}

.page-hero__title--service-creditor {
  max-width: min(33ch, 100%);
  margin-top: 10px;
}

.page-hero__title--service-creditor span {
  display: block;
}

.page-hero__title--service-risk {
  max-width: min(36ch, 100%);
  margin-top: 10px;
}

.service-appeal-title-line {
  display: block;
}

.service-planning-title-line {
  display: block;
}

.service-creditor-title-line {
  display: block;
}

.page-hero__lead--service-check {
  margin-top: 16px;
}

.page-hero__lead--service-appeal {
  margin-top: 16px;
}

.page-hero__lead--service-planning {
  margin-top: 16px;
}

.page-hero__lead--service-creditor {
  margin-top: 20px;
}

.page-hero__lead--service-risk {
  margin-top: 16px;
}

.service-risk-detail main > .section:not(.section--muted):not(.section--tight) .grid--2 > .card:first-child h2 {
  max-width: min(34ch, 100%);
  font-size: clamp(1.45rem, 2.05vw, 2.12rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.service-risk-detail main > .section:not(.section--muted):not(.section--tight) .grid--2 > .card:first-child p {
  margin-top: 18px;
}

.service-risk-detail .section--muted .section-head {
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 42px;
}

.service-risk-detail .section--muted .section-head h2 {
  max-width: min(1120px, 100%);
  font-size: clamp(1.62rem, 2.65vw, 2.46rem);
  line-height: 1.1;
}

.page-hero__copy--cases .lead {
  max-width: min(42ch, 100%);
  margin: 14px 0 0;
  font-size: clamp(1.04rem, 1.42vw, 1.2rem);
  line-height: 1.66;
  color: rgba(56, 75, 108, 0.86);
}

.cases-hero__stats {
  grid-column: 1 / -1;
  margin-top: 8px;
}

@media (min-width: 960px) {
  .page-hero__title--service-check span {
    white-space: nowrap;
  }

  .page-hero__title--service-appeal span {
    white-space: nowrap;
  }

  .page-hero__title--service-planning span {
    white-space: nowrap;
  }

  .page-hero__title--service-creditor span {
    white-space: nowrap;
  }

  .case-title-line {
    white-space: nowrap;
  }

  .page-hero__lead--privacy span {
    white-space: nowrap;
  }

  .page-hero__title--privacy {
    white-space: nowrap;
  }

  .showcase-contact-title-line {
    white-space: nowrap;
  }

  .showcase-cases-title-line {
    white-space: nowrap;
  }

  .showcase-creditor-title-line {
    white-space: nowrap;
  }

  .service-appeal-title-line {
    white-space: nowrap;
  }

  .service-planning-title-line {
    white-space: nowrap;
  }

  .service-creditor-title-line {
    white-space: nowrap;
  }
}

.page-hero__grid--about {
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}

.page-hero__copy--about {
  display: grid;
  align-content: start;
  gap: clamp(14px, 1.6vw, 22px);
  justify-items: start;
}

.page-hero__copy--about .eyebrow {
  width: auto;
  max-width: max-content;
  justify-self: start;
}

.page-hero__grid--contacts {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 44px;
}

.page-hero__copy--contacts {
  display: grid;
  align-content: start;
  gap: 10px;
}

.page-hero__copy--contacts .eyebrow {
  width: auto;
  max-width: max-content;
  justify-self: start;
}

.page-hero__title--contacts {
  max-width: min(31ch, 100%);
}

.page-hero__title--contacts span {
  display: block;
}

@media (min-width: 960px) {
  .page-hero__title--contacts span {
    white-space: nowrap;
  }
}

.page-hero__copy--contacts .lead {
  max-width: 31ch;
  font-size: clamp(1.08rem, 1.48vw, 1.28rem);
  line-height: 1.62;
}

.page-hero__grid--contacts .page-hero__aside {
  align-self: start;
  min-height: 100%;
  padding: 34px 36px;
}

.page-hero__grid--contacts .page-hero__aside h3 {
  font-size: clamp(1.54rem, 2vw, 2rem);
}

.page-hero__grid--contacts .feature-list {
  gap: 16px;
}

.page-hero__grid--contacts .feature-list li {
  gap: 14px;
  font-size: 1.06rem;
  line-height: 1.5;
}

.page-hero__title--about {
  max-width: min(27ch, 100%);
}

.page-hero__copy--about .page-hero__title--about {
  max-width: min(18ch, 100%);
  font-size: clamp(1.28rem, 2.35vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.page-hero__title--about span {
  display: block;
}

@media (min-width: 960px) {
  .page-hero__title--about span {
    white-space: nowrap;
  }
}

.page-hero__aside {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(9, 24, 48, 0.98), rgba(17, 34, 61, 0.94));
  color: var(--text-inverse);
  box-shadow: var(--shadow-md);
}

.page-hero__copy--about .lead {
  max-width: min(35ch, 100%);
  margin: 0;
  font-size: clamp(1.04rem, 1.46vw, 1.22rem);
  line-height: 1.64;
  color: rgba(56, 75, 108, 0.84);
}

.page-hero__copy--about .lead--about-lines {
  max-width: none;
}

.page-hero__copy--about .lead--about-lines span {
  display: block;
}

.page-hero__aside--about {
  gap: 18px;
  padding: clamp(30px, 3vw, 38px);
  align-content: start;
  align-self: start;
}

.page-hero__aside--about h3 {
  margin: 0;
  font-size: clamp(1.52rem, 2vw, 1.96rem);
  line-height: 1.08;
}

.page-hero__aside--about .feature-list {
  gap: 0;
}

.page-hero__aside--about .feature-list li {
  gap: 14px;
  padding: 14px 0;
  line-height: 1.5;
  font-size: 1.03rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero__aside--about .feature-list li:first-child {
  padding-top: 4px;
  border-top: 0;
}

.page-hero__aside--about .feature-list li::before {
  margin-top: 6px;
}

.page-hero__aside--cases {
  gap: 18px;
  padding: clamp(30px, 3vw, 38px);
  align-content: start;
  align-self: start;
}

.page-hero__aside--cases h3 {
  margin: 0;
  font-size: clamp(1.52rem, 2vw, 1.96rem);
  line-height: 1.08;
}

.page-hero__aside--cases .feature-list {
  gap: 0;
}

.page-hero__aside--cases .feature-list li {
  gap: 14px;
  padding: 14px 0;
  line-height: 1.5;
  font-size: 1.03rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero__aside--cases .feature-list li:first-child {
  padding-top: 4px;
  border-top: 0;
}

.page-hero__aside--cases .feature-list li::before {
  margin-top: 6px;
}

.page-hero__grid--services-hub {
  position: relative;
  isolation: isolate;
  grid-template-columns: 1fr;
  gap: 22px;
  padding-bottom: clamp(56px, 5vw, 88px);
}

.page-hero__grid--services-hub::before {
  content: "";
  position: absolute;
  left: 50%;
  top: clamp(-188px, -11vw, -122px);
  width: clamp(456px, 37vw, 628px);
  height: clamp(560px, 45vw, 772px);
  transform: translateX(-50%);
  background: url("../images/services-lady-justice-center.png") center top / contain no-repeat;
  opacity: 0.42;
  filter: saturate(0.98);
  pointer-events: none;
  z-index: 0;
}

.page-hero__grid--services-hub > div {
  display: grid;
  justify-items: start;
  position: relative;
  z-index: 1;
}

.page-hero__aside--services-hub {
  position: relative;
  isolation: isolate;
  overflow: visible;
  width: 100%;
  min-height: clamp(280px, 24vw, 360px);
  padding: clamp(34px, 3.4vw, 48px);
  align-content: center;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(179, 138, 72, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(18, 33, 60, 0.96), rgba(39, 60, 96, 0.93));
  z-index: 1;
}

.page-hero__aside--services-hub::before,
.page-hero__aside--services-hub::after {
  content: "";
  position: absolute;
  top: calc(100% - clamp(158px, 10vw, 224px));
  width: clamp(432px, 30vw, 566px);
  height: clamp(432px, 30vw, 566px);
  pointer-events: none;
  z-index: -1;
  filter:
    saturate(0.92)
    blur(0.2px)
    drop-shadow(0 20px 28px rgba(10, 20, 36, 0.06))
    drop-shadow(0 8px 14px rgba(179, 138, 72, 0.08));
  opacity: 0.42;
}

.page-hero__aside--services-hub::before {
  left: calc(-1 * clamp(330px, 21vw, 430px));
  background: url("../images/services-hand-left-full.png") left bottom / contain no-repeat;
}

.page-hero__aside--services-hub::after {
  right: calc(-1 * clamp(330px, 21vw, 430px));
  background: url("../images/services-hand-right-full.png") right bottom / contain no-repeat;
}

.page-hero__aside--services-hub > * {
  position: relative;
  z-index: 1;
}

.page-hero__aside--services-hub .feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  align-items: stretch;
}

.page-hero__aside--services-hub .feature-list li {
  min-height: 94px;
  margin: 0;
  padding: 18px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at left top, rgba(179, 138, 72, 0.08), transparent 58%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 28px rgba(6, 13, 26, 0.14);
  color: rgba(244, 247, 252, 0.96);
  font-size: clamp(1.24rem, 1.38vw, 1.52rem);
  line-height: 1.34;
  letter-spacing: -0.01em;
  align-items: flex-start;
}

.page-hero__aside--services-hub .feature-list li::before {
  width: 14px;
  height: 14px;
  margin-top: 0.36em;
  box-shadow:
    0 0 0 8px rgba(179, 138, 72, 0.12),
    0 0 18px rgba(223, 193, 141, 0.2);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--accent);
}

.breadcrumbs span:last-child {
  color: var(--text-soft);
}

.split-card {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.split-card--brief-home {
  position: relative;
  width: min(100%, 1140px);
  margin-inline: auto;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 24px;
  padding-inline: clamp(68px, 5.5vw, 84px);
  padding-top: clamp(10px, 1.5vw, 20px);
  padding-bottom: clamp(12px, 2vw, 24px);
}

.split-card--brief-home::before,
.split-card--brief-home::after {
  content: "";
  position: absolute;
  top: clamp(208px, 14vw, 256px);
  bottom: clamp(22px, 1.8vw, 30px);
  width: clamp(214px, 15vw, 252px);
  background: url("../images/brief-column.png") center top / auto 100% no-repeat;
  filter:
    blur(1px)
    saturate(0.94)
    brightness(0.98)
    drop-shadow(0 18px 36px rgba(12, 24, 46, 0.08))
    drop-shadow(0 0 28px rgba(179, 138, 72, 0.12));
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
  transform-origin: center top;
  animation: briefColumnAura 8s ease-in-out infinite alternate;
}

.split-card--brief-home::before {
  left: 4px;
  transform: scaleX(0.88);
  animation-delay: 0.2s;
}

.split-card--brief-home::after {
  right: 4px;
  transform: scaleX(-0.88);
  animation-delay: 1.6s;
}

.split-card--brief-home > * {
  position: relative;
  z-index: 1;
  width: min(100%, 940px);
}

.brief-panel--home {
  display: grid;
  justify-self: center;
  justify-items: center;
  align-content: start;
  gap: 20px;
  width: min(calc(100% + 100px), 1240px);
  padding: clamp(28px, 3.6vw, 38px) clamp(28px, 4.2vw, 42px);
  text-align: center;
  border-radius: 36px;
}

.brief-panel--home .eyebrow {
  justify-self: center;
}

.brief-panel--home h2 {
  max-width: 760px;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.08;
  text-align: center;
}

.brief-form-card--home {
  width: min(100%, 700px);
  padding: clamp(24px, 3vw, 32px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
}

.split-card--brief-interior {
  position: relative;
  width: min(100%, 1310px);
  margin-inline: auto;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 20px;
  padding-inline: clamp(70px, 5.4vw, 92px);
  padding-top: 10px;
  padding-bottom: 18px;
}

.split-card--brief-interior::before,
.split-card--brief-interior::after {
  content: "";
  position: absolute;
  top: clamp(434px, 28vw, 520px);
  bottom: 18px;
  width: clamp(156px, 11vw, 184px);
  background: url("../images/brief-column.png") center top / auto 100% no-repeat;
  opacity: 0.68;
  filter:
    blur(1.4px)
    saturate(0.88)
    brightness(1)
    drop-shadow(0 18px 32px rgba(12, 24, 46, 0.07))
    drop-shadow(0 0 20px rgba(179, 138, 72, 0.1));
  pointer-events: none;
  z-index: 0;
}

.split-card--brief-interior::before {
  left: 0;
  transform: scaleX(0.72);
}

.split-card--brief-interior::after {
  right: 0;
  transform: scaleX(-0.72);
}

.split-card--brief-interior > * {
  position: relative;
  z-index: 1;
}

.brief-panel--interior {
  width: min(calc(100% + 148px), 1310px);
  gap: 24px;
  padding: clamp(28px, 3vw, 36px) clamp(34px, 4vw, 48px) clamp(34px, 3.6vw, 42px);
  border-radius: 36px;
}

.brief-panel--interior h2 {
  max-width: 980px;
  font-size: clamp(1.86rem, 2.46vw, 2.58rem);
  line-height: 1.08;
  text-wrap: balance;
}

.brief-panel--interior .feature-list {
  width: min(100%, 1010px);
  justify-self: center;
  gap: 18px;
  margin-top: 4px;
}

.brief-panel--interior .feature-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  text-align: left;
  font-size: clamp(1.08rem, 1.48vw, 1.28rem);
  line-height: 1.58;
}

.brief-panel--interior .feature-list li::before {
  width: 15px;
  height: 15px;
  margin-top: 6px;
  justify-self: center;
  box-shadow: 0 0 0 8px rgba(179, 138, 72, 0.14);
}

.brief-form-card--interior {
  width: min(100%, 920px);
  padding: clamp(24px, 2.8vw, 34px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
}

.form-grid--brief-interior {
  gap: 18px 22px;
}

.form-grid--brief-interior .field input,
.form-grid--brief-interior .field select {
  height: 60px;
  min-height: 60px;
}

.form-grid--brief-interior .field textarea {
  min-height: 188px;
}

.form-grid--brief-home {
  gap: 18px 22px;
  align-items: start;
}

.form-grid--brief-home .field {
  gap: 10px;
  align-content: start;
}

.form-grid--brief-home .field label {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.form-grid--brief-home .field input,
.form-grid--brief-home .field select,
.form-grid--brief-home .field textarea {
  min-height: 60px;
  padding: 0 20px;
  border-radius: 22px;
  font-size: 1.04rem;
}

.form-grid--brief-home .field input,
.form-grid--brief-home .field select {
  height: 60px;
}

.form-grid--brief-home .field select {
  margin: 0;
  line-height: 1.2;
}

.form-grid--brief-home .field textarea {
  min-height: 180px;
  padding: 18px 20px;
}

.form-grid--brief-home .field input::placeholder,
.form-grid--brief-home .field textarea::placeholder,
.form-grid--brief-home .field select {
  font-size: 1rem;
}

.form-grid--brief-home .form-note,
.form-grid--brief-home .form-status {
  text-align: center;
  font-size: 0.94rem;
}

.form-grid--brief-home .btn {
  min-height: 58px;
  padding-block: 0;
}

.comparison {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(18, 32, 56, 0.08);
  box-shadow: var(--shadow-sm);
}

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

.comparison__row > div {
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(18, 32, 56, 0.06);
  line-height: 1.66;
}

.comparison__row > div:nth-child(1) {
  font-weight: 700;
}

.comparison__row:nth-child(even):not(.comparison__row--head) > div {
  background: rgba(250, 248, 244, 0.9);
}

.comparison__row--head > div {
  background: rgba(20, 59, 110, 0.08);
  font-weight: 800;
  color: var(--accent);
}

.article-layout {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.article-toc {
  position: sticky;
  top: 118px;
  align-self: start;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 32, 56, 0.08);
  box-shadow: var(--shadow-md);
}

.article-toc h3 {
  margin-bottom: 14px;
}

.article-toc a {
  display: block;
  padding: 12px 0;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(18, 32, 56, 0.06);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.article-toc a:last-child {
  border-bottom: 0;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--accent);
  padding-left: 4px;
}

.article-content {
  display: grid;
  gap: 30px;
}

.article-section {
  padding: 34px 36px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(18, 32, 56, 0.08);
  box-shadow: var(--shadow-md);
}

.article-section > * {
  max-width: var(--content-measure);
}

.article-section h2,
.article-section h3 {
  margin-bottom: 18px;
  max-width: 18ch;
  line-height: 1.08;
}

.article-section p + p,
.article-section ul + p,
.article-section p + ul {
  margin-top: 14px;
}

.article-section ul {
  padding-left: 20px;
  margin: 0;
}

.article-section p,
.article-section li {
  color: var(--text-soft);
  line-height: 1.78;
}

.callout {
  padding: 24px 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(20, 59, 110, 0.08), rgba(179, 138, 72, 0.1));
  border: 1px solid rgba(20, 59, 110, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

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

.field {
  display: grid;
  gap: 10px;
}

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

.field label {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 20px;
  border: 1px solid rgba(18, 32, 56, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
  padding: 16px 18px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(82, 96, 116, 0.78);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(20, 59, 110, 0.28);
  box-shadow: 0 0 0 4px rgba(20, 59, 110, 0.08);
}

.form-note,
.form-status {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.66;
}

.form-status {
  min-height: 24px;
}

.contact-card strong {
  font-size: 1.12rem;
}

.contact-card__meta {
  color: var(--text-soft);
  line-height: 1.72;
}

.contact-presence {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: stretch;
}

.contact-presence__map {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(18, 32, 56, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(243, 245, 248, 0.72)),
    radial-gradient(circle at top left, rgba(20, 59, 110, 0.08), transparent 42%);
  box-shadow: var(--shadow-sm);
}

.contact-presence__map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(0.88) contrast(0.98);
}

.contact-presence__details {
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-presence__card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.84));
  border: 1px solid rgba(18, 32, 56, 0.08);
  box-shadow: var(--shadow-sm);
}

.contact-presence__card h3 {
  margin: 0;
}

.contact-presence__address {
  display: grid;
  gap: 10px;
  color: var(--text-soft);
}

.contact-presence__address strong {
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.contact-presence__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(20, 59, 110, 0.08);
  color: var(--accent);
  font-weight: 700;
}

.contact-presence__link::after {
  content: "↗";
}

.requisites-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.requisites-list li {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(20, 59, 110, 0.05);
  border: 1px solid rgba(20, 59, 110, 0.08);
}

.requisites-list strong {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.requisites-list span {
  color: var(--text);
  font-weight: 700;
}

.policy-facts {
  margin-bottom: 30px;
}

.article-content--policy {
  position: relative;
  isolation: isolate;
}

.article-content--policy::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 24px;
  width: clamp(180px, 16vw, 240px);
  height: clamp(220px, 18vw, 300px);
  background:
    radial-gradient(circle at center, rgba(179, 138, 72, 0.14), transparent 56%),
    url("../images/process-scales-cutout.png") center top / contain no-repeat;
  opacity: 0.12;
  filter:
    saturate(0.92)
    brightness(1.02)
    blur(0.6px);
  pointer-events: none;
  z-index: 0;
}

.article-content--policy > * {
  position: relative;
  z-index: 1;
}

.article-section--policy h2 {
  max-width: none;
  font-size: clamp(1.32rem, 1.74vw, 1.62rem);
  line-height: 1.12;
}

.article-section--policy ul {
  display: grid;
  gap: 10px;
}

.policy-note {
  margin-top: 18px;
  color: var(--text-soft);
}

.office-map {
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at bottom right, rgba(20, 59, 110, 0.08), transparent 40%);
  border: 1px solid rgba(18, 32, 56, 0.08);
  box-shadow: var(--shadow-md);
}

.office-map--about-regions {
  display: grid;
  align-content: start;
  gap: 18px;
}

.office-map__title--about-regions {
  margin: 0;
  font-size: clamp(1.44rem, 2.1vw, 1.92rem);
  line-height: 1.08;
}

.office-map--contact {
  display: grid;
  gap: 26px;
}

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

.office-map--about-regions .region-list {
  gap: 16px 26px;
  margin-top: 2px;
}

.region-list span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(20, 59, 110, 0.07);
  color: var(--accent);
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.site-footer {
  padding: 48px 0 60px;
  background:
    linear-gradient(180deg, rgba(7, 20, 40, 0.82), rgba(8, 20, 39, 0.9)),
    radial-gradient(circle at top right, rgba(179, 138, 72, 0.12), transparent 24%),
    url("../images/footer-bg.png") center center / cover no-repeat;
}

.site-footer__shell {
  padding: 42px 0 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-inverse);
  box-shadow: none;
}

.site-footer__grid {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.06fr) repeat(2, minmax(220px, 0.72fr));
}

.site-footer__grid--home {
  column-gap: 22px;
  grid-template-columns: minmax(0, 1.24fr) minmax(190px, 0.5fr) minmax(190px, 0.5fr);
}

.site-footer__meta {
  display: grid;
  gap: 18px;
}

.site-footer__grid--home .site-footer__meta {
  padding-right: clamp(42px, 4vw, 76px);
}

.site-footer__services {
  justify-self: start;
}

.site-footer__nav {
  justify-self: end;
}

.site-footer__grid--home .site-footer__services {
  justify-self: end;
}

.site-footer__grid--home .site-footer__nav {
  justify-self: start;
  margin-left: clamp(12px, 1.4vw, 20px);
}

.site-footer__legal {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  color: rgba(239, 243, 248, 0.64);
  font-size: 0.9rem;
  text-align: left;
}

.site-footer__legal-copy {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
}

.site-footer__credit {
  margin-left: auto;
  margin-right: clamp(168px, 12vw, 214px);
  position: relative;
  z-index: 2;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  color: rgba(239, 243, 248, 0.72);
  transition: color 180ms ease, opacity 180ms ease;
}

.site-footer__credit:hover,
.site-footer__credit:focus-visible {
  color: var(--text-inverse);
  opacity: 1;
}

.site-footer h3 {
  margin-bottom: 14px;
}

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

.site-footer .footer-list li {
  gap: 10px;
  align-items: center;
}

.site-footer .footer-list li::before {
  width: 7px;
  height: 7px;
  margin-top: 0;
  box-shadow: 0 0 0 4px rgba(179, 138, 72, 0.13);
}

.footer-list a {
  color: rgba(239, 243, 248, 0.78);
  line-height: 1.55;
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: #fff;
}

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

.site-map-group {
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(18, 32, 56, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.site-map-group:hover,
.site-map-group:focus-within {
  transform: translateY(-4px);
  border-color: rgba(18, 32, 56, 0.12);
  box-shadow: 0 22px 42px rgba(12, 24, 46, 0.1);
}

.site-map-group ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.site-map-group a {
  font-weight: 700;
  color: var(--accent);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.u-hidden {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 135;
  width: min(430px, calc(100vw - 34px));
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: none;
}

.cookie-consent.is-hiding {
  opacity: 0;
  transform: translateY(12px);
}

.cookie-consent__body {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 32, 56, 0.1);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.cookie-consent__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(20, 59, 110, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-consent h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.28rem, 2vw, 1.6rem);
}

.cookie-consent p {
  color: var(--text-soft);
}

.cookie-consent p a {
  color: var(--accent);
  font-weight: 700;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.cookie-consent__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(18, 32, 56, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
  transform: translateY(-1px);
  background: rgba(20, 59, 110, 0.06);
  border-color: rgba(20, 59, 110, 0.18);
}

.cookie-consent__button--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: var(--text-inverse);
  border-color: transparent;
}

.cookie-consent__button--primary:hover,
.cookie-consent__button--primary:focus-visible {
  background: linear-gradient(135deg, #18457f 0%, #11345f 100%);
  color: var(--text-inverse);
  border-color: transparent;
}

.is-assisted-focus {
  box-shadow:
    0 0 0 4px rgba(20, 59, 110, 0.12),
    var(--shadow-lg);
  animation: assistantPulse 1.8s ease;
}

@keyframes assistantPulse {
  0% {
    transform: translateY(0);
  }
  35% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}

.ai-assistant {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 140;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.ai-assistant__hint {
  width: min(320px, calc(100vw - 40px));
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 32, 56, 0.08);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  display: grid;
  gap: 6px;
  color: var(--text);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.ai-assistant--hint-visible .ai-assistant__hint {
  opacity: 1;
  transform: none;
}

.ai-assistant__hint strong {
  font-size: 0.98rem;
}

.ai-assistant__hint span {
  font-size: 0.92rem;
  color: var(--text-soft);
}

.ai-assistant__toggle {
  position: relative;
  width: 74px;
  height: 74px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(9, 24, 48, 0.98), rgba(20, 59, 110, 0.96));
  color: var(--text-inverse);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.ai-assistant__toggle-core {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ai-assistant__toggle-core svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-assistant__toggle-pulse {
  position: absolute;
  inset: 13px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-assistant__toggle::before {
  content: "";
  position: absolute;
  inset: auto -10px -18px auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179, 138, 72, 0.42), transparent 70%);
}

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

.ai-assistant__panel {
  width: min(400px, calc(100vw - 28px));
  border-radius: 30px;
  overflow: hidden;
  background: rgba(248, 244, 238, 0.97);
  border: 1px solid rgba(18, 32, 56, 0.1);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.ai-assistant__panel[hidden] {
  display: none !important;
}

.ai-assistant__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 18px 16px;
  background:
    radial-gradient(circle at top right, rgba(179, 138, 72, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(9, 24, 48, 0.98), rgba(20, 59, 110, 0.96));
  color: var(--text-inverse);
}

.ai-assistant__header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-assistant__identity {
  display: flex;
  gap: 12px;
  align-items: center;
}

.ai-assistant__identity strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.ai-assistant__identity span {
  font-size: 0.82rem;
  color: rgba(239, 243, 248, 0.76);
}

.ai-assistant__avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ai-assistant__voice-toggle,
.ai-assistant__close {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
  display: grid;
  place-items: center;
  padding: 0;
}

.ai-assistant__voice-toggle {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-assistant__voice-toggle.is-active {
  background: rgba(179, 138, 72, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ai-assistant__voice-toggle:hover,
.ai-assistant__voice-toggle:focus-visible,
.ai-assistant__close:hover,
.ai-assistant__close:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.ai-assistant__close {
  font-size: 1.5rem;
  line-height: 1;
}

.ai-assistant__messages {
  display: grid;
  gap: 12px;
  max-height: min(46vh, 420px);
  overflow-y: auto;
  padding: 18px;
  scroll-behavior: smooth;
}

.ai-assistant__message {
  display: grid;
  gap: 10px;
  max-width: 90%;
}

.ai-assistant__message--assistant {
  justify-self: start;
}

.ai-assistant__message--user {
  justify-self: end;
}

.ai-assistant__bubble {
  padding: 14px 16px;
  border-radius: 20px;
  white-space: pre-line;
}

.ai-assistant__bubble--typing {
  min-height: 56px;
}

.ai-assistant__message--assistant .ai-assistant__bubble {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 32, 56, 0.08);
  color: var(--text);
}

.ai-assistant__message--user .ai-assistant__bubble {
  background: linear-gradient(135deg, rgba(20, 59, 110, 0.98), rgba(17, 34, 61, 0.94));
  color: var(--text-inverse);
}

.ai-assistant__bubble--typing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ai-assistant__actions,
.ai-assistant__smart {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ai-assistant__actions {
  padding: 0 18px 4px;
}

.ai-assistant__smart {
  padding: 0 18px 16px;
}

.ai-assistant__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(20, 59, 110, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.ai-assistant__action:hover,
.ai-assistant__action:focus-visible {
  background: rgba(20, 59, 110, 0.08);
  border-color: rgba(20, 59, 110, 0.18);
  transform: translateY(-1px);
}

.ai-assistant__smart-chip {
  background: rgba(20, 59, 110, 0.08);
}

.ai-assistant__typing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ai-assistant__typing span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: assistantTypingDot 1.05s ease-in-out infinite;
}

.ai-assistant__typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.ai-assistant__typing span:nth-child(3) {
  animation-delay: 0.3s;
}

.ai-assistant__typing-label {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.ai-assistant__composer {
  padding: 0 18px 18px;
}

.ai-assistant__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ai-assistant__composer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
}

.ai-assistant__input {
  min-height: 52px;
  width: 100%;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(18, 32, 56, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.ai-assistant__input:focus {
  outline: none;
  border-color: rgba(20, 59, 110, 0.24);
  box-shadow: 0 0 0 4px rgba(20, 59, 110, 0.08);
}

.ai-assistant__send {
  width: 52px;
  min-height: 52px;
  min-width: 52px;
  padding: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: var(--text-inverse);
  font-weight: 700;
}

.ai-assistant__mic {
  width: 52px;
  min-height: 52px;
  min-width: 52px;
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(20, 59, 110, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ai-assistant__send,
.ai-assistant__mic {
  display: grid;
  place-items: center;
}

.ai-assistant__send svg,
.ai-assistant__mic svg,
.ai-assistant__voice-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-assistant__mic:hover,
.ai-assistant__mic:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(20, 59, 110, 0.24);
  background: rgba(20, 59, 110, 0.06);
}

.ai-assistant__voice-toggle:hover,
.ai-assistant__voice-toggle:focus-visible {
  transform: translateY(-1px);
}

.ai-assistant__mic.is-active {
  background: rgba(20, 59, 110, 0.12);
  border-color: rgba(20, 59, 110, 0.28);
}

.ai-assistant__voice-toggle:disabled,
.ai-assistant__mic:disabled {
  opacity: 0.56;
  cursor: not-allowed;
}

.ai-assistant__voice-note {
  margin: 10px 2px 0;
  font-size: 0.82rem;
  color: var(--text-soft);
  min-height: 1.2em;
}

.ai-assistant.is-thinking .ai-assistant__send,
.ai-assistant.is-thinking .ai-assistant__input,
.ai-assistant.is-thinking .ai-assistant__mic {
  opacity: 0.78;
}

.ai-assistant.is-recording .ai-assistant__panel {
  box-shadow: 0 24px 50px rgba(20, 59, 110, 0.24);
}

.ai-assistant.is-recording .ai-assistant__header {
  background:
    radial-gradient(circle at top right, rgba(179, 138, 72, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(18, 43, 82, 0.98), rgba(33, 76, 131, 0.96));
}

.ai-assistant.is-speaking .ai-assistant__voice-toggle {
  background: rgba(179, 138, 72, 0.26);
}

@keyframes assistantTypingDot {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@keyframes briefColumnAura {
  0% {
    opacity: 0.82;
    filter:
      blur(0.8px)
      saturate(0.9)
      brightness(0.96)
      drop-shadow(0 16px 30px rgba(12, 24, 46, 0.07))
      drop-shadow(0 0 14px rgba(179, 138, 72, 0.08));
  }

  100% {
    opacity: 0.94;
    filter:
      blur(1.2px)
      saturate(1)
      brightness(1.04)
      drop-shadow(0 20px 38px rgba(12, 24, 46, 0.1))
      drop-shadow(0 0 34px rgba(179, 138, 72, 0.16));
  }
}

@media (max-width: 1120px) {
  .split-card--brief-home {
    width: 100%;
    padding-inline: 0;
  }

  .split-card--brief-home::before,
  .split-card--brief-home::after,
  .split-card--brief-interior::before,
  .split-card--brief-interior::after,
  .section--ornament .container::after,
  .article-content--policy::after {
    display: none;
  }

  .split-card--brief-home > *,
  .brief-form-card--home,
  .split-card--brief-interior > *,
  .brief-form-card--interior {
    width: min(100%, 860px);
  }

  .split-card--brief-interior {
    width: 100%;
    padding-inline: 0;
  }

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

  .hero__single--home-map::after {
    top: 160px;
    width: min(96%, 1240px);
    height: clamp(220px, 30vw, 320px);
    opacity: 0.24;
  }

  .timeline--home::before {
    top: -118px;
    width: clamp(250px, 32vw, 340px);
    height: clamp(300px, 42vw, 430px);
    opacity: 0.28;
  }

  .showcase-hero__steps {
    --showcase-step-gap: 54px;
    grid-template-columns: repeat(2, 256px);
    gap: 36px var(--showcase-step-gap);
  }

  .showcase-hero__steps::before {
    display: none;
  }

  .showcase-step::before,
  .showcase-step::after {
    display: none;
  }

  .hero__wrap,
  .page-hero__grid,
  .problem-grid,
  .quiz,
  .article-layout,
  .cta-band__content,
  .section-head {
    grid-template-columns: 1fr;
  }

  .timeline,
  .case-grid,
  .article-grid,
  .contact-grid,
  .resource-grid,
  .site-map-grid,
  .region-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero__aside--services-hub .feature-list {
    grid-template-columns: 1fr;
  }

  .page-hero__grid--services-hub {
    padding-bottom: 0;
  }

  .page-hero__aside--services-hub::before,
  .page-hero__aside--services-hub::after {
    display: none;
  }

  .page-hero__aside--services-hub .feature-list li {
    min-height: auto;
    font-size: 1.14rem;
    padding: 16px 18px;
  }

  .faq-list--home {
    max-width: none;
  }

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

  .quiz__result,
  .article-toc {
    position: static;
  }
}

@media (max-width: 940px) {
  .site-header__bar {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-inline: 18px;
    gap: 12px;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    margin-top: 8px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    border-radius: 18px;
    background: rgba(25, 39, 64, 0.94);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.06),
      0 18px 34px rgba(7, 14, 28, 0.24);
  }

  .site-nav__list > li {
    width: 100%;
  }

  .site-nav a {
    width: 100%;
    justify-content: center;
    text-align: center;
    min-height: 40px;
    white-space: normal;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header__actions {
    display: none;
  }

  .site-nav__cta-item {
    display: block;
    margin-top: 4px;
  }

  .site-nav__cta-link {
    min-height: 46px;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
  }

  .showcase-hero {
    margin-top: calc(-1 * (var(--header-height) + 20px));
    padding-top: calc(var(--header-height) + 82px);
  }

  .showcase-hero__shell,
  .showcase-hero--inner .showcase-hero__shell {
    min-height: auto;
  }

  .showcase-hero__copy h1 {
    max-width: min(100%, 760px);
  }

  .showcase-hero--home .showcase-hero__copy h1 {
    white-space: normal;
    max-width: 760px;
  }

  .hero-line-nowrap {
    white-space: normal;
  }

  .hero__stats,
  .hero__actions-row {
    justify-items: stretch;
  }

  .page-hero__grid h1,
  .page-hero__grid h2 {
    max-width: min(100%, 24ch);
  }

  .hero__stats,
  .surface-grid,
  .grid--3,
  .grid--4,
  .split-card,
  .comparison__row,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .timeline,
  .case-grid,
  .article-grid,
  .contact-grid,
  .resource-grid,
  .site-map-grid,
  .region-list {
    grid-template-columns: 1fr;
  }

  .surface-grid--stages {
    grid-template-columns: 1fr;
  }

  .comparison__row > div {
    border-bottom: 1px solid rgba(18, 32, 56, 0.06);
  }

  .cta-band__lead h2 span,
  .cta-band__meta-copy span {
    white-space: normal;
  }

  .cta-band__meta {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .btn-group--about-cta,
  .btn-group--service-check,
  .btn-group--cases-cta {
    flex-wrap: wrap;
  }

  .btn-group--about-cta .btn,
  .btn-group--service-check .btn,
  .btn-group--cases-cta .btn {
    white-space: normal;
    text-align: center;
  }

  .page-hero__aside,
  .page-hero__grid--contacts .page-hero__aside,
  .page-hero__aside--about,
  .page-hero__aside--services-hub {
    width: 100%;
  }

  .article-section > * {
    max-width: 100%;
  }

  .faq summary {
    align-items: flex-start;
  }

  .ai-assistant__panel {
    width: min(420px, calc(100vw - 28px));
  }

  .site-footer__legal {
    justify-content: center;
    text-align: center;
  }

  .site-footer__legal-copy {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-footer__credit {
    margin-left: 0;
    margin-right: 0;
  }

  .site-footer__grid--home .site-footer__nav {
    margin-left: 0;
  }

  .site-footer .brand__text {
    white-space: normal;
    flex-wrap: wrap;
  }

  .brief-panel--interior {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .hero__single--home-map::after {
    top: 176px;
    width: min(108%, 720px);
    height: 190px;
    opacity: 0.22;
  }

  .timeline--home::before {
    display: none;
  }

  :root {
    --content-width: calc(100% - 40px);
  }

  .site-header {
    padding-top: 10px;
  }

  .site-header__bar {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .site-nav__list {
    padding: 10px;
    border-radius: 16px;
    gap: 8px;
  }

  .site-nav__cta-link {
    min-height: 44px;
    font-size: 0.96rem;
  }

  .brand__title {
    font-size: 0.84rem;
    letter-spacing: 0.04em;
  }

  .showcase-hero {
    padding-top: calc(var(--header-height) + 72px);
    padding-bottom: 64px;
  }

  .showcase-hero__copy {
    gap: 14px;
  }

  .showcase-hero__eyebrow {
    font-size: 0.82rem;
    line-height: 1.4;
    text-align: center;
  }

  .showcase-hero__copy h1,
  .showcase-hero--inner .showcase-hero__copy h1 {
    max-width: 100%;
    font-size: clamp(1.72rem, 8.2vw, 2.42rem);
    line-height: 1.08;
  }

  .showcase-hero--home .showcase-hero__copy h1 {
    white-space: normal;
  }

  .hero-line-nowrap {
    white-space: normal;
  }

  .showcase-hero__lead {
    font-size: 0.96rem;
  }

  .showcase-hero__steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .showcase-hero__steps::before {
    display: none;
  }

  .showcase-step {
    min-height: auto;
    padding: 28px 20px 22px;
  }

  .showcase-step h2 {
    max-width: none;
    min-height: auto;
    font-size: clamp(1.12rem, 5vw, 1.42rem);
    line-height: 1.12;
  }

  .showcase-step p,
  .showcase-step--result p {
    max-width: none;
    min-height: auto;
    font-size: 1rem;
    line-height: 1.6;
  }

  .showcase-step::before,
  .showcase-step::after {
    display: none;
  }

  .card--about-coverage-map::after {
    inset: -10% -44% -18% 2%;
    background-size: 208% auto;
    background-position: 68% 54%;
    opacity: 0.24;
  }

  .card__title--about-positioning {
    text-wrap: balance;
  }

  .card__title--about-positioning span {
    display: inline;
  }

  .card__title--about-positioning span + span::before {
    content: " ";
  }

  .showcase-step__icon {
    width: 82px;
    height: 82px;
  }

  .showcase-step--result .showcase-step__icon {
    width: 82px;
    height: 82px;
  }

  .page-hero__grid {
    gap: 24px;
  }

  .page-hero__grid h1,
  .page-hero__grid h2 {
    max-width: none;
    font-size: clamp(1.52rem, 8vw, 2.14rem);
    line-height: 1.08;
  }

  .page-hero__title--privacy,
  .page-hero__title--cases,
  .page-hero__title--contacts,
  .page-hero__title--about,
  .page-hero__copy--about .page-hero__title--about,
  .page-hero__title--service-check,
  .page-hero__title--service-appeal,
  .page-hero__title--service-planning,
  .page-hero__title--service-creditor,
  .showcase-hero--inner .showcase-hero__copy h1.showcase-hero__title--cases-cinematic,
  .showcase-hero--inner .showcase-hero__copy h1.showcase-hero__title--service-creditor,
  body[data-page="contacts"] .showcase-hero--inner .showcase-hero__copy h1.showcase-hero__title--contacts-cinematic {
    max-width: 100%;
    font-size: clamp(1.52rem, 8vw, 2.14rem);
    line-height: 1.08;
  }

  .page-hero__aside,
  .page-hero__grid--contacts .page-hero__aside,
  .page-hero__aside--about,
  .page-hero__aside--cases {
    padding: 24px 22px;
  }

  .page-hero__grid--contacts .feature-list li,
  .page-hero__aside--about .feature-list li,
  .page-hero__aside--cases .feature-list li,
  .page-hero__aside--services-hub .feature-list li {
    font-size: 1rem;
  }

  .hero__single {
    padding: 4px 0 0;
  }

  .hero__copy--centered {
    gap: 20px;
  }

  .hero__lede {
    font-size: 1rem;
    line-height: 1.72;
  }

  .hero__actions-row {
    width: 100%;
  }

  .hero-note--standalone {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
  }

  .problem-card {
    padding: 28px 22px;
  }

  .problem-card h3 {
    font-size: 1.42rem;
    margin-bottom: 18px;
  }

  .problem-card .check-list li {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .timeline-card--home h3 {
    min-height: auto;
  }

  .stage-card {
    padding: 24px 22px;
  }

  .stage-card h3 {
    min-height: auto;
  }

  .btn--showcase {
    width: 100%;
    min-width: 0;
  }

  .hero__main,
  .hero__panel,
  .page-hero__card,
  .cta-band,
  .site-footer__shell {
    padding: 24px;
  }

  .card,
  .timeline-card,
  .case-card,
  .article-card,
  .contact-card,
  .resource-card,
  .site-map-group,
  .article-section,
  .office-map {
    padding: 22px;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .brief-panel--home,
  .brief-panel--interior {
    width: 100%;
    padding: 24px 22px;
    border-radius: 28px;
  }

  .brief-panel--home h2,
  .brief-panel--interior h2,
  .cta-band__lead h2,
  .article-section h2,
  .article-section h3 {
    max-width: none;
    font-size: clamp(1.34rem, 6.8vw, 1.92rem);
    line-height: 1.12;
  }

  .cta-band__title--services,
  .cta-band__title--service-check,
  .cta-band__title--service-appeal,
  .cta-band__title--service-planning,
  .cta-band__title--service-creditor,
  .cta-band__title--cases,
  .cta-band__title--about-next-step {
    font-size: clamp(1.34rem, 6.8vw, 1.92rem);
    line-height: 1.12;
  }

  .cta-band__meta,
  .cta-band__meta .btn-group {
    width: 100%;
  }

  .faq summary {
    gap: 14px;
    padding: 18px 20px;
    font-size: 1rem;
  }

  .faq__content {
    padding: 0 20px 20px;
  }

  .comparison {
    border-radius: 24px;
  }

  .comparison__row > div {
    padding: 16px 18px;
  }

  .site-footer .brand__text {
    justify-content: flex-start;
  }

  .cookie-consent__body {
    padding: 18px;
    border-radius: 24px;
  }

  .ai-assistant__toggle {
    width: 64px;
    height: 64px;
    border-radius: 22px;
  }

  .ai-assistant__toggle-core {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .ai-assistant {
    right: 12px;
    left: 12px;
    bottom: 12px;
    justify-items: stretch;
  }

  .ai-assistant__hint,
  .ai-assistant__panel {
    width: 100%;
  }

  .ai-assistant__toggle {
    justify-self: end;
  }

  .ai-assistant__composer-row {
    grid-template-columns: 1fr 1fr;
  }

  .ai-assistant__input {
    grid-column: 1 / -1;
  }

  .ai-assistant__mic,
  .ai-assistant__send {
    width: 100%;
  }

  .cookie-consent {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 98px;
  }

  .cookie-consent__actions {
    flex-direction: column;
  }

  .cookie-consent__button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header__bar {
    gap: 10px;
    padding-inline: 12px;
  }

  .brand {
    min-width: 0;
  }

  .site-nav__list {
    margin-top: 6px;
  }

  .showcase-step,
  .problem-card,
  .case-card,
  .article-card,
  .contact-card,
  .resource-card,
  .site-map-group,
  .office-map {
    min-width: 0;
  }

  .ai-assistant__panel {
    max-height: min(78vh, 640px);
  }
}

@media (max-width: 1120px) {
  .showcase-hero--home .showcase-hero__copy h1 {
    max-width: min(100%, 900px);
    white-space: normal;
  }

  .showcase-hero--home .showcase-hero__steps--risk-links {
    left: auto;
    transform: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 680px);
    margin: 16px auto 0;
  }
}

@media (max-width: 720px) {
  .site-header--cinematic .container {
    width: var(--content-width);
  }

  .showcase-hero--home .showcase-hero__steps--risk-links {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
  }

  .showcase-step--risk-link {
    min-height: auto;
    padding: 22px 20px 20px;
  }

  .showcase-step--risk-link h2 {
    font-size: 1.04rem;
    line-height: 1.2;
  }

  .showcase-step--risk-link p {
    font-size: 0.94rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
