@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");
@import url("assets/fonts/benzin/stylesheet.css");

:root {
  --font-body: "Montserrat", Arial, Helvetica, sans-serif;
  --font-heading: "Benzin", "Montserrat", Arial, Helvetica, sans-serif;
  --primary: #fbea31;
  --primary-soft: #fffdcc;
  --dark: #1c1c1c;
  --ink: #202020;
  --muted: #666666;
  --bg: #f2f3f5;
  --paper: #ffffff;
  --line: rgba(0, 0, 0, 0.1);
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  --radius: 14px;
}

* { box-sizing: border-box; }

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.55 var(--font-body);
  letter-spacing: 0;
}

button,
input { font: inherit; }

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

h1,
h2,
h3 {
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(34px, 5.2vw, 64px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(26px, 3.2vw, 42px);
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

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

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

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--dark);
  color: #fff;
  border-radius: 8px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(242, 243, 245, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(16px);
}

.header-row {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand img,
.footer img {
  width: 185px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  font-weight: 600;
}

.nav a,
.nav-parent {
  position: relative;
  padding: 8px 7px;
  border-radius: 8px;
}

.nav-parent {
  border: 0;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}

.nav-parent::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-right: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  transform: translateY(-3px) rotate(45deg);
  transition: transform 0.18s ease;
}

.nav-group {
  position: relative;
}

.nav-group:hover .nav-parent::after,
.nav-group:focus-within .nav-parent::after {
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 20px);
  width: min(560px, calc(100vw - 40px));
  display: grid;
  padding: 20px 28px;
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  padding: 16px 0;
  color: #555;
  border-bottom: 1px solid var(--primary);
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.14;
  text-transform: uppercase;
}

.nav-dropdown a:last-child {
  border-bottom: 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 58%;
  height: 3px;
  background: #000;
  border-radius: 3px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.nav a:hover::after { transform: translateX(-50%) scaleX(1); }

.nav-dropdown a::after {
  display: none;
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--dark);
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 0;
  border-radius: 8px;
  background: var(--primary);
  color: #000;
  font-weight: 750;
  box-shadow: 0 12px 26px rgba(251, 234, 49, 0.35);
  cursor: pointer;
  transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.97);
  box-shadow: 0 16px 34px rgba(251, 234, 49, 0.42);
}

.btn--small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 700;
}

.btn--ghost {
  background: #fff;
  border: 1px solid rgba(251, 234, 49, 0.7);
  box-shadow: none;
}

.btn--wide { width: 100%; }

.hero {
  min-height: calc(100svh - 92px);
  display: flex;
  align-items: center;
  padding: 74px 0;
  background:
    radial-gradient(900px 300px at 50% 0, rgba(251, 234, 49, 0.2), transparent 72%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 14px;
  color: #000;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  max-width: 740px;
  margin-bottom: 30px;
  color: #414141;
  font-size: 21px;
}

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

.strip-grid a,
.article-list a {
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(251, 234, 49, 0.55);
  border-radius: 8px;
  font-weight: 850;
}

.hero-panel {
  position: relative;
  min-height: 485px;
}

.hero-panel--volumetric {
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-panel--volumetric::before {
  content: "";
  position: absolute;
  inset: 18% -2% 6% 10%;
  z-index: -1;
  background: radial-gradient(circle, rgba(251, 234, 49, 0.28), rgba(251, 234, 49, 0) 64%);
  filter: blur(24px);
}

.hero-object-image {
  width: min(118%, 780px);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.16));
  animation: productFloat 6s ease-in-out infinite;
}

.hero-status {
  position: absolute;
  left: 6%;
  bottom: 5%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 2;
}

.hero-status span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(251, 234, 49, 0.74);
  border-radius: 999px;
  color: #202020;
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.hero-image {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
  border: 1px solid rgba(251, 234, 49, 0.7);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.qr-card {
  position: absolute;
  inset: 0 auto auto 10px;
  width: 295px;
  height: 295px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 28px;
  background: var(--dark);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.qr-card span {
  background: #fff;
  border-radius: 8px;
}

.qr-card span:nth-child(2n) { background: var(--primary); }

.dashboard-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(420px, 92%);
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(251, 234, 49, 0.65);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dashboard-card b {
  display: block;
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1.1;
}

.dashboard-card ul,
.check-list,
.price-card ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.dashboard-card li,
.check-list li,
.price-card li {
  position: relative;
  padding-left: 26px;
  margin: 9px 0;
  color: #3b3b3b;
  font-weight: 700;
}

.dashboard-card li::before,
.check-list li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border: 2px solid #000;
  border-radius: 50%;
  transform: translateY(-50%);
}

.strip {
  padding: 20px 0;
  background: var(--dark);
  color: #fff;
}

.strip-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.strip-grid strong { margin-right: 8px; }

.strip-grid a {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(251, 234, 49, 0.65);
  color: #fff;
}

.section { padding: 84px 0; }

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head > p:last-child { font-size: 18px; }

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-dark h2,
.section-dark h3,
.section-dark .eyebrow { color: #fff; }

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

.section-dark .card {
  background: #242424;
  border-color: rgba(251, 234, 49, 0.38);
}

.section-dark .card h3,
.section-dark .card p { color: #fff; }

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

.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards.five { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.card,
.category-grid article,
.price-card,
.review-grid figure,
.lead-form,
details {
  background: #fff;
  border: 1px solid rgba(251, 234, 49, 0.48);
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card {
  position: relative;
  min-height: 185px;
  padding: 24px;
  overflow: hidden;
}

.card::before,
.category-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.card:hover,
.category-grid article:hover,
.price-card:hover,
.review-grid figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.card,
.category-grid article,
.price-card,
.review-grid figure {
  transition: transform 0.16s ease, box-shadow 0.18s ease;
}

.num {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: var(--primary);
  border-radius: 50%;
  color: #000;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.audience-cards {
  gap: 20px;
}

.audience-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 24px;
}

.audience-card::before {
  height: 4px;
}

.audience-visual {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  margin-bottom: 20px;
  padding: 8px;
  background:
    radial-gradient(180px 120px at 70% 18%, rgba(251, 234, 49, 0.12), transparent 68%),
    #f6f7f8;
  border: 1px solid rgba(251, 234, 49, 0.38);
  border-radius: 14px;
}

.audience-card h3 {
  margin-bottom: 12px;
  font-size: clamp(20px, 1.6vw, 25px);
}

.audience-card p {
  font-size: 16px;
  line-height: 1.55;
}

.intro-seo {
  background: #fff;
}

.intro-grid,
.faq-grid,
.lead-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(340px, 1.22fr);
  gap: 44px;
  align-items: start;
}

.rich p {
  font-size: 18px;
}

.categories,
.reviews {
  background: #f7f7ef;
}

.service-tabs-section {
  background:
    radial-gradient(700px 180px at 16% 0, rgba(251, 234, 49, 0.2), transparent 70%),
    #fff;
}

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

.direction-link {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid rgba(251, 234, 49, 0.7);
  border-radius: var(--radius);
  color: #555;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.16s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.direction-link span:first-child {
  min-width: 0;
}

.direction-icon {
  flex: 0 0 auto;
  width: clamp(64px, 7vw, 92px);
  height: clamp(64px, 7vw, 92px);
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.75), transparent 30%),
    var(--primary);
  border-radius: 22px;
  color: #1b1b1b;
  box-shadow: 0 14px 30px rgba(251, 234, 49, 0.32);
  transform: rotate(-3deg);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.direction-icon svg {
  width: 58%;
  height: 58%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.direction-link:hover {
  transform: translateY(-3px);
  background: var(--primary-soft);
  box-shadow: var(--shadow);
}

.direction-link:hover .direction-icon {
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.82), transparent 30%),
    #ffe71f;
  color: #111;
  box-shadow: 0 16px 34px rgba(251, 234, 49, 0.44);
  transform: rotate(3deg) scale(1.04);
}

.service-hero {
  padding: 66px 0 78px;
  background:
    radial-gradient(900px 280px at 80% 0, rgba(251, 234, 49, 0.26), transparent 70%),
    var(--bg);
  overflow: hidden;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
  color: #666;
  font-weight: 800;
}

.breadcrumbs a {
  color: #000;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1fr);
  gap: 28px;
  align-items: center;
}

.service-hero-grid > * {
  min-width: 0;
}

.service-hero h1 {
  max-width: 1040px;
  font-size: clamp(34px, 4.2vw, 58px);
  overflow-wrap: break-word;
  text-wrap: balance;
}

.service-card-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center end;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 34px;
  box-shadow: none;
}

.service-card-visual::before {
  content: "";
  position: absolute;
  inset: 17% 0 -4% 12%;
  z-index: 0;
  background: radial-gradient(circle, rgba(251, 234, 49, 0.28), rgba(251, 234, 49, 0));
  border-radius: 999px;
  filter: blur(22px);
}

.mark-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 610px;
  aspect-ratio: 1.14 / 1;
  isolation: isolate;
  transform-style: preserve-3d;
}

.gpt-service-visual {
  position: relative;
  z-index: 1;
  width: min(118%, 790px);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.16));
  animation: productFloat 6s ease-in-out infinite;
}

.mark-glow,
.mark-plate,
.mark-card,
.mark-product,
.mark-tag,
.mark-scanner,
.mark-cube {
  position: absolute;
}

.mark-glow {
  inset: 20% 1% 4% 14%;
  z-index: 0;
  background: radial-gradient(circle at 58% 48%, rgba(251, 234, 49, 0.34), rgba(251, 234, 49, 0) 62%);
  filter: blur(18px);
}

.mark-plate {
  right: 6%;
  top: 13%;
  z-index: 1;
  width: 62%;
  height: 62%;
  background: linear-gradient(135deg, #fff25a 0%, var(--yellow) 45%, #f3ce08 100%);
  border-radius: 46px;
  transform: rotate(14deg);
  box-shadow: 0 28px 70px rgba(234, 197, 8, 0.28);
  animation: markFloat 6.2s ease-in-out infinite;
}

.mark-card {
  right: 8%;
  top: 23%;
  z-index: 4;
  width: 40%;
  height: 54%;
  padding: 28px 24px;
  display: grid;
  align-content: start;
  gap: 13px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 30px;
  transform: rotate(13deg);
  box-shadow: 0 30px 68px rgba(0, 0, 0, 0.18);
  animation: markCardFloat 6.2s ease-in-out infinite;
}

.mark-card-line {
  width: 72%;
  height: 9px;
  background: #16191d;
  border-radius: 999px;
}

.mark-card-line--short {
  width: 48%;
  background: rgba(22, 25, 29, 0.18);
}

.mark-code,
.mark-mini-code {
  position: relative;
  display: block;
  background-color: #fff;
  background-image:
    linear-gradient(#111 0 0),
    linear-gradient(#111 0 0),
    linear-gradient(#111 0 0),
    linear-gradient(#111 0 0),
    linear-gradient(#111 0 0),
    linear-gradient(#111 0 0),
    linear-gradient(#111 0 0),
    linear-gradient(#111 0 0),
    linear-gradient(#111 0 0),
    linear-gradient(#111 0 0),
    linear-gradient(#111 0 0),
    linear-gradient(#111 0 0),
    linear-gradient(#111 0 0);
  background-repeat: no-repeat;
}

.mark-code {
  width: min(100%, 138px);
  aspect-ratio: 1;
  margin-top: 8px;
  border: 10px solid #fff;
  border-radius: 16px;
  box-shadow: inset 0 0 0 2px #111, 0 12px 24px rgba(0, 0, 0, 0.1);
  background-size:
    24% 24%, 24% 24%, 24% 24%,
    12% 12%, 12% 24%, 24% 12%, 12% 12%,
    10% 28%, 28% 10%, 10% 10%, 18% 10%, 10% 18%, 16% 16%;
  background-position:
    7% 7%, 69% 7%, 7% 69%,
    44% 12%, 44% 36%, 34% 56%, 62% 44%,
    76% 48%, 48% 76%, 28% 36%, 58% 28%, 30% 58%, 70% 72%;
}

.mark-code::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  top: 46%;
  height: 2px;
  background: rgba(251, 234, 49, 0.85);
  box-shadow: 0 0 18px rgba(251, 234, 49, 0.9);
  animation: markScan 2.7s ease-in-out infinite;
}

.mark-product {
  left: 4%;
  bottom: 9%;
  z-index: 3;
  width: 57%;
  height: 49%;
  animation: productFloat 6s ease-in-out infinite;
}

.mark-product span {
  position: absolute;
  display: block;
}

.mark-tag {
  left: 47%;
  bottom: 21%;
  z-index: 5;
  width: 82px;
  height: 106px;
  background: #fff;
  border-radius: 14px;
  transform: rotate(8deg);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.mark-tag::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  transform: translateX(-50%);
}

.mark-mini-code {
  width: 46px;
  height: 46px;
  margin: 33px auto 0;
  background-size:
    26% 26%, 26% 26%, 26% 26%,
    12% 12%, 12% 22%, 20% 12%, 12% 12%,
    10% 24%, 24% 10%, 10% 10%, 18% 10%, 10% 18%, 14% 14%;
  background-position:
    7% 7%, 67% 7%, 7% 67%,
    44% 12%, 44% 35%, 34% 55%, 62% 44%,
    75% 50%, 48% 75%, 28% 36%, 58% 28%, 30% 58%, 70% 70%;
}

.mark-scanner {
  right: 7%;
  bottom: 7%;
  z-index: 6;
  width: 104px;
  height: 66px;
  background: linear-gradient(135deg, #282c31, #050607);
  border-radius: 20px 20px 28px 28px;
  transform: rotate(-4deg);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.25);
}

.mark-scanner::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 17px;
  width: 54px;
  height: 24px;
  border: 6px solid var(--yellow);
  border-radius: 999px;
  background: #15181c;
}

.mark-scanner::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -38px;
  width: 22px;
  height: 52px;
  background: linear-gradient(180deg, #2d3136, #08090a);
  border-radius: 0 0 15px 15px;
  transform: rotate(-8deg);
}

.mark-cube {
  z-index: 2;
  width: 34px;
  height: 34px;
  background: var(--yellow);
  border-radius: 9px;
  box-shadow: 0 15px 30px rgba(234, 197, 8, 0.24);
  animation: cubeFloat 4.8s ease-in-out infinite;
}

.mark-cube--one {
  left: 10%;
  top: 14%;
  transform: rotate(15deg);
}

.mark-cube--two {
  right: 0;
  top: 3%;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  animation-delay: -1.8s;
}

.mark-visual--clothes .mark-product::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 22%;
  width: 36%;
  height: 68%;
  background: linear-gradient(145deg, #25292f, #08090b);
  border-radius: 34px 34px 20px 20px;
  box-shadow: inset 0 18px 0 rgba(255, 255, 255, 0.05), 0 20px 36px rgba(0, 0, 0, 0.18);
}

.mark-visual--clothes .mark-product::after {
  content: "";
  position: absolute;
  right: 19%;
  bottom: 72%;
  width: 14%;
  height: 12%;
  border: 10px solid #111418;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.mark-visual--clothes .mark-product span,
.mark-visual--linen .mark-product span {
  left: 3%;
  right: 19%;
  height: 19%;
  border-radius: 16px;
  transform: skewX(-8deg);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
}

.mark-visual--clothes .mark-product span:nth-child(1) { bottom: 0; background: #1f344f; }
.mark-visual--clothes .mark-product span:nth-child(2) { bottom: 18%; background: #14171b; }
.mark-visual--clothes .mark-product span:nth-child(3) { bottom: 36%; background: #f0c71d; }

.mark-visual--linen .mark-product span:nth-child(1) { bottom: 3%; background: #dfe4e8; }
.mark-visual--linen .mark-product span:nth-child(2) { bottom: 23%; background: #fff6bf; }
.mark-visual--linen .mark-product span:nth-child(3) { bottom: 43%; background: #ffffff; }

.mark-visual--linen .mark-product::before {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 65%;
  width: 54%;
  height: 18%;
  background: #1b1f24;
  border-radius: 17px;
  transform: skewX(-8deg);
  box-shadow: 0 16px 25px rgba(0, 0, 0, 0.14);
}

.mark-visual--shoes .mark-product::before {
  content: "";
  position: absolute;
  left: 4%;
  bottom: 26%;
  width: 76%;
  height: 34%;
  background: linear-gradient(145deg, #171a1f 0 45%, #2a2f35 46% 100%);
  border-radius: 58px 78px 30px 35px;
  transform: rotate(-7deg);
  box-shadow: 0 25px 42px rgba(0, 0, 0, 0.22);
}

.mark-visual--shoes .mark-product::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18%;
  width: 82%;
  height: 12%;
  background: #fff;
  border: 3px solid #111;
  border-radius: 999px;
  transform: rotate(-7deg);
}

.mark-visual--shoes .mark-product span:nth-child(1) {
  left: 28%;
  bottom: 51%;
  width: 30%;
  height: 5px;
  background: var(--yellow);
  border-radius: 999px;
  transform: rotate(-7deg);
  box-shadow: 26px 12px 0 var(--yellow), 52px 24px 0 var(--yellow);
}

.mark-visual--building .mark-product::before {
  content: "";
  position: absolute;
  left: 7%;
  bottom: 7%;
  width: 52%;
  height: 77%;
  background: linear-gradient(160deg, #f7f2df, #d8d2c1);
  border-radius: 23px 23px 16px 16px;
  transform: rotate(-5deg);
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.18);
}

.mark-visual--building .mark-product::after {
  content: "СМЕСЬ";
  position: absolute;
  left: 17%;
  bottom: 39%;
  width: 32%;
  height: 20%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #111;
  border-radius: 10px;
  font-family: var(--heading-font);
  font-size: 16px;
  transform: rotate(-5deg);
}

.mark-visual--building .mark-product span:nth-child(1) {
  right: 15%;
  bottom: 5%;
  width: 35%;
  height: 34%;
  background: #2b3035;
  border-radius: 10px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.mark-visual--building .mark-product span:nth-child(2) {
  right: 8%;
  bottom: 38%;
  width: 26%;
  height: 23%;
  background: #fbea31;
  border-radius: 9px;
}

.mark-visual--cosmetics .mark-product span:nth-child(1),
.mark-visual--cosmetics .mark-product span:nth-child(2),
.mark-visual--cosmetics .mark-product span:nth-child(3) {
  bottom: 5%;
  width: 21%;
  border-radius: 20px 20px 16px 16px;
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.16);
}

.mark-visual--cosmetics .mark-product span:nth-child(1) {
  left: 11%;
  height: 73%;
  background: linear-gradient(180deg, #22272d 0 24%, #fbea31 25% 100%);
}

.mark-visual--cosmetics .mark-product span:nth-child(2) {
  left: 38%;
  height: 88%;
  background: linear-gradient(180deg, #fbea31 0 18%, #ffffff 19% 100%);
}

.mark-visual--cosmetics .mark-product span:nth-child(3) {
  left: 65%;
  height: 61%;
  background: linear-gradient(180deg, #1b1f24 0 22%, #dfe4e8 23% 100%);
}

.mark-visual--oil .mark-product::before {
  content: "";
  position: absolute;
  left: 12%;
  bottom: 4%;
  width: 55%;
  height: 82%;
  background: linear-gradient(145deg, #242930, #090a0c);
  border-radius: 26px 34px 24px 24px;
  clip-path: polygon(20% 0, 70% 0, 88% 18%, 88% 100%, 0 100%, 0 16%);
  box-shadow: 0 26px 42px rgba(0, 0, 0, 0.22);
}

.mark-visual--oil .mark-product::after {
  content: "";
  position: absolute;
  left: 25%;
  bottom: 35%;
  width: 31%;
  height: 29%;
  background: var(--yellow);
  border-radius: 13px;
}

.mark-visual--oil .mark-product span:nth-child(1) {
  left: 33%;
  top: 3%;
  width: 21%;
  height: 14%;
  border: 10px solid #101215;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.mark-visual--toys .mark-product::before {
  content: "";
  position: absolute;
  left: 12%;
  bottom: 8%;
  width: 54%;
  height: 54%;
  background: linear-gradient(145deg, #fbea31, #f2cf0e);
  border-radius: 24px;
  transform: rotate(-9deg);
  box-shadow: 0 25px 40px rgba(234, 197, 8, 0.22);
}

.mark-visual--toys .mark-product::after {
  content: "";
  position: absolute;
  left: 27%;
  bottom: 50%;
  width: 44%;
  height: 24%;
  background: #171a1f;
  border-radius: 999px 999px 12px 12px;
  transform: rotate(4deg);
  box-shadow: 0 19px 35px rgba(0, 0, 0, 0.18);
}

.mark-visual--toys .mark-product span:nth-child(1) {
  left: 24%;
  bottom: 28%;
  width: 14%;
  height: 14%;
  background: #fff;
  border-radius: 50%;
}

.mark-visual--toys .mark-product span:nth-child(2) {
  left: 45%;
  bottom: 28%;
  width: 14%;
  height: 14%;
  background: #fff;
  border-radius: 50%;
}

.mark-visual--toys .mark-product span:nth-child(3) {
  left: 34%;
  bottom: 16%;
  width: 16%;
  height: 7%;
  background: #171a1f;
  border-radius: 0 0 999px 999px;
}

@keyframes markFloat {
  0%, 100% { transform: rotate(14deg) translate3d(0, 0, 0); }
  50% { transform: rotate(11deg) translate3d(-8px, -12px, 0); }
}

@keyframes markCardFloat {
  0%, 100% { transform: rotate(13deg) translate3d(0, 0, 0); }
  50% { transform: rotate(15deg) translate3d(7px, 10px, 0); }
}

@keyframes productFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes cubeFloat {
  0%, 100% { transform: rotate(15deg) translateY(0); }
  50% { transform: rotate(28deg) translateY(-14px); }
}

@keyframes markScan {
  0%, 100% { transform: translateY(-36px); opacity: 0; }
  18%, 82% { opacity: 1; }
  50% { transform: translateY(42px); }
}

@media (prefers-reduced-motion: reduce) {
  .mark-plate,
  .mark-card,
  .mark-product,
  .gpt-service-visual,
  .mark-cube,
  .mark-code::after {
    animation: none;
  }
}

.alert-band {
  padding: 26px 0;
  background: var(--dark);
  color: #fff;
}

.alert-band p {
  max-width: 1040px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 700;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.content-stack {
  display: grid;
  gap: 24px;
}

.content-block {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(251, 234, 49, 0.55);
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.content-block h2,
.content-block h3 {
  margin-bottom: 16px;
}

.content-block ul,
.content-block ol {
  margin-bottom: 0;
}

.side-card {
  position: sticky;
  top: 116px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(251, 234, 49, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-table {
  display: grid;
  gap: 8px;
}

.mini-table div {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 12px;
  padding: 12px;
  background: #f7f7ef;
  border-radius: 10px;
}

.mini-table b {
  color: #000;
}

.service-steps {
  counter-reset: service;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-steps li {
  position: relative;
  padding: 18px 18px 18px 76px;
  background: #fff;
  border: 1px solid rgba(251, 234, 49, 0.55);
  border-radius: 12px;
}

.service-steps li::before {
  counter-increment: service;
  content: counter(service, decimal-leading-zero);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--primary);
  border-radius: 50%;
  color: #000;
  font-weight: 950;
}

.service-tabs {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(340px, 0.58fr);
  gap: 22px;
  align-items: start;
}

.tab-list {
  display: grid;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(251, 234, 49, 0.65);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tab-button {
  min-height: 62px;
  padding: 14px 10px;
  border: 0;
  border-bottom: 1px solid var(--primary);
  background: transparent;
  color: #555;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.12;
  text-align: left;
  text-transform: uppercase;
}

.tab-button:last-child {
  border-bottom: 0;
}

.tab-button.is-active {
  color: #000;
  background: var(--primary-soft);
  border-radius: 8px;
  padding-inline: 14px;
}

.tab-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(260px, 0.82fr);
  gap: 24px;
  align-items: start;
  min-height: 455px;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(251, 234, 49, 0.65);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tab-panel h3 {
  margin-bottom: 18px;
  font-size: clamp(24px, 3vw, 36px);
}

.tab-panel .btn {
  align-self: end;
  grid-column: 1 / -1;
  justify-self: start;
}

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

.tab-checks li {
  position: relative;
  padding: 14px 14px 14px 48px;
  background: #f7f7ef;
  border: 1px solid rgba(251, 234, 49, 0.65);
  border-radius: 10px;
  color: #333;
  font-weight: 750;
}

.tab-checks li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border: 2px solid #000;
  border-radius: 50%;
}

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

.category-grid article {
  position: relative;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
}

.category-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--primary);
  border-radius: 16px;
  color: #191919;
  box-shadow: 0 12px 24px rgba(251, 234, 49, 0.26);
  transform: rotate(-3deg);
}

.category-icon svg {
  width: 58%;
  height: 58%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-grid article:hover .category-icon {
  background: #ffe71f;
  color: #111;
  box-shadow: 0 14px 28px rgba(251, 234, 49, 0.36);
}

.process {
  background: #fff;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  min-height: 260px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(251, 234, 49, 0.55);
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.timeline .step-icon {
  display: inline-flex;
  width: 96px;
  height: 96px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.timeline .step-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.1));
}

.prices {
  background: var(--dark);
  color: #fff;
}

.prices h2,
.prices h3,
.prices .eyebrow { color: #fff; }

.prices p { color: rgba(255, 255, 255, 0.74); }

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

.price-card {
  position: relative;
  padding: 30px;
}

.price-card h3,
.price-card p,
.price-card li { color: var(--dark); }

.price-card--hot {
  border-color: var(--primary);
  box-shadow: 0 18px 48px rgba(251, 234, 49, 0.18);
}

.badge {
  position: absolute;
  top: 30px;
  right: 30px;
  display: inline-flex;
  margin: 0;
  padding: 8px 11px;
  background: var(--primary);
  border-radius: 8px;
  color: #000;
  font-weight: 950;
}

.price-card--hot h3 {
  max-width: calc(100% - 250px);
}

.price {
  margin-bottom: 8px;
  font-size: 44px;
  line-height: 1;
  font-weight: 950;
}

.per {
  min-height: 26px;
}

.price-card ul {
  min-height: 178px;
  margin-bottom: 24px;
}

.experts {
  margin: 24px 0 0;
  color: #fff;
  font-weight: 900;
}

.experts a {
  color: var(--primary);
}

.accordion {
  display: grid;
  gap: 12px;
}

.faq-grid {
  max-width: 1120px;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.faq-grid > div:first-child {
  max-width: 760px;
}

.faq-grid .accordion {
  width: min(100%, 920px);
  text-align: left;
}

details {
  overflow: hidden;
}

summary {
  position: relative;
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 18px 56px 18px 22px;
  color: var(--dark);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--primary);
  border-radius: 8px;
}

details[open] summary::after { content: "-"; }

details p {
  padding: 0 22px 20px;
  margin-bottom: 0;
}

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

.review-grid figure {
  margin: 0;
  padding: 24px;
}

.review-grid figure > b {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: var(--primary);
  border-radius: 50%;
  color: #000;
  font-size: 20px;
}

.review-grid figcaption {
  color: var(--dark);
  font-weight: 950;
}

.review-grid strong {
  display: block;
  margin: 6px 0 12px;
}

.review-grid blockquote {
  margin: 0;
  color: #454545;
  font-weight: 650;
}

.link-arrow {
  display: inline-flex;
  margin-top: 24px;
  color: #000;
  font-weight: 950;
}

.link-arrow::after {
  content: "→";
  margin-left: 8px;
}

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

.article-list a {
  min-height: 70px;
  display: flex;
  align-items: center;
  background: #fff;
}

.blog-hero {
  padding: 76px 0 54px;
  background: radial-gradient(920px 360px at 82% 6%, rgba(251, 234, 49, 0.28), transparent 68%);
}

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

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.blog-tags a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 15px;
  background: #fff;
  border: 1px solid rgba(251, 234, 49, 0.75);
  border-radius: 999px;
  color: var(--dark);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.blog-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-content: end;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(251, 234, 49, 0.72);
  border-radius: 18px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.12);
}

.blog-hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero-card div {
  position: relative;
  z-index: 1;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(251, 234, 49, 0.58);
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}

.blog-hero-card span,
.blog-card span {
  display: inline-flex;
  width: max-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  background: var(--primary);
  border-radius: 999px;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-hero-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.14;
}

.section-soft {
  background: #fffef0;
}

.blog-card-grid {
  width: min(100%, 1180px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(251, 234, 49, 0.72);
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.06);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background:
    radial-gradient(circle at 50% 42%, rgba(251, 234, 49, 0.12), transparent 58%),
    #f6f7f8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.blog-card span {
  margin-top: 20px;
}

.blog-card h3 {
  font-size: 22px;
  font-weight: 650;
}

.blog-card p {
  margin-bottom: 18px;
  color: #555;
}

.blog-card a {
  margin-top: auto;
  margin-bottom: 20px;
  color: var(--dark);
  font-weight: 900;
}

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

.article-dialog {
  width: min(1120px, calc(100% - 34px));
  max-height: min(86vh, 900px);
  padding: 0;
  overflow: auto;
  background: #fff;
  border: 1px solid rgba(251, 234, 49, 0.72);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.article-dialog::backdrop {
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(4px);
}

.article-dialog-close {
  position: sticky;
  top: 16px;
  left: calc(100% - 64px);
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 16px 16px -58px auto;
  background: var(--primary);
  border: 0;
  border-radius: 10px;
  color: #111;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.article-dialog-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  padding: 34px;
}

.article-dialog-media {
  position: sticky;
  top: 28px;
  align-self: start;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(251, 234, 49, 0.13), transparent 62%),
    #f6f7f8;
  border: 1px solid rgba(251, 234, 49, 0.64);
  border-radius: 14px;
}

.article-dialog-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  padding: 18px;
}

.article-dialog-content {
  padding: 10px 0 4px;
}

.article-dialog-content > span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  background: var(--primary);
  border-radius: 999px;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-dialog-content h2 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.article-dialog-lead {
  color: #4f4f4f;
  font-size: 20px;
}

.article-dialog-body {
  display: grid;
  gap: 18px;
  margin: 22px 0 26px;
}

.article-dialog-body h3 {
  margin-bottom: 4px;
  font-size: 22px;
  font-weight: 650;
}

.article-dialog-body p {
  margin-bottom: 0;
  color: #555;
}

.article-page-hero {
  padding: 68px 0 58px;
  background: radial-gradient(900px 340px at 76% 6%, rgba(251, 234, 49, 0.26), transparent 68%);
}

.article-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.article-page-visual {
  display: grid;
  place-items: center;
  min-height: 480px;
  background:
    radial-gradient(circle at 50% 42%, rgba(251, 234, 49, 0.12), transparent 62%),
    #f6f7f8;
  border: 1px solid rgba(251, 234, 49, 0.72);
  border-radius: 18px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.12);
}

.article-page-visual img {
  width: min(82%, 380px);
  max-height: 500px;
  object-fit: contain;
}

.article-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.lead-section {
  background: radial-gradient(900px 260px at 50% 0, rgba(251, 234, 49, 0.22), transparent 72%);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--dark);
  font-weight: 900;
}

.field {
  width: 100%;
  min-height: 54px;
  padding: 13px 14px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 10px;
  background: #fff;
  color: var(--dark);
  outline: 0;
}

.field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(251, 234, 49, 0.25);
}

.contact-way {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 4px 0;
  border: 0;
}

.contact-way legend {
  flex-basis: 100%;
  margin-bottom: 4px;
  font-weight: 950;
}

.contact-way label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border: 1px solid rgba(251, 234, 49, 0.65);
  border-radius: 8px;
}

.contact-way input { accent-color: #000; }

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

.policy a {
  color: #000;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

[data-form-status] {
  min-height: 22px;
  color: #000;
  font-weight: 900;
}

.footer {
  padding: 44px 0 28px;
  background: var(--dark);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.15fr) minmax(170px, 0.65fr) minmax(160px, 0.5fr) minmax(260px, 0.85fr);
  gap: 34px;
  align-items: start;
}

.footer p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.68);
}

.footer img {
  margin-bottom: 12px;
}

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

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

.footer-brand img {
  margin-bottom: 2px;
}

.footer-operator,
.footer-copy {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.55;
}

.footer-operator a {
  font-weight: 700;
}

.footer-legal-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 235, 59, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-legal-panel h3 {
  margin: 0 0 4px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.25;
}

.footer a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
}

.footer-contacts a:first-child {
  font-weight: 750;
}

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

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 22px;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.footer-copy {
  max-width: 760px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
}

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

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

  .menu-toggle { display: block; }

  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 92px;
    display: none;
    margin: 0;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav.is-open { display: grid; }

  .nav-group {
    display: grid;
  }

  .nav-parent {
    width: 100%;
    padding: 8px 7px;
    text-align: left;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    display: grid;
    padding: 8px 0 6px 12px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown a {
    padding: 11px 0;
    font-size: 18px;
  }

  .hero-grid,
  .intro-grid,
  .faq-grid,
  .lead-grid,
  .service-hero-grid,
  .service-layout,
  .service-tabs,
  .blog-hero-grid,
  .article-page-grid,
  .article-content-layout,
  .tab-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 390px;
  }

  .hero-panel--volumetric {
    min-height: 440px;
  }

  .hero-object-image {
    width: min(106%, 620px);
  }

  .cards.four,
  .cards.five,
  .category-grid,
  .timeline,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .blog-hero-card {
    min-height: 430px;
  }

  .article-page-visual {
    min-height: 420px;
  }

  .tab-panel {
    min-height: auto;
  }

  .side-card {
    position: static;
  }
}

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

  .section { padding: 62px 0; }

  .header-row { min-height: 78px; }

  .brand img { width: 154px; }

  .nav { top: 78px; }

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

  h1 { font-size: clamp(32px, 10vw, 46px); }

  .service-hero h1 {
    font-size: clamp(29px, 8.4vw, 39px);
    overflow-wrap: anywhere;
  }

  .lead { font-size: 18px; }

  .hero-actions,
  .price-grid,
  .cards.three,
  .cards.four,
  .cards.five,
  .category-grid,
  .timeline,
  .review-grid,
  .article-list,
  .blog-card-grid,
  .tab-list,
  .direction-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .badge {
    position: static;
    margin-bottom: 14px;
  }

  .price-card--hot h3 {
    max-width: none;
  }

  .blog-hero {
    padding: 44px 0 34px;
  }

  .blog-hero-card {
    min-height: 360px;
    padding: 14px;
  }

  .blog-hero-card div {
    padding: 16px;
  }

  .blog-card h3 {
    font-size: 20px;
  }

  .article-dialog {
    width: calc(100% - 20px);
    max-height: 90vh;
    border-radius: 14px;
  }

  .article-dialog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .article-dialog-media {
    position: static;
  }

  .article-dialog-close {
    top: 10px;
    width: 38px;
    height: 38px;
    margin: 10px 10px -48px auto;
  }

  .article-page-hero {
    padding: 44px 0;
  }

  .article-page-visual {
    min-height: 330px;
  }

  .article-page-visual img {
    width: min(86%, 310px);
  }

  .direction-link {
    min-height: 112px;
    padding: 20px;
  }

  .direction-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
  }

  .service-card-visual {
    min-height: 330px;
    place-items: center;
  }

  .gpt-service-visual {
    width: min(112%, 460px);
  }

  .mark-visual {
    max-width: 430px;
  }

  .mark-card {
    padding: 20px 17px;
    border-radius: 24px;
  }

  .mark-tag {
    width: 66px;
    height: 86px;
  }

  .mark-mini-code {
    width: 36px;
    height: 36px;
    margin-top: 29px;
  }

  .mark-scanner {
    width: 82px;
    height: 52px;
  }

  .mark-scanner::before {
    top: 14px;
    left: 13px;
    width: 43px;
    height: 19px;
    border-width: 5px;
  }

  .mini-table div {
    grid-template-columns: 1fr;
  }

  .tab-button {
    min-height: 52px;
    font-size: 16px;
  }

  .tab-panel {
    padding: 22px;
  }

  .tab-panel .btn {
    justify-self: stretch;
  }

  .hero-actions,
  .price-grid {
    display: grid;
  }

  .btn { width: 100%; }

  .hero-panel { min-height: 420px; }

  .hero-panel--volumetric {
    min-height: 350px;
  }

  .hero-object-image {
    width: min(116%, 440px);
  }

  .hero-status {
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
  }

  .qr-card {
    width: 245px;
    height: 245px;
    gap: 12px;
    padding: 22px;
  }

  .dashboard-card {
    width: 94%;
    padding: 22px;
  }

  .strip-grid {
    display: grid;
  }
}
