:root {
  --paper: #f4efe7;
  --ink: #f8f3ea;
  --dark: #10100f;
  --deep: #17120f;
  --muted: #b7afa4;
  --line: rgba(248, 243, 234, 0.16);
  --panel: rgba(255, 252, 245, 0.09);
  --panel-strong: rgba(255, 252, 245, 0.15);
  --accent: #e0bd77;
  --gold: #d5ad65;
  --blue: #9fb6c7;
  --clay: #b87455;
  --neon: #caff00;
  --pc: #080908;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 10%, rgba(183, 116, 85, 0.22), transparent 30vw),
    radial-gradient(circle at 18% 8%, rgba(159, 182, 199, 0.16), transparent 28vw),
    linear-gradient(135deg, #0d0d0e 0%, #1b1512 44%, #0e1012 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

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

.motion-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at var(--mx, 72%) var(--my, 18%), black 0%, transparent 72%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(248, 243, 234, 0.13);
  background: rgba(13, 13, 14, 0.72);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 700;
  min-width: max-content;
}

.header-contact {
  display: grid;
  gap: 2px;
  min-width: max-content;
  color: rgba(248, 243, 234, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.header-contact a:hover {
  color: var(--accent);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(248, 243, 234, 0.42);
  background: #111;
  color: var(--ink);
  font-size: 13px;
  overflow: hidden;
}

.photo-mark img {
  display: block;
  min-width: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  color: rgba(248, 243, 234, 0.82);
  font-size: 11px;
  font-weight: 800;
}

.header-proof span,
.hero-proof span {
  border: 1px solid rgba(248, 243, 234, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
  padding: 7px 10px;
}

.nav {
  gap: clamp(12px, 2.2vw, 28px);
  color: var(--muted);
  font-size: 14px;
  min-width: max-content;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 76px);
  padding: clamp(48px, 7vw, 92px) clamp(18px, 4vw, 56px) 44px;
  align-items: center;
  position: relative;
}

.hero-copy {
  width: 100%;
  max-width: 840px;
  min-width: 0;
}

.eyebrow,
.mini-label {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.pc-hero h2 {
  margin: 0;
  font-size: clamp(42px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(40px, 4.6vw, 64px);
}

.lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(248, 243, 234, 0.78);
  font-size: clamp(17px, 1.65vw, 21px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-proof span {
  color: rgba(248, 243, 234, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.location-note {
  margin: 18px 0 0;
  color: rgba(248, 243, 234, 0.5);
  font-size: 13px;
  font-weight: 700;
}

.hero-actions,
.contact-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(248, 243, 234, 0.28);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
}

.btn.primary {
  border-color: rgba(224, 189, 119, 0.62);
  background: linear-gradient(135deg, #f0cf8d, #a97643);
  color: #18120e;
  box-shadow: 0 18px 52px rgba(169, 118, 67, 0.24);
}

.btn.dark {
  background: #262626;
  color: #fff;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
}

.hero-showcase {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: clamp(500px, 56vw, 650px);
  perspective: 1100px;
}

.motion-strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.motion-strip div {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 14px 0;
  animation: stripMove 34s linear infinite;
}

.motion-strip span {
  color: rgba(248, 243, 234, 0.7);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.portrait-card {
  position: absolute;
  inset: 0 8% 4% 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(248, 243, 234, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.45);
  transform: rotateY(-5deg) rotateX(2deg);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.68)),
    radial-gradient(circle at var(--mx, 64%) var(--my, 20%), rgba(224, 189, 119, 0.26), transparent 28%);
}

.portrait-card figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: auto;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 16px;
  width: auto;
  max-width: calc(100% - 44px);
  text-align: right;
}

.portrait-card figcaption strong {
  max-width: none;
}

.portrait-card figcaption span,
.floating-card .mini-label {
  color: rgba(248, 243, 234, 0.64);
}

.portrait-card figcaption strong {
  font-size: clamp(22px, 3vw, 34px);
  white-space: nowrap;
}

.floating-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(248, 243, 234, 0.18);
  border-radius: var(--radius);
  background: rgba(14, 14, 15, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  padding: 16px;
}

.floating-card strong {
  display: block;
  max-width: 190px;
  color: var(--ink);
  line-height: 1.12;
}

.card-a {
  top: 5%;
  right: auto;
  left: -5%;
}

.card-b {
  bottom: 24%;
  left: -7%;
}

.portrait-card figcaption {
  max-width: none;
}

.card-c {
  display: grid;
  width: 134px;
  height: 134px;
  right: 2%;
  bottom: 4%;
  place-items: center;
  background: linear-gradient(135deg, rgba(224, 189, 119, 0.95), rgba(159, 182, 199, 0.82));
  color: #16120e;
  text-align: center;
}

.card-c span {
  font-size: 38px;
  font-weight: 950;
}

.card-c small {
  max-width: 96px;
  margin-top: -34px;
  font-size: 11px;
  font-weight: 900;
}

.board-card,
.service-card,
.case-card,
.compare-card,
.price-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(16px);
}

.board-card {
  padding: 20px;
  overflow: hidden;
}

.logo-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-row: span 2;
}

.sample-logo {
  display: grid;
  width: min(68%, 260px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 800;
}

.ad-card {
  background: #e9dfca;
}

.ad-card h2 {
  margin: 18px 0 10px;
  font-size: 38px;
  line-height: 0.92;
}

.ad-card p {
  margin: 0;
  color: #4a4740;
}

.grid-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: var(--ink);
}

.grid-card span {
  min-height: 52px;
  background: var(--paper);
}

.section {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 4vw, 56px);
  scroll-margin-top: 92px;
  position: relative;
}

.intro,
.included {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
}

.intro p:last-child,
.included p,
.pc-hero p {
  margin: 0;
  color: rgba(248, 243, 234, 0.74);
  font-size: clamp(17px, 1.9vw, 22px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section h2 {
  font-size: clamp(32px, 4vw, 56px);
}

.service-grid,
.portfolio-grid,
.compare-grid,
.price-grid,
.logo-options,
.brandbook,
.pc-assets,
.steps {
  display: grid;
  gap: 14px;
}

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

.service-wide {
  grid-column: 1 / -1;
}

.service-card,
.price-grid article {
  padding: 24px;
}

.service-number {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

h3 {
  margin: 10px 0;
  font-size: 22px;
  line-height: 1.12;
}

.service-card p,
.case-card p,
.compare-card p,
.price-grid p,
.steps p,
.brand-panel p,
.asset p {
  color: var(--muted);
  margin: 0 0 18px;
}

.case-card .case-note {
  margin-top: 12px;
  color: rgba(248, 243, 234, 0.88);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card strong,
.price-grid strong {
  display: block;
  margin-top: auto;
  font-size: 18px;
}

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

.steps article {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.steps span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(248, 243, 234, 0.32);
  border-radius: 50%;
  font-weight: 700;
}

.urgency {
  display: grid;
  grid-template-columns: 110px minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 50%, rgba(224, 189, 119, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.035);
}

.urgency h2 {
  font-size: clamp(30px, 3.3vw, 48px);
}

.urgency p:not(.eyebrow) {
  max-width: 850px;
  margin: 10px 0 0;
  color: rgba(248, 243, 234, 0.74);
}

.urgency-icon {
  display: grid;
  width: 88px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(224, 189, 119, 0.62);
  border-radius: 50%;
  color: var(--accent);
  font-size: 34px;
  font-weight: 950;
  box-shadow: 0 0 0 0 rgba(224, 189, 119, 0.34);
  animation: pulseRing 2.2s ease-in-out infinite;
}

@keyframes pulseRing {
  50% { box-shadow: 0 0 0 16px rgba(224, 189, 119, 0); transform: translateY(-2px); }
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(248, 243, 234, 0.78);
  font-size: 19px;
}

.check-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

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

.deep-dive {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.deep-grid,
.bot-flow,
.review-grid,
.faq-list {
  display: grid;
  gap: 14px;
}

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

.deep-grid article,
.bot-flow article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(16px);
  padding: 22px;
}

.deep-grid article,
.bot-flow article {
  min-height: 220px;
  transform: translateY(0);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.deep-grid article:hover,
.bot-flow article:hover,
.service-card:hover {
  border-color: rgba(224, 189, 119, 0.46);
  background: var(--panel-strong);
  transform: translateY(-4px);
}

.deep-grid p,
.bot-flow p,
.faq-list p,
.review-grid p {
  color: var(--muted);
  margin: 0;
}

.bot-dive {
  background:
    radial-gradient(circle at 85% 22%, rgba(159, 182, 199, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.018);
}

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

.bot-flow span {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: rgba(224, 189, 119, 0.16);
  color: var(--accent);
  font-weight: 900;
}

.case-card {
  min-height: 340px;
  padding: 14px;
}

.case-card:first-child {
  grid-column: span 2;
}

.case-visual {
  display: grid;
  min-height: 145px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  font-size: 42px;
  font-weight: 900;
}

.case-pc .case-visual { background: #070707; color: var(--neon); }
.case-kids .case-visual { background: #d8ecff; color: #2b5379; }
.case-club .case-visual { background: #1b2541; color: #8ee4ff; }
.case-club .case-logo-preview { background: #050505; }
.case-tools .case-visual { background: #e6e0d2; color: #2a2a26; }
.case-plaster .case-visual { background: #cfc4ae; color: #4b4033; }
.case-beer .case-visual { background: #241b14; color: #e3bd67; }
.case-pancake .case-visual { background: #f6d27b; color: #74391f; }
.case-pancake .case-logo-preview { background: #fff; }

.case-facade-preview {
  min-height: 182px;
  padding: 0;
  overflow: hidden;
  background: #211e1a;
}

.case-facade-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 182px;
  object-fit: cover;
}

.case-card-mockup-preview {
  min-height: 182px;
  padding: 0;
  overflow: hidden;
  background: #ead3bd;
}

.case-card-mockup-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 182px;
  object-fit: contain;
}

.case-logo-preview {
  min-height: 182px;
  padding: 16px;
  overflow: hidden;
  background: #050605;
}

.case-logo-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 182px;
  object-fit: contain;
}

.case-photo-preview {
  padding: 0;
  overflow: hidden;
  background: #111;
}

.case-photo-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 182px;
  object-fit: contain;
}

.case-tools::after {
  content: "Представлено на сайте: нейминг, логотип и визуализация флаера на открытие.";
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.22;
  text-transform: uppercase;
}

.case-card .case-site-note {
  margin-top: 22px;
  color: rgba(248, 243, 234, 0.88);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.22;
  text-transform: uppercase;
}

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

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

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

.compare-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
}

.compare-card h3,
.compare-card p {
  grid-column: 1 / -1;
}

.old-logo,
.new-logo {
  display: grid;
  aspect-ratio: 1.35;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 900;
  text-align: center;
}

.old-logo {
  color: rgba(248, 243, 234, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.new-logo {
  color: var(--neon);
  background: #080908;
  font-size: 38px;
}

.compare-image {
  padding: 8px;
  overflow: hidden;
  background: #fff;
}

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

.korea-old-logo img {
  transform: scale(1.42);
}

.korea-new-logo img {
  transform: translateY(-18px);
}

.nalogika-old-logo img {
  transform: scale(1.18);
}

.nalogika-new-logo img {
  transform: scale(1.55);
}

.zerna-old-logo img {
  transform: scale(1.65);
}

.zerna-new-logo {
  background: #f3eee7;
}

.zerna-new-logo img {
  transform: scale(1.42);
}

.parpa-old-logo img,
.parpa-new-logo img {
  transform: scale(1.45);
}

.new-logo.soft {
  color: #2b5379;
  background: #d8ecff;
}

.old-logo.service {
  color: #7c8178;
}

.new-logo.service {
  color: #233029;
  background: #dce8df;
}

.old-logo.warm {
  color: #9b7246;
}

.new-logo.warm {
  color: #74391f;
  background: #f6d27b;
}

.pc-case {
  background: var(--pc);
  color: #f4f4ef;
  padding-top: clamp(96px, 10vw, 140px);
}

.pc-case .eyebrow,
.pc-case .mini-label,
.neon {
  color: var(--neon);
}

.pc-hero {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 190px;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.pc-hero h2 {
  color: #fff;
}

.pc-hero p {
  max-width: 780px;
  color: #c9cbc3;
}

.pc-badge {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--neon);
  color: var(--neon);
  text-align: center;
}

.pc-badge span {
  font-size: 58px;
  font-weight: 950;
  line-height: 0.9;
}

.pc-badge small {
  display: block;
  margin-top: -38px;
  color: #f4f4ef;
}

.logo-options article,
.brand-panel,
.asset,
.asset-files {
  border: 1px solid rgba(202, 255, 0, 0.22);
  border-radius: var(--radius);
  background: #101110;
  padding: 18px;
}

.rig-logo {
  display: grid;
  width: 152px;
  aspect-ratio: 1;
  margin-bottom: 18px;
  place-items: center;
  color: var(--neon);
  font-size: 52px;
  font-weight: 950;
  line-height: 1;
}

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

.mark-a {
  border: 2px solid var(--neon);
  transform: skew(-8deg);
}

.mark-b {
  clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%);
  background: var(--neon);
  color: #070707;
}

.mark-c {
  border: 2px solid var(--neon);
  box-shadow: inset 18px 0 0 var(--neon);
  color: #fff;
}

.brandbook {
  margin-top: 14px;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.swatches span {
  display: flex;
  min-height: 96px;
  align-items: end;
  padding: 8px;
  border-radius: 6px;
  background: var(--c);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.swatches span:nth-child(2),
.swatches span:nth-child(3) {
  color: #070707;
}

.pc-assets {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 14px;
}

.asset {
  min-height: 260px;
}

.tg-banner {
  display: grid;
  grid-template-columns: 1fr 118px;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(202, 255, 0, 0.18), transparent 34%),
    #101110;
}

.tg-banner h3,
.avito-cover h3 {
  max-width: 560px;
  color: #fff;
  font-size: clamp(28px, 4vw, 54px);
  text-transform: uppercase;
}

.qr {
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  align-self: end;
  background: #f4f4ef;
  color: #070707;
  font-weight: 900;
}

.facade {
  grid-column: 1 / -1;
}

.facade-board {
  display: grid;
  grid-template-columns: 1fr 0.34fr 1fr;
  min-height: 320px;
  margin-top: 14px;
  border: 1px solid var(--neon);
  background: #070707;
}

.facade-left,
.facade-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 4vw, 46px);
}

.rig-logo.small {
  width: 72px;
  margin: 0 0 18px;
  border: 2px solid var(--neon);
  font-size: 28px;
}

.facade-left strong {
  color: #fff;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 0.95;
}

.facade-left span,
.facade-right small {
  margin-top: 12px;
  color: var(--neon);
  font-weight: 800;
}

.door {
  align-self: end;
  height: 72%;
  border: 1px solid #4e5248;
  border-bottom: 0;
  background: linear-gradient(90deg, #20221e 0 49%, #121411 49% 51%, #20221e 51%);
}

.facade-right {
  align-items: flex-end;
  text-align: right;
}

.facade-right b {
  max-width: 420px;
  color: #fff;
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 0.96;
  text-transform: uppercase;
}

.avito-cover {
  background:
    radial-gradient(circle at 78% 34%, rgba(202, 255, 0, 0.22), transparent 30%),
    #101110;
}

.cover-specs,
.sticker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cover-specs span,
.sticker-row span {
  border: 1px solid var(--neon);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--neon);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.certificate dl {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
}

.certificate div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(244, 244, 239, 0.16);
}

.certificate dt {
  color: #a9aca2;
}

.certificate dd {
  margin: 0;
  color: var(--neon);
  font-weight: 900;
}

.stickers {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sticker-row span {
  display: grid;
  min-width: 92px;
  min-height: 56px;
  place-items: center;
  border-radius: 6px;
  background: var(--neon);
  color: #070707;
}

.asset-files {
  margin-top: 14px;
}

.asset-files div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.asset-files a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--neon);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--neon);
  font-size: 13px;
  font-weight: 900;
}

.territoria-case {
  --territoria-purple: #b51cff;
  --territoria-violet: #6e18ff;
  --territoria-deep: #120019;
  --territoria-ink: #f8f2ff;
  background:
    radial-gradient(circle at 76% 8%, rgba(181, 28, 255, 0.25), transparent 28vw),
    radial-gradient(circle at 18% 22%, rgba(110, 24, 255, 0.22), transparent 30vw),
    linear-gradient(135deg, #050407 0%, #120019 48%, #050407 100%);
}

.territoria-case .eyebrow,
.territoria-case .mini-label,
.territoria-case .neon {
  color: var(--territoria-purple);
}

.territoria-case .pc-hero p {
  color: rgba(248, 242, 255, 0.78);
}

.territoria-case .pc-badge {
  border-color: rgba(181, 28, 255, 0.7);
  color: #fff;
  background:
    radial-gradient(circle at 50% 38%, rgba(181, 28, 255, 0.3), transparent 55%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 44px rgba(181, 28, 255, 0.2);
}

.territoria-case .pc-badge span {
  color: var(--territoria-purple);
  font-size: 46px;
}

.territoria-case .pc-badge small {
  margin-top: -32px;
  color: rgba(248, 242, 255, 0.78);
}

.territoria-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.territoria-scope span {
  border: 1px solid rgba(181, 28, 255, 0.34);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(248, 242, 255, 0.84);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.territoria-work-card {
  min-height: 510px;
  border: 1px solid rgba(181, 28, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    #0b090d;
  padding: 18px;
  overflow: hidden;
}

.territoria-work-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.05;
}

.territoria-work-card p {
  margin: 0;
  color: rgba(248, 242, 255, 0.72);
  font-size: 16px;
}

.territoria-work-card-wide {
  grid-column: span 2;
  min-height: 360px;
}

.territoria-preview {
  position: relative;
  display: grid;
  min-height: 250px;
  margin-bottom: 18px;
  border: 1px solid rgba(181, 28, 255, 0.26);
  border-radius: 7px;
  overflow: hidden;
  background: #070407;
}

.territoria-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.28;
}

.visual-logo {
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(181, 28, 255, 0.2), transparent 56%),
    #050505;
}

.visual-logo img {
  display: block;
  width: min(72%, 270px);
  height: min(72%, 270px);
  object-fit: contain;
  filter: drop-shadow(0 0 26px rgba(181, 28, 255, 0.55));
}

.visual-meaning {
  align-content: start;
  padding: 34px;
  background: linear-gradient(135deg, #27003d, #160022);
}

.visual-meaning h4,
.visual-config h4 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--territoria-purple);
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.05;
}

.visual-meaning p {
  position: relative;
  z-index: 1;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.visual-brandbook {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(181, 28, 255, 0.18), transparent 45%),
    #09050d;
}

.visual-brandbook span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(181, 28, 255, 0.4);
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 950;
  text-transform: uppercase;
}

.visual-brandbook span:nth-child(1) {
  color: var(--territoria-purple);
  font-size: 42px;
}

.visual-brandbook span:nth-child(2) {
  color: #fff;
  background: linear-gradient(135deg, #b51cff, #5d19ff);
}

.visual-brandbook span:nth-child(3) {
  color: #fff;
  background: #d400ff;
}

.visual-brandbook span:nth-child(4) {
  color: #fff;
  background: #5a00d6;
}

.visual-room {
  background:
    radial-gradient(circle at 68% 45%, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(180deg, #171719, #050505);
}

.visual-room-photo {
  background: #070407;
}

.visual-room-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.visual-room-one::before {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 17%;
  width: 26%;
  height: 58%;
  border-radius: 46% 46% 22% 22%;
  background:
    linear-gradient(90deg, #2c2c2d 0 48%, #bc53ff 48% 52%, #1d1d1f 52%),
    #202124;
  box-shadow:
    120px 4px 0 -52px rgba(255, 255, 255, 0.14),
    0 18px 40px rgba(0, 0, 0, 0.55);
}

.visual-room-one::after {
  background:
    linear-gradient(to top, #e8e8e8 0 26%, transparent 26%),
    radial-gradient(circle at 72% 36%, transparent 0 18%, rgba(255, 255, 255, 0.9) 18% 20%, transparent 20%),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, auto, 34px 34px, 34px 34px;
  opacity: 1;
}

.visual-room-two {
  background:
    linear-gradient(105deg, transparent 0 36%, rgba(181, 28, 255, 0.7) 36% 37%, transparent 37%),
    linear-gradient(75deg, transparent 0 60%, rgba(181, 28, 255, 0.5) 60% 61%, transparent 61%),
    linear-gradient(90deg, #08070a, #1c1026 48%, #050407);
}

.visual-room-two::before {
  content: "ТЕРРИТОРИЯ\A ЗДЕСЬ НАЧИНАЕТСЯ ИГРА\A НАШЕ ДЕЛО - ПОБЕЖДАТЬ";
  white-space: pre-line;
  position: absolute;
  left: 8%;
  top: 18%;
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 2vw, 28px);
  font-weight: 950;
  line-height: 1.15;
}

.visual-room-two::after {
  background:
    radial-gradient(circle at 78% 54%, rgba(181, 28, 255, 0.36), transparent 16%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  opacity: 1;
}

.visual-price {
  align-content: start;
  gap: 10px;
  padding: 22px;
  background:
    radial-gradient(circle at 80% 18%, rgba(181, 28, 255, 0.38), transparent 22%),
    #120019;
}

.visual-price strong {
  position: relative;
  z-index: 1;
  justify-self: center;
  padding: 8px 34px;
  border-radius: 4px;
  background: linear-gradient(135deg, #6f12aa, #b51cff);
  color: #fff;
  font-size: 28px;
}

.visual-price div {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-radius: 4px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(181, 28, 255, 0.8), rgba(110, 24, 255, 0.62));
  color: #fff;
  font-weight: 950;
}

.territoria-price-replacement {
  width: 100%;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(181, 28, 255, 0.42);
  border-radius: var(--radius);
  background: #070407;
}

.territoria-price-replacement img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.visual-config {
  align-content: start;
  gap: 10px;
  padding: 24px;
  background:
    radial-gradient(circle at 82% 20%, rgba(181, 28, 255, 0.34), transparent 24%),
    #120019;
}

.visual-config div {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.74fr 1fr;
  gap: 12px;
  border: 1px solid rgba(181, 28, 255, 0.42);
  border-radius: 6px;
  padding: 12px;
  color: #fff;
}

.visual-config b {
  color: var(--territoria-purple);
}

.territoria-config-replacement {
  width: 100%;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(181, 28, 255, 0.42);
  border-radius: var(--radius);
  background: #070407;
}

.territoria-config-replacement img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.territoria-corridor-replacement {
  width: 100%;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(181, 28, 255, 0.42);
  border-radius: var(--radius);
  background: #070407;
}

.territoria-corridor-replacement img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.visual-tournament {
  align-content: center;
  gap: 12px;
  padding: 0;
  background: #070407;
}

.visual-tournament::before {
  content: "";
  display: block;
  width: 100%;
  min-height: 250px;
  background: url("assets/territoria-tournament-poster-real.png?v=20260610-real-poster-2") center / contain no-repeat;
}

.visual-tournament-photo {
  padding: 0;
  background: #070407;
}

.visual-tournament-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: contain;
}

.territoria-poster-replacement {
  width: 100%;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(181, 28, 255, 0.42);
  border-radius: var(--radius);
  background: #070407;
}

.territoria-poster-replacement img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.visual-tournament span,
.visual-tournament strong,
.visual-tournament small {
  display: none;
}

.visual-tournament span {
  max-width: 360px;
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 950;
  line-height: 0.9;
}

.visual-tournament strong {
  width: max-content;
  padding: 12px 22px;
  background: linear-gradient(135deg, #b51cff, #7f00b9);
  font-size: clamp(30px, 4vw, 58px);
}

.visual-tournament small {
  font-size: 18px;
  font-weight: 900;
}

.visual-facade {
  grid-template-columns: 1fr 0.48fr 0.42fr;
  align-items: end;
  gap: 10px;
  padding: 22px;
  background:
    linear-gradient(90deg, #3d3028 0 16%, #1d1714 16% 20%, #2a211d 20% 100%);
}

.visual-facade-photo {
  padding: 0;
  background: #070407;
}

.visual-facade-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: contain;
}

.facade-sign,
.facade-door,
.facade-side {
  position: relative;
  z-index: 1;
}

.facade-sign {
  align-self: start;
  grid-column: 1 / -1;
  border-radius: 4px;
  padding: 16px;
  background: #050505;
  color: var(--territoria-purple);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 950;
  text-shadow: 0 0 18px rgba(181, 28, 255, 0.75);
}

.facade-door {
  min-height: 150px;
  border: 1px solid rgba(181, 28, 255, 0.46);
  background:
    radial-gradient(circle at 50% 40%, rgba(181, 28, 255, 0.34), transparent 28%),
    #080808;
}

.facade-side {
  min-height: 150px;
  padding: 18px;
  background: #262626;
  color: var(--territoria-purple);
  font-weight: 950;
  line-height: 1.5;
}

.visual-support {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 10px;
  padding: 22px;
  background:
    radial-gradient(circle at 60% 50%, rgba(181, 28, 255, 0.24), transparent 32%),
    #09050d;
}

.visual-support span {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(181, 28, 255, 0.42);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(248, 242, 255, 0.88);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 900;
  text-transform: uppercase;
}

.reviews {
  border-top: 1px solid var(--line);
}

.review-grid {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 28px 34px;
}

.review-grid article {
  position: relative;
  min-height: auto;
  padding: 0 0 0 20px;
  border-left: 2px solid rgba(224, 189, 119, 0.56);
}

.review-grid p {
  font-size: 17px;
  line-height: 1.55;
}

.review-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 14px;
}

.review-grid article::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -18px;
  color: rgba(224, 189, 119, 0.34);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  transform: translateX(-65%);
}

.faq {
  border-top: 1px solid var(--line);
}

.faq-list {
  max-width: 1080px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--accent);
}

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

.faq-list p {
  padding: 0 22px 22px;
}

.pricing {
  border-top: 1px solid var(--line);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: start;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(224, 189, 119, 0.12), rgba(159, 182, 199, 0.08)),
    rgba(255, 255, 255, 0.035);
}

.contact p {
  max-width: 640px;
  color: rgba(248, 243, 234, 0.72);
}

.contact-actions.compact {
  margin-top: 22px;
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(248, 243, 234, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  padding: 18px;
}

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

.contact-form span {
  color: rgba(248, 243, 234, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(248, 243, 234, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(248, 243, 234, 0.44);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(185, 154, 88, 0.38);
  outline-offset: 2px;
}

.contact-form button {
  width: 100%;
  cursor: pointer;
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 30;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(224, 189, 119, 0.56);
  border-radius: 999px;
  background: rgba(16, 16, 15, 0.78);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  padding: 10px 15px;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  backdrop-filter: blur(16px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(224, 189, 119, 0.92);
  color: #18120e;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.checklist-tab {
  position: fixed;
  left: 0;
  top: 48%;
  z-index: 35;
  min-height: 46px;
  border: 1px solid rgba(224, 189, 119, 0.4);
  border-left: 0;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(180deg, #e0bd77, #a97643);
  color: #17120f;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  padding: 12px 10px;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.checklist-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
}

.checklist-modal.is-open {
  display: grid;
}

.checklist-dialog {
  position: relative;
  width: min(620px, 100%);
  border: 1px solid rgba(248, 243, 234, 0.2);
  border-radius: var(--radius);
  background: #f8f3ea;
  color: #15120f;
  padding: clamp(24px, 5vw, 46px);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
}

.checklist-dialog h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 0.98;
}

.checklist-dialog p {
  color: #5c564d;
}

.checklist-dialog .eyebrow {
  color: #a97643;
}

.site-footer {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 34px clamp(18px, 4vw, 56px) 42px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(248, 243, 234, 0.72);
  text-align: center;
  font-size: 14px;
}

.site-footer div {
  display: grid;
  gap: 3px;
}

.site-footer strong {
  color: var(--ink);
}

.footer-links {
  margin-top: 4px;
}

.footer-links a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy {
  min-height: 100vh;
  padding: clamp(24px, 4vw, 56px);
}

.policy-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent);
  font-weight: 800;
}

.policy-content {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.policy-content h1 {
  margin: 0 0 20px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
}

.policy-content h2 {
  margin: 28px 0 8px;
  font-size: 24px;
}

.policy-content p {
  max-width: 820px;
  color: rgba(248, 243, 234, 0.76);
  font-size: 18px;
}

.policy-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-date {
  margin-top: 30px;
  font-weight: 800;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: transparent;
  color: #69635a;
  cursor: pointer;
  font-size: 28px;
}

.checklist-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.checklist-form label {
  display: grid;
  gap: 7px;
}

.checklist-form span {
  color: #332d27;
  font-weight: 900;
}

.checklist-form input {
  width: 100%;
  border: 1px solid #d3c9b8;
  border-radius: var(--radius);
  background: #fff;
  color: #17120f;
  font: inherit;
  padding: 15px 16px;
}

.contact-orbit {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 34;
  display: grid;
  gap: 8px;
}

.contact-orbit-main {
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 950;
}

.contact-orbit-main {
  width: 62px;
  aspect-ratio: 1;
  background: #28a7e8;
  color: #fff;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
  transition: background 180ms ease, transform 180ms ease;
}

.contact-orbit-main svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.contact-orbit-main:hover {
  transform: scale(1.06);
}

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

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

@media (max-width: 980px) {
  .hero,
  .intro,
  .included,
  .pc-hero,
  .contact,
  .urgency {
    grid-template-columns: 1fr;
  }

  .header-proof {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .hero-showcase {
    min-height: 680px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .service-grid,
  .steps,
  .portfolio-grid,
  .compare-grid,
  .deep-grid,
  .bot-flow,
  .review-grid,
  .price-grid,
  .logo-options,
  .brandbook,
  .pc-assets,
  .territoria-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-card:first-child,
  .facade,
  .territoria-work-card-wide {
    grid-column: auto;
  }

  .service-wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 150px;
  }

  .section {
    scroll-margin-top: 150px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-contact {
    min-width: 0;
  }

  .brand {
    min-width: 0;
  }

  .header-proof {
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 100%;
    overflow: visible;
    padding-bottom: 0;
  }

  .header-proof span {
    min-width: 0;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
  }

  .hero-showcase {
    min-height: 560px;
  }

  .portrait-card {
    inset: 0;
    transform: none;
  }

  .floating-card {
    padding: 13px;
  }

  .card-a {
    top: 14px;
    right: auto;
    left: 14px;
  }

  .card-b {
    bottom: 128px;
    left: 14px;
  }

  .portrait-card figcaption {
    display: block;
    right: 18px;
    left: auto;
    bottom: 22px;
    width: auto;
    max-width: calc(100% - 36px);
    text-align: right;
  }

  .portrait-card figcaption strong {
    display: block;
    margin-top: 4px;
    font-size: 20px;
    line-height: 1.05;
  }

  .hero-board,
  .service-grid,
  .steps,
  .portfolio-grid,
  .compare-grid,
  .deep-grid,
  .bot-flow,
  .review-grid,
  .price-grid,
  .logo-options,
  .brandbook,
  .pc-assets,
  .territoria-gallery,
  .tg-banner {
    grid-template-columns: 1fr;
  }

  .hero-board {
    grid-template-rows: auto;
  }

  .logo-card {
    grid-row: auto;
  }

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

  .territoria-work-card-wide {
    grid-column: auto;
  }

  .door {
    width: 42%;
    min-height: 180px;
    margin: 0 auto;
  }

  .facade-right {
    align-items: flex-start;
    text-align: left;
  }

  .checklist-tab {
    top: auto;
    bottom: 86px;
  }

  .contact-orbit {
    left: 14px;
    bottom: 76px;
  }

  .contact-orbit-main {
    width: 54px;
  }
}
footer p:nth-of-type(-n + 6) {
  display: none;
}
