:root {
  --bg: #f3f0e7;
  --surface: #fffcf2;
  --surface-2: #eae5d8;
  --surface-3: #f8f3e3;
  --accent-tint: #fff0b8;
  --text: #252C37;
  --muted: #5f6670;
  --line: rgba(37, 44, 55, 0.18);
  --accent: #F8C61E;
  --accent-strong: #252C37;
  --warm: #F8C61E;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(37, 44, 55, 0.12);
  --content-max: 1360px;
  --page-padding: 56px;
  --content-gutter: max(var(--page-padding), calc((100vw - var(--content-max)) / 2));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 76px;
  padding: 0 var(--content-gutter);
  border-bottom: 1px solid rgba(37, 44, 55, 0.14);
  background: rgba(243, 240, 231, 0.94);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand-logo {
  display: inline-flex;
  align-items: stretch;
  min-height: 38px;
  overflow: hidden;
  border: 1px solid rgba(37, 44, 55, 0.16);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(37, 44, 55, 0.1);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
}

.brand-logo__part {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
}

.brand-logo__part--accent {
  color: var(--text);
  background: var(--accent);
}

.brand-logo__part--dark {
  color: var(--accent);
  background: var(--text);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  margin-left: auto;
}

.main-nav a {
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--muted);
}

.main-nav a:hover {
  color: var(--text);
  background: var(--surface-2);
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

.hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(520px, 1fr);
  gap: 36px;
  align-items: center;
  padding: 48px var(--content-gutter);
  overflow: hidden;
  background: #fbf5e9;
}

.hero__content {
  width: 100%;
  max-width: 720px;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__image {
  display: block;
  width: min(86%, 540px);
  max-width: none;
  height: auto;
  object-fit: contain;
}

.hero__intro {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0 0 20px;
  padding: 0 14px;
  border: 1px solid rgba(248, 198, 30, 0.55);
  border-radius: 8px;
  color: var(--text);
  background: rgba(248, 198, 30, 0.18);
  font-size: 0.92rem;
  font-weight: 850;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.content-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.content-breadcrumbs a:hover {
  color: var(--text);
}

.content-breadcrumbs a + a::before {
  content: "·";
  margin-right: 8px;
  color: var(--muted);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: 3.55rem;
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.15rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero__lead,
.page-hero p,
.article__header p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  cursor: pointer;
}

.button--primary {
  color: var(--text);
  background: var(--accent);
}

.button--primary:hover {
  color: var(--accent);
  background: var(--accent-strong);
}

.button--secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 252, 242, 0.82);
}

.button--secondary:hover {
  border-color: var(--accent);
}

.section {
  padding: 76px var(--content-gutter);
}

.section--tight {
  padding-top: 58px;
}

.section--tone-base {
  background: var(--bg);
}

.section--tone-muted,
.section--muted {
  background: var(--surface-2);
}

.section--tone-warm {
  background: var(--bg);
}

.section__header,
.split-layout,
.service-grid,
.case-list,
.work-list,
.contact-layout,
.article,
.page-hero {
  width: 100%;
  margin: 0 auto;
}

.section__header {
  margin-bottom: 30px;
}

.section__header p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section__header .eyebrow {
  color: var(--accent-strong);
  font-size: 0.78rem;
}

.task-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin: 0 auto;
}

.task-card {
  display: grid;
  align-content: start;
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.task-card:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 198, 30, 0.72);
}

.task-card span,
.compact-service span,
.scenario-item span {
  margin-bottom: 14px;
  color: var(--accent-strong);
  font-weight: 900;
}

.task-card strong {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.task-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.service-grid--wide {
  gap: 22px;
}

.service-card {
  min-height: 218px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 198, 30, 0.72);
}

.service-card span {
  display: block;
  margin-bottom: 16px;
  font-size: 1.28rem;
  font-weight: 850;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card small {
  display: inline-flex;
  margin-top: 28px;
  color: var(--accent-strong);
  font-weight: 800;
}

.service-card--large {
  min-height: 260px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: 56px;
  align-items: start;
}

.text-stack p {
  color: var(--muted);
  font-size: 1.08rem;
}

.text-stack p:last-child {
  margin-bottom: 0;
}

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

.case-row {
  display: grid;
  grid-template-columns: 150px minmax(220px, 0.7fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.case-row:hover {
  border-color: rgba(248, 198, 30, 0.72);
}

.case-row__tag {
  color: var(--warm);
  font-size: 0.88rem;
  font-weight: 850;
}

.case-row strong {
  font-size: 1.05rem;
}

.case-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.page-hero {
  padding: 82px var(--content-gutter) 38px;
}

.page-hero h1 {
  font-size: 3.2rem;
}

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

.work-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  min-height: 116px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.work-item span {
  color: var(--accent-strong);
  font-weight: 900;
}

.work-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin: 0 auto;
}

.outcome-card {
  display: grid;
  align-content: start;
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(248, 198, 30, 0.38);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.outcome-card span {
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-weight: 900;
}

.outcome-card p {
  margin-bottom: 0;
  color: var(--text);
  font-weight: 720;
}

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

.offer-block {
  width: 100%;
  padding: 30px;
  border: 1px solid rgba(248, 198, 30, 0.42);
  border-radius: var(--radius);
  background: var(--accent-tint);
}

.offer-block + .offer-block {
  margin-top: 48px;
}

.offer-block__header {
  margin-bottom: 24px;
}

.service-group + .service-group {
  margin-top: 48px;
}

.service-group__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.service-group__header > div {
  max-width: 860px;
}

.service-group__header p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.offer-block__header h2 {
  margin-bottom: 0;
  font-size: 1.72rem;
}

.offer-grid--tariffs {
  gap: 20px;
}

.offer-card {
  display: grid;
  align-content: start;
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.offer-card:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 198, 30, 0.72);
}

.offer-card--tariff {
  border-color: rgba(248, 198, 30, 0.5);
}

.offer-card span {
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-weight: 900;
}

.offer-card h3 {
  margin: 0 0 14px;
  font-size: 1.22rem;
  line-height: 1.25;
}

.offer-card p {
  color: var(--muted);
}

.offer-card strong {
  align-self: end;
  margin-top: 22px;
  color: var(--text);
  font-size: 1.18rem;
}

.service-showcase {
  display: grid;
  gap: 28px;
  width: 100%;
  margin: 0 auto;
}

.service-panel {
  padding: 30px;
  border: 1px solid rgba(248, 198, 30, 0.42);
  border-radius: var(--radius);
  background: var(--surface-3);
}

.service-panel__header {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto;
  gap: 28px;
  align-items: start;
  margin-bottom: 24px;
}

.service-panel__header h2 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: 1.72rem;
}

.service-panel__header p:last-child {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted);
}

.service-panel__side {
  display: grid;
  justify-items: end;
  gap: 14px;
}

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

.compact-service {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.compact-service:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 198, 30, 0.72);
}

.compact-service h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  line-height: 1.28;
}

.compact-service p {
  color: var(--muted);
  font-size: 0.96rem;
}

.compact-service strong {
  align-self: end;
  margin-top: 14px;
  color: var(--text);
}

.integration-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1.28fr);
  gap: 46px;
  align-items: start;
  width: 100%;
  margin: 0 auto;
}

.integration-layout p {
  max-width: 620px;
  color: var(--muted);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--surface);
  font-weight: 750;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin: 0 auto;
}

.scenario-item {
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(248, 198, 30, 0.42);
  border-radius: var(--radius);
  background: var(--surface);
}

.scenario-item p {
  margin-bottom: 0;
  color: var(--text);
  font-weight: 750;
}

.work-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 1.05fr);
  gap: 38px;
  align-items: start;
  width: 100%;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid rgba(248, 198, 30, 0.34);
  border-radius: var(--radius);
  background: var(--surface-3);
  box-shadow: var(--shadow);
}

.work-layout__formats h2 {
  max-width: 720px;
}

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

.format-item,
.cta-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.format-item {
  min-height: 148px;
  padding: 22px;
  box-shadow: none;
}

.format-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.format-item p,
.cta-band p {
  color: var(--muted);
}

.process-panel {
  align-self: stretch;
  padding-left: 30px;
  border-left: 1px solid rgba(37, 44, 55, 0.14);
}

.process-panel h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 1.72rem;
}

.process-flow {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 54px;
  padding: 0 0 22px;
}

.process-flow li:last-child {
  padding-bottom: 0;
}

.process-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  bottom: -2px;
  left: 20px;
  width: 2px;
  border-radius: 999px;
  background: rgba(37, 44, 55, 0.16);
}

.process-flow__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(37, 44, 55, 0.18);
  border-radius: 50%;
  color: var(--text);
  background: var(--accent);
  font-size: 0.98rem;
  font-weight: 900;
}

.process-flow__text {
  padding-top: 10px;
  color: var(--text);
  font-weight: 820;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 32px;
  border-color: rgba(248, 198, 30, 0.34);
  color: var(--surface);
  background: var(--text);
}

.cta-band h2 {
  color: var(--surface);
  margin-bottom: 12px;
}

.cta-band p {
  max-width: 760px;
  margin-bottom: 0;
}

.cta-band .eyebrow {
  color: var(--accent);
}

.cta-band p:not(.eyebrow) {
  color: rgba(255, 252, 242, 0.74);
}

.service-item-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.service-item-summary div {
  min-width: 220px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 242, 0.84);
}

.service-item-summary span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.service-item-summary strong {
  font-size: 1.12rem;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.15fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: start;
  width: 100%;
  margin: 0 auto;
}

.service-detail-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-detail-card h2 {
  margin-top: 34px;
  font-size: 1.55rem;
}

.service-detail-card h2:first-child {
  margin-top: 0;
}

.check-list,
.work-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  color: var(--muted);
}

.check-list {
  padding-left: 22px;
}

.work-steps {
  padding-left: 24px;
}

.service-request h2 {
  font-size: 1.55rem;
}

.service-request > p {
  color: var(--muted);
}

.article {
  padding: 78px var(--content-gutter);
}

.article__header {
  margin-bottom: 54px;
}

.article__image {
  display: block;
  width: 100%;
  max-height: 520px;
  margin-bottom: 54px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.article__image[src$=".svg"] {
  max-height: none;
}

.article__body {
  width: min(760px, 100%);
}

.article__body h2 {
  margin-top: 38px;
  font-size: 1.5rem;
}

.article__body p {
  color: var(--muted);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin: 0 auto;
}

.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.article-card:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 198, 30, 0.72);
}

.article-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-card__body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.article-card__tags,
.article-tags,
.case-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-card__tags span,
.article-tags a,
.case-filter a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(37, 44, 55, 0.14);
  border-radius: 8px;
  color: var(--text);
  background: var(--accent-tint);
  font-size: 0.82rem;
  font-weight: 850;
}

.article-tags {
  margin-top: 22px;
}

.article-tags a:hover,
.case-filter a:hover,
.case-filter a.is-active {
  border-color: var(--accent);
  background: var(--accent);
}

.case-filter {
  margin-bottom: 28px;
}

.case-filter a {
  min-height: 40px;
  padding: 0 16px;
  background: var(--surface);
}

.article-card strong {
  font-size: 1.1rem;
  line-height: 1.28;
}

.article-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.article-card__result {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  padding: 16px 16px 16px 18px;
  border: 1px solid rgba(37, 44, 55, 0.18);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  color: var(--surface);
  background: var(--text);
  box-shadow: 0 14px 28px rgba(37, 44, 55, 0.18);
}

.article-card__result span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 8px;
  color: var(--text);
  background: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card__result p {
  color: rgba(255, 252, 242, 0.86);
  font-size: 0.94rem;
  font-weight: 720;
}

.case-preview__header {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.case-preview__header > div {
  max-width: 760px;
}

.case-preview__header p:last-child {
  margin-bottom: 0;
}

.case-preview__actions {
  display: none;
}

.case-preview__button {
  white-space: nowrap;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.empty-state h2 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.empty-state p {
  max-width: 620px;
}

.article-feedback {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  gap: 34px;
  align-items: start;
  margin-top: 64px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.article-feedback h2 {
  margin-bottom: 0;
  font-size: 1.55rem;
}

.article-feedback__form,
.embedded-crm-form {
  display: grid;
  gap: 16px;
}

.embedded-crm-form p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  gap: 34px;
  align-items: start;
}

.contact-trust {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(520px, 1.38fr);
  gap: 34px;
  align-items: start;
  width: 100%;
  margin: 0 auto;
}

.contact-trust__intro p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.trust-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.trust-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-strong);
  font-weight: 900;
}

.trust-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.26;
}

.trust-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-aside,
.contact-form-shell {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-aside h2 {
  font-size: 1.35rem;
}

.contact-photo-placeholder {
  display: grid;
  min-height: 360px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px dashed rgba(37, 44, 55, 0.32);
  border-radius: var(--radius);
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(255, 252, 242, 0.9), rgba(234, 229, 216, 0.74)),
    radial-gradient(circle at 76% 18%, rgba(248, 198, 30, 0.34), transparent 28%);
  font-weight: 800;
}

.contact-photo-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}

.contact-aside ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.form-status {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--accent-strong);
  background: var(--accent-tint);
  font-weight: 750;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--text);
  background: var(--surface);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(248, 198, 30, 0.42);
  border-color: var(--accent);
}

.site-footer {
  padding: 34px var(--content-gutter);
  border-top: 1px solid rgba(248, 198, 30, 0.24);
  color: rgba(255, 252, 242, 0.72);
  background: var(--text);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(320px, 1fr);
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0 auto;
}

.site-footer__brand {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.brand-logo--footer {
  width: fit-content;
  border-color: rgba(248, 198, 30, 0.38);
  box-shadow: none;
}

.site-footer a {
  color: var(--accent);
  font-weight: 850;
}

.site-footer__contacts {
  display: grid;
  justify-items: end;
  justify-self: end;
  gap: 10px;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 252, 242, 0.18);
  border-radius: 8px;
  color: var(--surface);
  background: rgba(255, 252, 242, 0.06);
  white-space: nowrap;
}

.footer-contact__icon {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.footer-contact:hover {
  border-color: rgba(248, 198, 30, 0.72);
}

.site-footer .footer-contact--telegram {
  color: var(--text);
  border-color: var(--accent);
  background: var(--accent);
}

@media (max-width: 920px) {
  :root {
    --page-padding: 24px;
  }

  .site-header {
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: auto;
  }

  .nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .nav-toggle-label {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    cursor: pointer;
  }

  .nav-toggle:focus-visible + .nav-toggle-label {
    outline: 2px solid rgba(248, 198, 30, 0.5);
    outline-offset: 2px;
  }

  .nav-toggle-label span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
  }

  .nav-toggle-label span + span {
    margin-top: 5px;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    justify-content: stretch;
  }

  .nav-toggle:checked ~ .main-nav {
    display: grid;
    gap: 6px;
  }

  .main-nav a {
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    background: var(--surface);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 48px;
    padding-bottom: 42px;
  }

  .hero__visual {
    display: none;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2,
  .page-hero h1 {
    font-size: 2rem;
  }

  .service-grid,
  .offer-grid,
  .article-grid,
  .outcome-grid,
  .work-list,
  .task-grid,
  .service-panel__list,
  .integration-layout,
  .scenario-grid,
  .work-layout,
  .format-grid,
  .split-layout,
  .article-feedback,
  .service-detail-layout,
  .contact-trust,
  .trust-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-panel__header,
  .case-preview__header,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .case-preview__button--desktop {
    display: none;
  }

  .case-preview__actions {
    display: flex;
    margin-top: 20px;
  }

  .process-panel {
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid rgba(37, 44, 55, 0.14);
    border-left: 0;
  }

  .process-flow li {
    align-items: start;
  }

  .process-flow li:not(:last-child)::after {
    top: 42px;
    right: auto;
    bottom: -2px;
    left: 20px;
    transform: none;
  }

  .service-panel__side {
    justify-items: start;
  }

  .service-group__header {
    display: grid;
  }

  .case-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: auto;
    gap: 32px;
  }

  h1 {
    font-size: 2rem;
  }

  .hero__lead,
  .page-hero p,
  .article__header p {
    font-size: 1.02rem;
  }

  .button {
    width: 100%;
  }

  .case-filter a {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }

  .service-card,
  .work-layout,
  .service-panel,
  .compact-service,
  .task-card,
  .outcome-card,
  .trust-card,
  .format-item,
  .cta-band,
  .empty-state,
  .contact-aside,
  .contact-form-shell {
    padding: 20px;
  }

  .site-footer {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .site-footer__inner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .site-footer__brand,
  .site-footer__contacts {
    width: 100%;
  }

  .site-footer__brand {
    gap: 0;
  }

  .site-footer__brand span {
    display: flex;
    align-items: center;
    min-height: 44px;
    border-bottom: 1px solid rgba(255, 252, 242, 0.18);
  }

  .site-footer__brand .brand-logo {
    margin-bottom: 12px;
  }

  .site-footer__contacts {
    display: grid;
    gap: 0;
    justify-content: stretch;
  }

  .footer-contact {
    justify-content: flex-start;
    min-height: 44px;
    width: 100%;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--surface);
    background: transparent;
  }

  .footer-contact__icon {
    width: 22px;
    height: 22px;
  }

  .footer-contact:hover {
    border-color: rgba(255, 252, 242, 0.18);
    color: var(--accent);
  }

  .site-footer .footer-contact--telegram {
    color: var(--surface);
    border-color: rgba(255, 252, 242, 0.18);
    background: transparent;
  }

}
