:root {
  --ink: #323c4c;
  --muted: #637081;
  --line: #dfe3e8;
  --paper: #f8fafc;
  --white: #ffffff;
  --teal: #323c4c;
  --teal-dark: #313947;
  --orange: #ed6b1a;
  --orange-dark: #c9500f;
  --cream: #fce0c9;
  --green: #6d8f74;
  --shadow: 0 18px 55px rgba(49, 57, 71, 0.14);
}

@font-face {
  font-family: "Gotham SI2M";
  src: url("assets/fonts/copyfonts.com_gotham_extralight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham SI2M";
  src: url("assets/fonts/copyfonts.com_gotham_medium.ttf") format("truetype");
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham SI2M";
  src: url("assets/fonts/copyfonts.com_gotham_bold.ttf") format("truetype");
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Gotham SI2M", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

body.legal-page {
  min-height: 100vh;
}

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

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

[hidden] {
  display: none !important;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(248, 250, 252, 0.92);
  border-bottom: 1px solid rgba(223, 227, 232, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: clamp(96px, 11vw, 132px);
  height: auto;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #34454c;
  font-size: 0.9rem;
  font-weight: 650;
}

.nav a:hover,
.header-phone:hover,
.site-footer a:hover {
  color: var(--orange);
}

.header-phone {
  color: var(--orange-dark);
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.mobile-nav {
  position: fixed;
  z-index: 19;
  top: 74px;
  left: 0;
  right: 0;
  display: none;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 14px 18px 22px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  padding: 13px 8px;
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #eef2f6;
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.98) 0%, rgba(248, 250, 252, 0.86) 36%, rgba(248, 250, 252, 0.16) 66%, rgba(248, 250, 252, 0) 100%),
    linear-gradient(0deg, rgba(248, 250, 252, 1) 0%, rgba(248, 250, 252, 0) 22%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(670px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 86px;
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 590px;
  color: #34454c;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
}

.button.primary {
  color: var(--white);
  background: var(--orange);
}

.button.primary:hover {
  background: var(--orange-dark);
}

.button.secondary {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.76);
  border-color: var(--line);
}

.hero-proof {
  margin-top: 30px;
  color: #415158;
  font-size: 0.95rem;
  font-weight: 750;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.section,
.service-band,
.plans-band,
.contact-band {
  padding: clamp(72px, 9vw, 126px) clamp(18px, 5vw, 72px);
}

.intro,
.audience,
.method,
.real-work {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(32px, 6vw, 92px);
  max-width: 1180px;
  margin: 0 auto;
}

.intro p,
.audience-copy p,
.real-work-copy p,
.contact-copy p,
.method p,
.service-card p,
.plan p,
.plan li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.intro > p {
  padding-top: 38px;
  font-size: 1.16rem;
}

.real-work {
  align-items: center;
  padding-top: 0;
}

.real-work-copy {
  max-width: 560px;
}

.work-frame {
  min-width: 0;
  padding: 14px;
  background: #222a35;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.carousel-toolbar {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.carousel-status {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.carousel-button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 1.55rem;
  font-weight: 900;
}

.carousel-button:hover {
  background: var(--orange);
}

.carousel-window {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.photo-slide {
  position: relative;
  flex: 0 0 calc((100% - 14px) / 2);
  height: 360px;
  margin: 0;
  overflow: hidden;
  background: #111820;
  border-radius: 8px;
  scroll-snap-align: start;
}

.photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111820;
  filter: saturate(0.94) contrast(1.03);
}

.photo-slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 36px 14px 14px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(17, 24, 32, 0.92) 0%, rgba(17, 24, 32, 0) 100%);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
}

.service-band,
.contact-band {
  background: var(--white);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

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

.service-card,
.plan {
  min-height: 245px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card .icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--teal-dark);
  font-weight: 900;
}

.checks {
  display: grid;
  gap: 12px;
  align-content: start;
}

.checks p {
  margin: 0;
  padding: 17px 18px;
  background: var(--white);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(23, 33, 38, 0.06);
  font-weight: 750;
}

.plans-band {
  background: var(--teal-dark);
  color: var(--white);
}

.plans-band .eyebrow {
  color: var(--cream);
}

.plans-band h2 {
  color: var(--white);
}

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

.plan {
  position: relative;
  background: #3a4554;
  border-color: rgba(255, 255, 255, 0.14);
}

.plan.featured {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

.plan li {
  color: inherit;
  opacity: 0.82;
}

.plan li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--orange);
  border-radius: 50%;
}

.equipment {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(32px, 6vw, 80px);
  max-width: 1180px;
  margin: 0 auto;
}

.equipment-copy {
  max-width: 560px;
}

.equipment-copy p,
.equipment-card p,
.supplier-note p {
  color: var(--muted);
  line-height: 1.65;
}

.supplier-note {
  margin-top: 30px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(49, 57, 71, 0.05);
}

.supplier-note strong {
  display: block;
  margin-bottom: 8px;
}

.supplier-note p {
  margin: 0;
}

.inline-link {
  color: var(--orange-dark);
  font-weight: 850;
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

.clients-band {
  background: var(--white);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.client-logo,
.client-grid > span {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.client-logo span,
.client-grid > span {
  max-width: 100%;
  color: var(--teal-dark);
  font-size: clamp(1rem, 1.35vw, 1.42rem);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.backup-pack {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #f7f9fc;
}

.backup-copy {
  max-width: 560px;
}

.backup-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(49, 57, 71, 0.06);
}

.backup-card h3 {
  margin: 8px 0 14px;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.08;
}

.backup-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.backup-card ul,
.backup-features {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.backup-card li,
.backup-features li {
  padding: 14px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 750;
}

.shop-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.shop-status article {
  min-height: 190px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.shop-status h3 {
  margin-bottom: 10px;
}

.shop-status h2 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  line-height: 1.15;
}

.shop-status p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.equipment-card {
  min-height: 245px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(49, 57, 71, 0.06);
}

.equipment-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tag {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

.steps span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
  font-weight: 900;
}

.faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-list details {
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(49, 57, 71, 0.05);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.35;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: start;
}

.contact-copy {
  max-width: 620px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  font-weight: 800;
}

.contact-list a {
  color: var(--orange-dark);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #33434a;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd7d9;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(237, 107, 26, 0.18);
  border-color: var(--orange);
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #eef2f6;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.legal-content {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 80px;
}

.legal-content h1 {
  max-width: none;
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.legal-content p {
  color: var(--muted);
  line-height: 1.72;
}

.legal-content a:not(.button) {
  color: var(--orange-dark);
  font-weight: 800;
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-cookie-link {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.cookie-banner {
  position: fixed;
  z-index: 30;
  left: clamp(14px, 3vw, 34px);
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 70px rgba(49, 57, 71, 0.22);
  backdrop-filter: blur(16px);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-settings {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.cookie-option {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.88rem;
}

.cookie-option input {
  width: auto;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

body.page-shell {
  background: var(--white);
}

.page-hero {
  padding: 150px clamp(18px, 5vw, 72px) 76px;
  background: linear-gradient(120deg, #f8fafc 0%, #eef2f6 100%);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.6rem, 5.4vw, 5.2rem);
}

.page-hero p,
.content-card p,
.article-card p,
.section-heading p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-panel,
.info-panel,
.content-card,
.article-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(49, 57, 71, 0.08);
}

.hero-panel ul,
.info-panel ul,
.content-card ul,
.article-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-panel li,
.info-panel li {
  padding-left: 14px;
  border-left: 3px solid var(--orange);
  list-style: none;
  color: var(--ink);
}

.split-section,
.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(32px, 6vw, 92px);
  max-width: 1180px;
  margin: 0 auto;
}

.sector-grid,
.article-grid,
.content-grid,
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.sector-grid a,
.article-grid a,
.mini-card {
  min-height: 132px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.25;
}

.sector-grid a:hover,
.article-grid a:hover,
.service-card a:hover,
.content-card a:hover {
  color: var(--orange-dark);
  border-color: rgba(237, 107, 26, 0.45);
}

.service-card a,
.article-card a,
.content-card a {
  color: var(--orange-dark);
  font-weight: 850;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--orange-dark);
  font-weight: 800;
}

.notice-box {
  padding: 20px;
  background: #fff8f2;
  border: 1px solid #f6c49f;
  border-radius: 8px;
  color: var(--ink);
  line-height: 1.65;
}

.lead-form.compact {
  max-width: 760px;
  margin: 0 auto;
}

.consent-line {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.consent-line input {
  width: auto;
  margin-top: 3px;
}

.ai-assistant {
  position: fixed;
  z-index: 28;
  right: 18px;
  bottom: 18px;
}

.ai-toggle {
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 34px rgba(49, 57, 71, 0.22);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.ai-panel {
  width: min(390px, calc(100vw - 24px));
  max-height: min(720px, calc(100vh - 120px));
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(49, 57, 71, 0.25);
}

.ai-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  color: var(--white);
  background: var(--ink);
}

.ai-header button {
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-size: 1.4rem;
}

.ai-messages {
  display: grid;
  gap: 10px;
  overflow: auto;
  padding: 16px;
}

.ai-message {
  padding: 11px 12px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.45;
}

.ai-message.user {
  color: var(--white);
  background: var(--teal-dark);
}

.ai-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 12px;
}

.ai-actions button,
.ai-input-row button {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 750;
}

.ai-actions button:hover,
.ai-input-row button:hover {
  color: var(--white);
  background: var(--orange);
}

.ai-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--line);
}

.ai-input-row input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  font: inherit;
}

@media (max-width: 920px) {
  .nav,
  .header-phone {
    display: none;
  }

  .menu-button {
    display: block;
  }

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

  .hero {
    min-height: 760px;
    align-items: start;
  }

  .hero img {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(248, 250, 252, 1) 0%, rgba(248, 250, 252, 0.94) 40%, rgba(248, 250, 252, 0.38) 74%, rgba(248, 250, 252, 0.16) 100%);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 118px 0 56px;
  }

  h1 {
    max-width: 760px;
    font-size: clamp(2.8rem, 8vw, 4.4rem);
  }

  .intro,
  .audience,
  .real-work,
  .equipment,
  .method,
  .split-section,
  .content-split,
  .page-hero-inner,
  .contact-band,
  .backup-pack {
    grid-template-columns: 1fr;
  }

  .intro > p {
    padding-top: 0;
  }

  .service-grid,
  .plans,
  .client-grid,
  .shop-status,
  .sector-grid,
  .article-grid,
  .content-grid,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-slide {
    flex-basis: calc((100% - 14px) / 2);
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .section,
  .service-band,
  .plans-band,
  .backup-pack,
  .page-hero,
  .contact-band {
    padding: 44px 18px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 790px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10.2vw, 2.85rem);
    line-height: 1.08;
  }

  .hero-content {
    padding-bottom: 24px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .service-grid,
  .plans,
  .equipment-grid,
  .client-grid,
  .shop-status,
  .sector-grid,
  .article-grid,
  .content-grid,
  .mini-grid,
  .steps,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .ai-assistant {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .ai-toggle {
    width: 100%;
  }

  .ai-panel {
    width: 100%;
  }

  .backup-card {
    padding: 20px;
  }

  .work-frame {
    padding: 10px;
  }

  .carousel-toolbar {
    grid-template-columns: 38px 1fr 38px;
  }

  .carousel-button {
    width: 38px;
    height: 38px;
  }

  .photo-slide {
    flex-basis: 100%;
    height: 390px;
  }

  .service-card,
  .plan,
  .contact-form {
    padding: 22px;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: space-between;
  }

  .cookie-actions .button {
    flex: 1 1 130px;
  }
}
