:root {
  --color-black: #0b0b0b;
  --color-black-soft: #161616;
  --color-yellow: #f8c417;
  --color-yellow-deep: #f0b100;
  --color-paper: #f8f5ec;
  --color-white: #ffffff;
  --color-text: #181818;
  --color-muted: #616161;
  --color-line: rgba(11, 11, 11, 0.12);
  --shadow-hard: 0 22px 60px rgba(0, 0, 0, 0.2);
  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.12);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100% - 32px));
  --header-height: 90px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top right, rgba(248, 196, 23, 0.18), transparent 26rem),
    linear-gradient(180deg, #fffef8 0%, var(--color-paper) 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

ul {
  margin: 0;
  padding-left: 1.15rem;
}

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

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 30;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-weight: 700;
}

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

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

.section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.section-dark {
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(248, 196, 23, 0.08), transparent 28%),
    linear-gradient(160deg, #0f0f0f 0%, #060606 100%);
}

.section-paper {
  background: transparent;
}

.section-accent {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25)),
    linear-gradient(180deg, var(--color-yellow) 0%, #efb50f 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-yellow);
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 10px;
  background:
    repeating-linear-gradient(-45deg, var(--color-yellow), var(--color-yellow) 10px, transparent 10px, transparent 20px);
  border-radius: 999px;
}

.eyebrow-dark {
  color: var(--color-black);
}

.eyebrow-dark::before {
  background:
    repeating-linear-gradient(-45deg, var(--color-black), var(--color-black) 10px, transparent 10px, transparent 20px);
}

.section-head {
  /* max-width: 760px; */
  margin-bottom: 40px;
}

.section-head h2,
.about-copy h2,
.faq-intro h2,
.contacts-copy h2,
.contacts-panel h3 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.section-head h2,
.about-copy h2,
.faq-intro h2,
.contacts-copy h2 {
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  margin-bottom: 16px;
}

.section-intro,
.about-copy p,
.faq-intro p,
.contacts-copy p,
.contacts-panel p {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
}

.section-dark .section-intro,
.section-dark .faq-intro p {
  color: rgba(255, 255, 255, 0.74);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(248, 245, 236, 0.9);
  border-bottom: 1px solid rgba(11, 11, 11, 0.08);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  position: relative;
}

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

.brand img {
  flex: none;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-subline {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.site-nav a,
.header-phone,
.footer-meta a {
  font-weight: 700;
  transition: color 180ms ease, opacity 180ms ease;
}

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

.header-phone {
  justify-self: end;
  padding: 14px 18px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-white);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  position: relative;
  flex-direction: column;
  flex-shrink: 0;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  background: var(--color-white);
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--color-black);
  border-radius: 999px;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease, background-color 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: clamp(42px, 8vw, 88px) 0 104px;
  overflow: clip;
}

.hero-word {
  position: absolute;
  top: 64px;
  right: min(6vw, 54px);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(4rem, 17vw, 13rem);
  line-height: 0.85;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.hero-copy h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 30px;
  font-size: 1.06rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.76);
}

.hero-actions,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--color-yellow);
  color: var(--color-black);
}

.button-primary:hover {
  background: #ffd447;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--color-white);
  background: transparent;
}

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

.button-dark-text {
  color: var(--color-black);
}

.button-ghost-dark {
  border-color: rgba(11, 11, 11, 0.15);
  color: var(--color-black);
  background: rgba(255, 255, 255, 0.25);
}

.button-ghost-dark:hover {
  border-color: var(--color-black);
  background: var(--color-white);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.highlight-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.highlight-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.highlight-card span {
  display: block;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.hero-stage {
  position: relative;
  min-height: 660px;
}

.hero-main-frame,
.hero-side-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-hard);
}

.hero-main-frame {
  width: min(100%, 560px);
  margin-left: auto;
  border-radius: 36px;
  background: var(--color-black);
  transform: rotate(-3deg);
}

.hero-main-frame img {
  width: 100%;
  height: clamp(420px, 52vw, 620px);
  object-fit: cover;
}

.hero-side-frame {
  position: absolute;
  width: clamp(190px, 22vw, 250px);
  border-radius: 28px;
  background: var(--color-white);
}

.hero-side-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-side-frame-top {
  top: 16px;
  left: 6px;
  height: 280px;
  transform: rotate(6deg);
}

.hero-side-frame-bottom {
  right: 34px;
  bottom: 22px;
  height: 240px;
  transform: rotate(8deg);
}

.hero-stat {
  position: absolute;
  display: grid;
  gap: 8px;
  max-width: 240px;
  padding: 18px 20px;
  border-radius: 24px;
  background: var(--color-yellow);
  color: var(--color-black);
  box-shadow: var(--shadow-hard);
}

.hero-stat span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stat strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1.42rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-stat-top {
  left: 42px;
  top: 310px;
}

.hero-stat-bottom {
  right: 0;
  bottom: -12px;
}

.impact-band {
  position: relative;
  margin-top: -56px;
  z-index: 2;
}

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

.impact-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(135deg, #f8c417 0%, #ffc617 56%, #ffd755 100%);
  box-shadow: var(--shadow-hard);
}

.impact-card::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.26);
  transform: rotate(14deg);
}

.impact-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  padding: 0;
  margin-bottom: 18px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.impact-card p {
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

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

.service-card {
  grid-column: span 4;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 30px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.service-card-wide {
  grid-column: span 6;
  grid-row: span 2;
}

.service-card-dark {
  background: var(--color-black);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.08);
}

.service-card-accent {
  background: linear-gradient(180deg, #fffaf0 0%, #ffe389 100%);
}

.service-card-media img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.service-card-wide .service-card-media img {
  height: 320px;
}

.service-card-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px 24px 28px;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 54px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(248, 196, 23, 0.16);
  color: inherit;
  font-weight: 800;
}

.service-card-dark .service-index {
  background: rgba(248, 196, 23, 0.22);
}

.service-card h3,
.workflow-card h3,
.audience-card h3,
.benefit-card h3,
.review-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.service-card p,
.service-card li,
.workflow-card p,
.audience-card p,
.benefit-card p,
.review-card p {
  line-height: 1.75;
}

.service-card p,
.service-card li,
.audience-card p,
.benefit-card p {
  color: inherit;
}

.service-card ul {
  display: grid;
  gap: 10px;
}

.service-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
  font-weight: 800;
}

.workflow {
  position: relative;
  overflow: clip;
}

.workflow::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: */
    /* linear-gradient(90deg, transparent 0%, rgba(248, 196, 23, 0.14) 50%, transparent 100%); */
  opacity: 0.9;
  pointer-events: none;
}

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

.workflow-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.workflow-card span {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-yellow);
}

.workflow-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.about-grid,
.contacts-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.audience-card {
  padding: 22px;
  border-radius: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}

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

.about-collage {
  position: relative;
  min-height: 640px;
}

.about-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-hard);
  border: 1px solid rgba(11, 11, 11, 0.08);
  background: var(--color-white);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-main {
  inset: 58px 88px 0 0;
}

.about-photo-top {
  top: -114px;
  right: 0;
  width: 230px;
  height: 250px;
  transform: rotate(6deg);
}

.about-photo-bottom {
  left: 28px;
  bottom: -141px;
  width: 250px;
  height: 210px;
  transform: rotate(-6deg);
}

.about-badge {
  position: absolute;
  right: -137px;
  bottom: 36px;
  max-width: 280px;
  padding: 20px 22px;
  border-radius: 24px;
  background: var(--color-yellow);
  color: var(--color-black);
  box-shadow: var(--shadow-hard);
}

.about-badge span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  /* letter-spacing: 0.12em; */
  text-transform: uppercase;
}

.about-badge strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  line-height: 1.05;
  /* text-transform: uppercase; */
}

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

.benefit-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(11, 11, 11, 0.92);
  color: var(--color-white);
  box-shadow: var(--shadow-hard);
}

.benefit-card span {
  display: block;
  margin-bottom: 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 3.1rem;
  line-height: 1;
  color: var(--color-yellow);
}

.benefit-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

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

.gallery-item {
  grid-column: span 3;
  overflow: hidden;
  min-height: 240px;
  border-radius: 28px;
  background: var(--color-black);
  box-shadow: var(--shadow-soft);
}

.gallery-item-lg {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-item-tall {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.reviews-section {
  background:
    linear-gradient(180deg, rgba(248, 196, 23, 1) 0%, rgba(248, 196, 23, 0.06) 100%),
    var(--color-white);
}

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

.review-card {
  padding: 26px;
  border-radius: 28px;
  background: var(--color-black);
  color: var(--color-white);
  box-shadow: var(--shadow-hard);
}

.review-avatar {
  display: grid;
  flex: 0 0 auto;
  flex-shrink: 0;
  place-items: center;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  margin-bottom: 18px;
  border-radius: 50%;
  clip-path: circle(50%);
  background: var(--color-yellow);
  color: var(--color-black);
  font-weight: 800;
}

.review-avatar img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  clip-path: circle(50%);
}

.review-avatar span {
  display: block;
  position: relative;
  z-index: 1;
}

.review-avatar.has-image {
  background: #d7d0bc;
}

.review-avatar.has-image img {
  display: block;
}

.review-avatar.has-image span {
  display: none;
}

.review-meta {
  color: rgba(255, 255, 255, 0.62);
}

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

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.faq-question {
  position: relative;
  width: 100%;
  padding: 24px 64px 24px 24px;
  border: 0;
  color: var(--color-white);
  text-align: left;
  font-size: 1.02rem;
  font-weight: 800;
  background: transparent;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--color-yellow);
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 24px 24px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.74);
}

.contacts-section {
  background: var(--color-paper);
}

.contact-stack {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.contact-card span,
.panel-label,
.panel-meta span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong,
.panel-meta strong {
  font-size: 1.1rem;
}

.contacts-panel {
  padding: clamp(28px, 4vw, 40px);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 45%),
    linear-gradient(180deg, var(--color-yellow) 0%, #efb50f 100%);
  box-shadow: var(--shadow-hard);
}

.panel-label {
  display: inline-flex;
  margin-bottom: 18px;
}

.contacts-panel h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.panel-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0 28px;
}

.panel-meta div {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(11, 11, 11, 0.08);
}

.site-footer {
  padding: 28px 0 36px;
  color: var(--color-white);
  background: var(--color-black);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(255, 255, 255, 0.75);
}

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

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

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .faq-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-stage,
  .about-collage {
    min-height: auto;
  }

  .hero-main-frame {
    margin: 0 auto;
    transform: none;
  }

  .hero-side-frame-top {
    left: 24px;
  }

  .hero-side-frame-bottom {
    right: 24px;
    bottom: -18px;
  }

  .about-collage {
    padding: 24px 0 48px;
    min-height: 720px;
  }

  .service-card,
  .service-card-wide {
    grid-column: span 6;
    grid-row: auto;
  }

  .gallery-item,
  .gallery-item-lg,
  .gallery-item-tall,
  .gallery-item-wide {
    grid-column: span 6;
    grid-row: auto;
    min-height: 250px;
  }

  .workflow-grid,
  .benefits-grid,
  .reviews-grid,
  .audience-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .header-shell {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 0 12px;
    overflow-x: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    scrollbar-width: none;
  }

  .header-phone {
    display: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding: 11px 15px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: var(--color-white);
  }

  .hero-highlights,
  .impact-grid,
  .panel-meta {
    grid-template-columns: 1fr;
  }

  .workflow-grid,
  .benefits-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 72px;
  }

  .hero-stage {
    padding-bottom: 0;
  }

  .hero-side-frame {
    width: 36%;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }

  .brand-copy {
    display: none;
  }

  .hero-word {
    top: 96px;
    right: 8px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 14vw, 4.2rem);
  }

  .hero-main-frame img {
    height: 420px;
  }

  .hero-side-frame {
    display: none;
  }

  .hero-stat {
    position: static;
    max-width: none;
    margin-top: 16px;
  }

  .impact-band {
    margin-top: -34px;
  }

  .services-grid,
  .gallery-grid,
  .audience-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-wide,
  .gallery-item,
  .gallery-item-lg,
  .gallery-item-tall,
  .gallery-item-wide {
    grid-column: span 1;
  }

  .about-collage {
    padding-bottom: 30px;
    min-height: 620px;
  }

  .about-photo-main {
    inset: 52px 14px 0 0;
  }

  .about-photo-top {
    /* width: 170px; */
    /* height: 190px; */
	display: none;
  }

  .about-photo-bottom {
    /* left: 10px; */
    /* width: 180px; */
    /* height: 150px; */
	display: none;
  }

  .about-badge {
    right: 8px;
    bottom: 10px;
    left: 28px;
    max-width: none;
  }

  .footer-shell,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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

body,
.section-head h2,
.about-copy h2,
.faq-intro h2,
.contacts-copy h2,
.contacts-panel h3,
.brand-name,
.hero-copy h1,
.hero-word,
.impact-number {
  font-family: "Montserrat", sans-serif;
}

.section-head h2,
.about-copy h2,
.faq-intro h2,
.contacts-copy h2,
.contacts-panel h3,
.hero-copy h1,
.brand-name,
.hero-word {
  font-weight: 900;
  letter-spacing: -0.05em;
}

.section-head h2,
.about-copy h2,
.faq-intro h2,
.contacts-copy h2 {
  line-height: 1;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(30px, 4vw, 64px);
}

.hero-word {
  right: auto;
  left: min(30vw, 420px);
  top: 38px;
  font-size: clamp(4rem, 15vw, 11rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 8.8ch;
  font-size: clamp(2.8rem, 5.7vw, 4.6rem);
  line-height: 1;
}

.hero-text {
  max-width: 540px;
}

.hero-stage {
  min-height: 720px;
}

.hero-main-frame {
  width: min(100%, 640px);
  margin-left: 0;
  border-radius: 42px;
  transform: rotate(-4deg);
}

.hero-main-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.32));
}

.hero-main-frame img {
  height: clamp(450px, 50vw, 720px);
}

.hero-float-card {
  position: absolute;
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 14px;
  width: min(300px, 72%);
  padding: 14px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-hard);
}

.hero-float-card img {
  width: 92px;
  height: 92px;
  border-radius: 20px;
  object-fit: cover;
}

.hero-float-card span,
.hero-panel span,
.hero-metric span,
.services-lead-tag,
.services-lead-list li::before,
.benefit-card-index,
.contact-tile span,
.contacts-primary-card span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-float-card strong,
.hero-panel strong,
.hero-metric strong,
.services-lead h3,
.benefit-card h3,
.contacts-primary-card a,
.contact-tile strong {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.08;
}

.hero-float-card-top {
  right: 4px;
  top: 42px;
}

.hero-float-card-bottom {
  left: 48px;
  bottom: 140px;
}

.hero-panel {
  position: absolute;
  right: 38px;
  bottom: 24px;
  /* max-width: 260px; */
  max-width: 176px;
  padding: 24px;
  border-radius: 30px;
  box-shadow: var(--shadow-hard);
}

.hero-panel-accent {
  background: linear-gradient(180deg, var(--color-yellow) 0%, #d69f00 100%);
  color: var(--color-black);
}

.hero-panel strong {
  display: block;
  margin-top: 8px;
  /* font-size: 1.7rem; */
  font-size: 1.2rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.hero-metric {
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.hero-metric strong {
  display: block;
  margin-top: 10px;
  font-size: 1.02rem;
}

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

.highlight-card {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.03);
}

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

.services-lead {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 28px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(248, 196, 23, 0.24), transparent 40%),
    linear-gradient(180deg, #111111 0%, #1c1c1c 100%);
  color: var(--color-white);
  box-shadow: var(--shadow-hard);
}

.services-lead h3 {
  margin: 16px 0 16px;
  font-size: 1.8rem;
}

.services-lead p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.74);
}

.services-lead-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.services-lead-list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.services-lead-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-yellow);
}

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

.service-strip {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(11, 11, 11, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-strip:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
}

.service-strip:nth-child(2n) {
  background: linear-gradient(180deg, #141414 0%, #2f2f2f 100%);
  color: var(--color-white);
}

.service-strip:nth-child(3),
.service-strip:nth-child(5) {
  background: linear-gradient(180deg, #fff4c2 0%, #fffdf6 100%);
}

.service-strip-media {
  position: relative;
  overflow: hidden;
}

.service-strip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-strip-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px 22px 24px 20px;
}

.service-strip h3 {
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 800;
}

.service-strip p,
.service-strip li {
  line-height: 1.7;
}

.service-strip p {
  margin-bottom: 0;
}

.service-strip-body ul {
  display: grid;
  gap: 10px;
}

.service-strip:nth-child(2n) .service-index,
.service-strip:nth-child(2n) .service-link {
  color: var(--color-white);
}

.benefits-section {
  position: relative;
  overflow: clip;
  color: var(--color-white);
  background:
    linear-gradient(120deg, rgba(9, 9, 9, 0.92), rgba(9, 9, 9, 0.64)),
    linear-gradient(180deg, rgba(248, 196, 23, 0.18), rgba(248, 196, 23, 0.05)),
    url("../img/custom/custom 3.jpg") center/cover no-repeat;
}

/* .benefits-section::before { */
  /* content: ""; */
  /* position: absolute; */
  /* inset: 0; */
  /* background: */
    /* radial-gradient(circle at left top, rgba(248, 196, 23, 0.16), transparent 28rem), */
    /* linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent); */
/* } */

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

.benefits-section .section-head h2,
.benefits-section .section-head p {
  color: var(--color-white);
}

.benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  background: rgba(11, 11, 11, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--color-yellow), rgba(248, 196, 23, 0));
}

.benefit-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  border-color: rgba(248, 196, 23, 0.64);
  background: rgba(11, 11, 11, 0.78);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.28);
}

.benefit-card-index {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--color-yellow);
}

.benefit-card-arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(248, 196, 23, 0.4);
  transition: transform 220ms ease, background-color 220ms ease;
}

.benefit-card-arrow::before,
.benefit-card-arrow::after {
  content: "";
  position: absolute;
  background: var(--color-yellow);
  border-radius: 999px;
}

.benefit-card-arrow::before {
  width: 16px;
  height: 2px;
  left: 12px;
  top: 19px;
}

.benefit-card-arrow::after {
  width: 8px;
  height: 8px;
  right: 12px;
  top: 15px;
  border-top: 2px solid var(--color-yellow);
  border-right: 2px solid var(--color-yellow);
  background: transparent;
  transform: rotate(45deg);
}

.benefit-card:hover .benefit-card-arrow {
  transform: translateX(4px);
  background: rgba(248, 196, 23, 0.12);
}

.gallery-carousel {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 76px;
  align-items: center;
  gap: 20px;
}

.gallery-stage {
  position: relative;
  min-height: 620px;
  perspective: 1400px;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 430px);
  margin: 0;
  padding: 14px 14px 18px;
  border-radius: 32px;
  background: var(--color-white);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform-origin: center center;
  transition: transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 400ms ease, filter 400ms ease;
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  object-fit: cover;
}

.gallery-slide figcaption {
  margin-top: 14px;
  padding: 0 6px;
  font-weight: 700;
}

.gallery-slide.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) rotateY(0deg) rotate(0deg) scale(1);
}

.gallery-slide.is-prev {
  z-index: 2;
  opacity: 0.82;
  transform: translateX(calc(-50% - 285px)) rotateY(34deg) rotate(-8deg) scale(0.86);
  filter: saturate(0.82);
}

.gallery-slide.is-next {
  z-index: 2;
  opacity: 0.82;
  transform: translateX(calc(-50% + 285px)) rotateY(-34deg) rotate(8deg) scale(0.86);
  filter: saturate(0.82);
}

.gallery-slide.is-far-prev {
  z-index: 1;
  opacity: 0.2;
  transform: translateX(calc(-50% - 470px)) rotateY(40deg) rotate(-14deg) scale(0.72);
}

.gallery-slide.is-far-next {
  z-index: 1;
  opacity: 0.2;
  transform: translateX(calc(-50% + 470px)) rotateY(-40deg) rotate(14deg) scale(0.72);
}

.gallery-control {
  width: 64px;
  height: 64px;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  color: var(--color-black);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.gallery-control span {
  font-size: 2rem;
  line-height: 1;
}

.gallery-control:hover {
  transform: translateY(-3px);
  background: var(--color-yellow);
}

.gallery-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(11, 11, 11, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.gallery-dot.is-active {
  transform: scale(1.18);
  background: var(--color-yellow-deep);
}

.contacts-shell {
  display: grid;
  gap: 24px;
}

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

.contacts-primary-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 30px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(248, 196, 23, 0.22), transparent 52%),
    linear-gradient(180deg, #111111 0%, #1f1f1f 100%);
  color: var(--color-white);
  box-shadow: var(--shadow-hard);
}

.contacts-primary-card a {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.contacts-primary-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

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

.contact-tile {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(11, 11, 11, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.contact-tile p {
  margin-bottom: 0;
  line-height: 1.75;
  color: var(--color-muted);
}

.contact-tile-dark {
  background: linear-gradient(180deg, #0f0f0f 0%, #252525 100%);
  color: var(--color-white);
}

.contact-tile-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-tile-wide {
  grid-column: span 2;
  background:
    radial-gradient(circle at top right, rgba(248, 196, 23, 0.22), transparent 30%),
    var(--color-white);
}

@media (max-width: 1180px) {
  .hero-grid,
  .services-layout,
  .contacts-hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    /* order: 1; */
	order: 2;
  }

  .hero-media {
    /* order: 2; */
	order: 1;
  }

  .hero-stage {
    min-height: 620px;
  }

  .services-lead {
    position: static;
  }

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

@media (max-width: 960px) {
  .hero-stage {
    min-height: 560px;
    padding-bottom: 118px;
  }

  .hero-main-frame {
    width: 100%;
    transform: none;
  }

  .hero-float-card-top {
    top: 20px;
    right: 10px;
  }

  .hero-float-card-bottom {
    left: 14px;
    bottom: 112px;
  }

  .hero-panel {
    right: 18px;
    bottom: 14px;
  }

  .hero-metrics,
  .hero-highlights,
  .services-grid,
  .benefits-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .service-strip {
    grid-template-columns: 150px 1fr;
  }

  .gallery-carousel {
    grid-template-columns: 56px minmax(0, 1fr) 56px;
  }

  .gallery-stage {
    min-height: 560px;
  }

  .gallery-slide {
    width: min(100%, 360px);
  }

  .gallery-slide.is-prev {
    transform: translateX(calc(-50% - 180px)) rotateY(24deg) rotate(-6deg) scale(0.82);
  }

  .gallery-slide.is-next {
    transform: translateX(calc(-50% + 180px)) rotateY(-24deg) rotate(6deg) scale(0.82);
  }

  .gallery-slide.is-far-prev,
  .gallery-slide.is-far-next {
    opacity: 0;
  }

  .contact-tile-wide {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .hero-word {
    left: 110px;
    top: 88px;
    font-size: clamp(3rem, 16vw, 6rem);
  }

  .hero-copy h1 {
    /* max-width: 9.5ch; */
    /* font-size: clamp(2.35rem, 12vw, 4rem); */
	max-width: 100%;
        font-size: clamp(2.35rem, 12vw, 2rem);
		 line-height: 1.2;
  }

  .hero-stage {
    min-height: 440px;
    padding-bottom: 0;
  }

  .hero-main-frame img {
    height: 420px;
  }

  .hero-float-card {
    display: none;
  }

  .hero-panel {
    /* position: static; */
    /* max-width: none; */
    /* margin-top: 16px; */
	display: none;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-strip-media img {
    height: 220px;
  }

  .benefit-card {
    min-height: auto;
  }

  .gallery-carousel {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-stage {
    min-height: 500px;
  }

  .gallery-slide {
    width: min(100%, 320px);
  }

  .gallery-slide.is-prev,
  .gallery-slide.is-next {
    opacity: 0.26;
  }

  .gallery-control {
    width: 52px;
    height: 52px;
  }

  .gallery-control-prev {
    justify-self: start;
  }

  .gallery-control-next {
    justify-self: end;
    margin-top: -66px;
  }

  .contacts-primary-card a {
    font-size: 1.9rem;
  }
}

:root {
  --benefits-bg-image: url("../img/workshop-tools.jpg");
  --benefits-bg-image2: url("../img/workshop-tools2.jpg");

}

.hero-copy {
  gap: 0;
}

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

.hero-metrics,
.hero-highlights {
  display: none !important;
}

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

.service-strip {
  grid-template-columns: 1fr;
  background: var(--color-white) !important;
  color: var(--color-text) !important;
}

.service-strip:hover {
  transform: translateY(-8px);
}

.service-strip-media {
  aspect-ratio: 16 / 10;
}

.service-strip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-strip-body {
  padding: 24px;
}

.service-strip .service-index {
  color: var(--color-black);
}

.service-button {
  width: fit-content;
  min-height: 48px;
  margin-top: 4px;
  padding-inline: 20px;
}

/* .benefits-section { */
  /* background: */
    /* linear-gradient(125deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.56)), */
    /* linear-gradient(180deg, rgba(248, 196, 23, 0.16), rgba(248, 196, 23, 0.06)), */
    /* var(--benefits-bg-image) center/cover no-repeat; */
/* } */

.benefit-card-arrow {
  display: none !important;
}

.gallery-section {
  padding-bottom: clamp(120px, 12vw, 180px);
}

.gallery-carousel {
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  gap: 18px;
}

.gallery-stage {
  min-height: auto;
  overflow: hidden;
  perspective: none;
}

.gallery-track {
  display: flex;
  align-items: flex-start;
  transition: transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.gallery-slide {
  position: static;
  left: auto;
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none !important;
  filter: none !important;
}

.gallery-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: 30px;
  object-fit: contain;
  box-shadow: var(--shadow-hard);
  background: var(--color-white);
}

.gallery-slide figcaption {
  display: none;
}

.gallery-dots {
  margin-top: 18px;
}

.gallery-section + .reviews-section {
  margin-top: 72px;
}

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

.contact-tile-map {
  padding: 18px;
}

.contact-map-frame {
  overflow: hidden;
  min-height: 320px;
  border-radius: 24px;
  border: 1px solid var(--color-line);
  background: #ded8ca;
}

.contact-map-frame iframe {
  width: 100%;
  min-height: 320px;
  height: 100%;
  border: 0;
}

.contact-tile-wide {
  grid-column: span 2;
}

.floating-call,
.floating-top {
  position: fixed;
  bottom: 24px;
  z-index: 45;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-hard);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.floating-call {
  left: 24px;
  position: fixed;
  background: var(--color-yellow);
  color: var(--color-black);
  isolation: isolate;
  animation: floating-call-bob 3.2s ease-in-out infinite;
}

.floating-call::before,
.floating-call::after {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border: 1px solid rgba(248, 196, 23, 0.56);
  border-radius: 50%;
  opacity: 0;
  animation: floating-call-ring 3.2s ease-out infinite;
}

.floating-call::after {
  animation-delay: 1.2s;
}

.floating-cooperation {
  position: fixed;
  right: 24px;
  bottom: 98px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(248, 196, 23, 0.34);
  border-radius: 999px;
  background: linear-gradient(135deg, #f8c417 0%, #ffd44f 100%);
  color: var(--color-black);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: var(--shadow-hard);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  isolation: isolate;
  animation: floating-cooperation-bob 3.8s ease-in-out infinite;
}

.floating-cooperation::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(248, 196, 23, 0.44);
  border-radius: 999px;
  opacity: 0;
  animation: floating-cooperation-pulse 3.8s ease-out infinite;
}

.floating-cooperation.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-top {
  right: 24px;
  background: rgba(11, 11, 11, 0.92);
  color: var(--color-white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

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

.floating-call:hover,
.floating-cooperation:hover,
.floating-top:hover {
  transform: translateY(-3px);
}

.floating-call:hover,
.floating-call:focus-visible {
  animation-play-state: paused;
}

.floating-cooperation:hover,
.floating-cooperation:focus-visible {
  animation-play-state: paused;
}

.floating-call:hover::before,
.floating-call:hover::after,
.floating-call:focus-visible::before,
.floating-call:focus-visible::after {
  animation-play-state: paused;
}

.floating-cooperation:hover::before,
.floating-cooperation:focus-visible::before {
  animation-play-state: paused;
}

.floating-call svg,
.floating-top svg {
  width: 28px;
  height: 28px;
}

@keyframes floating-call-bob {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  10% {
    transform: translateY(-2px) scale(1.04);
  }

  16% {
    transform: translateY(-2px) rotate(-10deg) scale(1.06);
  }

  22% {
    transform: translateY(-2px) rotate(8deg) scale(1.06);
  }

  28% {
    transform: translateY(-1px) rotate(-6deg) scale(1.03);
  }

  34% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes floating-call-ring {
  0% {
    transform: scale(0.88);
    opacity: 0;
  }

  18% {
    opacity: 0.45;
  }

  56% {
    opacity: 0;
  }

  100% {
    transform: scale(1.62);
    opacity: 0;
  }
}

@keyframes floating-cooperation-bob {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  16% {
    transform: translateY(-2px) scale(1.03);
  }

  28% {
    transform: translateY(-4px) scale(1.04);
  }

  42% {
    transform: translateY(-1px) scale(1.01);
  }
}

@keyframes floating-cooperation-pulse {
  0% {
    transform: scale(0.94);
    opacity: 0;
  }

  18% {
    opacity: 0.42;
  }

  60% {
    opacity: 0;
  }

  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-section + .reviews-section {
    margin-top: 56px;
  }

  .floating-cooperation {
    right: 16px;
    bottom: 86px;
    min-height: 50px;
    padding: 0 16px;
    font-size: 0.78rem;
  }
}

@media (max-width: 780px) {
  .services-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .contact-tile-wide {
    grid-column: span 1;
  }

  .gallery-carousel {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 10px;
  }
}

@media (max-width: 720px) {
  .gallery-section {
    padding-bottom: 104px;
  }

  .gallery-slide img {
    border-radius: 22px;
  }

  .gallery-section + .reviews-section {
    margin-top: 40px;
  }

  .floating-call,
  .floating-top {
    width: 56px;
    height: 56px;
    bottom: 18px;
  }

  .floating-call {
    left: 16px;
  }

  .floating-top {
    right: 16px;
  }
}

:root {
  --hero-bg-image: url("../img/toolwall.jpg");
  --faq-bg-image: url("../img/toolwall.jpg");
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 60;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: none;
}

.site-header .brand-name,
.site-header .header-phone,
.site-header .site-nav a {
  color: var(--color-white);
}

.site-header .brand-subline {
  color: rgba(255, 255, 255, 0.72);
}

.site-header .header-phone {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.site-header .site-nav a {
  background: transparent;
  border-color: transparent;
}

.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible,
.site-header .header-phone:hover,
.site-header .header-phone:focus-visible {
  color: var(--color-yellow);
}

.site-header .nav-toggle {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.site-header .nav-toggle span {
  background: var(--color-white);
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: calc(var(--header-height) + clamp(28px, 4vw, 56px));
  /* background: */
    /* linear-gradient(100deg, rgba(7, 7, 7, 0.88) 0%, rgba(7, 7, 7, 0.76) 40%, rgba(7, 7, 7, 0.58) 100%), */
    /* linear-gradient(180deg, rgba(248, 196, 23, 0.14), rgba(248, 196, 23, 0.04)), */
    /* var(--hero-bg-image) center/cover no-repeat; */
	background:
    linear-gradient(120deg, rgba(9, 9, 9, 0.92), rgba(9, 9, 9, 0.8)),
    linear-gradient(180deg, rgba(248, 196, 23, 0.18), rgba(248, 196, 23, 0.05)),
    url("../img/custom/custom 2.jpg") center/cover no-repeat;
	
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(248, 196, 23, 0.22), transparent 26rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%);
  pointer-events: none;
}

.hero .container,
.benefits-section .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: center;
}

.hero-media {
  position: relative;
}

.hero-stage {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-hard);
}

.hero-main-frame {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

.hero-main-frame img {
  filter: saturate(1.05) contrast(1.04);
}

.hero-float-card {
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-panel {
  background: rgba(248, 196, 23, 0.96);
  color: var(--color-black);
}

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

.hero-text {
  color: rgba(255, 255, 255, 0.82);
}

.hero-word {
  color: rgba(255, 255, 255, 0.06);
  z-index: 1;
}

/* .benefits-section { */
  /* background: #0a0a0a; */
/* } */

/* .benefits-section::before { */
  /* content: ""; */
  /* position: absolute; */
  /* inset: 0; */
  /* background: var(--benefits-bg-image) center center / cover no-repeat; */
  /* opacity: 0.62; */
  /* filter: saturate(1.04) contrast(1.02); */
  /* pointer-events: none; */
/* } */

.benefits-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.76) 0%, rgba(5, 5, 5, 0.5) 36%, rgba(5, 5, 5, 0.22) 66%, rgba(5, 5, 5, 0.1) 100%),
    linear-gradient(180deg, rgba(248, 196, 23, 0.05), rgba(248, 196, 23, 0));
  pointer-events: none;
}

.benefit-card {
  background: rgba(10, 10, 10, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(248, 196, 23, 0.72);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.32);
}

.faq-section {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(120deg, rgba(9, 9, 9, 0.92), rgba(9, 9, 9, 0.64)),
    linear-gradient(180deg, rgba(248, 196, 23, 0.18), rgba(248, 196, 23, 0.05)),
    url("../img/workshop-tools2.jpg") center/cover no-repeat;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--faq-bg-image) center center / cover no-repeat;
  opacity: 0.78;
  pointer-events: none;
}

.faq-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(7, 7, 7, 0.72) 0%, rgba(7, 7, 7, 0.52) 34%, rgba(7, 7, 7, 0.22) 100%),
    linear-gradient(180deg, rgba(248, 196, 23, 0.06), rgba(248, 196, 23, 0.015));
  pointer-events: none;
}

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

.faq-item {
  background: rgba(10, 10, 10, 0.52);
  backdrop-filter: blur(8px);
}

.faq-answer {
  display: none;
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  overflow: visible;
}

.gallery-section {
  padding-bottom: clamp(92px, 10vw, 140px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(18px, 2.2vw, 28px);
  margin-top: 40px;
  align-items: stretch;
}

.gallery-tile {
  margin: 0;
  height: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: linear-gradient(180deg, #ffffff, #f5f1e6);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.gallery-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-tile:hover img {
  transform: scale(1.04);
}

.gallery-section + .reviews-section {
  margin-top: 88px;
}

.contacts-section {
  background:
    linear-gradient(180deg, #ffbc00 0%, #efe4bd 100%);
}

.contacts-reference {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(24px, 3vw, 34px);
  margin-top: 38px;
  align-items: stretch;
}

.contacts-details {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
}

.contacts-phone-list {
  display: grid;
  gap: 16px;
}

.contact-line {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 24px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: linear-gradient(180deg, #fffef9 0%, #f7f1df 100%);
  color: var(--color-black);
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-line::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -24px;
  width: 110px;
  height: 110px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  transform: rotate(18deg);
}

.contact-line > * {
  position: relative;
  z-index: 1;
}

.contact-line:hover,
.contact-line:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(248, 196, 23, 0.68);
  box-shadow: 0 24px 50px rgba(17, 17, 17, 0.16);
}

.contact-line span,
.contacts-service-area span,
.contact-map-copy span,
.contacts-quick-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-line strong {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.1;
}

.contact-line small {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
}

.contact-line span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.contacts-service-area {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, #111111 0%, #1b1b1b 100%);
  color: var(--color-white);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.12);
}

.contacts-service-area::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -24px;
  width: 110px;
  height: 110px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(18deg);
}

.contacts-service-area > * {
  position: relative;
  z-index: 1;
}

.contacts-service-area span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.contacts-service-area strong {
  font-size: clamp(1.55rem, 3vw, 1.95rem);
  line-height: 1.1;
}

.contacts-service-area p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.contacts-service-districts {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.55;
}

.contacts-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-secondary-action {
  border-color: rgba(17, 17, 17, 0.14);
  color: var(--color-black);
  background: rgba(255, 255, 255, 0.62);
}

.contact-secondary-action:hover,
.contact-secondary-action:focus-visible {
  border-color: var(--color-black);
  background: var(--color-white);
}

.contacts-quick-card {
  display: grid;
  gap: 20px;
  padding: clamp(26px, 3vw, 36px);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.3), transparent 34%),
    linear-gradient(155deg, rgba(248, 196, 23, 0.98), rgba(229, 178, 12, 0.92));
  color: var(--color-black);
  box-shadow: var(--shadow-hard);
}

.contacts-quick-card h3,
.contact-map-copy h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  line-height: 1.08;
}

.contacts-quick-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.78);
}

.contacts-quick-phone {
  display: inline-block;
  width: fit-content;
  color: inherit;
  text-decoration: none;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
}

.contacts-quick-card .button-primary {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}

.contacts-quick-card .button-primary:hover,
.contacts-quick-card .button-primary:focus-visible {
  background: var(--color-white);
  color: var(--color-black);
}

.contacts-brand-badge {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(17, 17, 17, 0.08);
}

.contacts-brand-badge p {
  margin: 4px 0 0;
  color: rgba(17, 17, 17, 0.7);
}

.contact-map-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(20px, 2.6vw, 30px);
  align-items: center;
  margin-top: 28px;
  padding: clamp(22px, 2.8vw, 30px);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(11, 11, 11, 0.98), rgba(11, 11, 11, 0.92));
  color: var(--color-white);
  box-shadow: var(--shadow-hard);
}

.contact-map-copy p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-map-frame {
  min-height: 360px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #d6c996;
}

.contact-map-frame iframe {
  min-height: 360px;
}

@media (max-width: 1080px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contacts-reference,
  .contact-map-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header .site-nav {
    background: rgba(8, 8, 8, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-hard);
  }

  .hero {
    padding-top: calc(var(--header-height) + 132px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy {
    max-width: none;
  }
}

@media (max-width: 1140px) {
  .site-header .site-nav a {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 720px) {
  .site-header {
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contacts-details,
  .contacts-quick-card,
  .contact-map-panel {
    padding: 22px;
    border-radius: 26px;
  }

  .contact-line,
  .contacts-service-area,
  .contacts-brand-badge {
    padding: 18px;
  }
}

.hero-stage {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-main-frame {
  transform: none !important;
}

.service-strip {
  background: var(--color-white) !important;
  color: var(--color-text) !important;
}

.service-strip .service-index {
  background: #f8c417 !important;
  color: var(--color-black) !important;
}

.service-strip-body {
  align-content: stretch;
}

.service-strip-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.service-strip-head h3 {
  margin: 0;
  white-space: nowrap;
}

.service-button {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.contacts-map-card {
  display: flex;
  height: 100%;
  min-height: 100%;
  padding: 0;
  border-radius: 32px;
  background: transparent;
  box-shadow: none;
}

.contacts-map-card .contact-map-frame {
  flex: 1 1 auto;
  min-height: 100%;
  height: 100%;
  border-radius: inherit;
  border: 0;
  background: transparent;
}

.contacts-map-card .contact-map-frame iframe {
  display: block;
  width: 100%;
  min-height: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  body.menu-open {
    overflow: hidden;
  }

  .header-shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "brand phone toggle";
    align-items: center;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    grid-area: toggle;
    justify-self: end;
  }

  .header-phone {
    grid-area: phone;
    display: inline-flex;
    justify-content: center;
    justify-self: center;
    align-items: center;
    min-width: 0;
    max-width: clamp(138px, 42vw, 188px);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    font-size: 0.84rem;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    right: auto;
    width: 100vw;
    margin-left: -50vw;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
    gap: 8px;
    padding: 14px 16px 18px;
    border-radius: 0 0 24px 24px;
    background: rgba(8, 8, 8, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
    box-shadow: var(--shadow-hard);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    overflow: visible;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header .site-nav a {
    display: block;
    width: 100%;
    justify-self: stretch;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    text-align: left;
    box-sizing: border-box;
  }

  .brand {
    grid-area: brand;
    gap: 10px;
    min-width: 0;
  }

  .brand-subline {
    display: none;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .site-header .header-phone {
    color: var(--color-white);
  }

  .hero {
    padding-top: calc(var(--header-height) + 17px);
  }

  .hero-media {
    order: 1;
  }

  .hero-copy {
    order: 2;
  }
}

@media (max-width: 720px) {
  .contacts-map-card {
    width: 100%;
    padding: 0;
    border-radius: 26px;
  }

  .contacts-map-card .contact-map-frame {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .contacts-map-card .contact-map-frame iframe {
    min-height: 100%;
  }

  .site-nav {
    width: 100vw;
    padding: 12px 12px 16px;
  }

  .header-phone {
    max-width: clamp(124px, 46vw, 200px);
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-call,
  .floating-call::before,
  .floating-call::after,
  .floating-cooperation,
  .floating-cooperation::before {
    animation: none;
  }
}

.audience-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 32px;
  padding: 10px;
  list-style: none;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 242, 231, 0.96));
  border: 1px solid rgba(11, 11, 11, 0.08);
  box-shadow: 0 28px 60px rgba(36, 28, 9, 0.12);
}

.audience-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 18px 20px;
}

.audience-item + .audience-item {
  border-top: 1px solid rgba(11, 11, 11, 0.08);
}

.audience-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-width: 52px;
  height: 52px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-yellow), #ffd65c);
  color: var(--color-black);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 28px rgba(248, 196, 23, 0.28);
}

.audience-item-copy {
  display: grid;
  gap: 8px;
  padding-top: 2px;
}

.audience-item-copy h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.05;
}

.audience-item-copy p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.72;
}

@media (max-width: 720px) {
  .audience-list {
    padding: 8px;
    border-radius: 24px;
  }

  .audience-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .audience-index {
    width: 46px;
    min-width: 46px;
    height: 46px;
    padding: 0;
    font-size: 0.95rem;
  }
}

.reviews-section {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.7), transparent 16rem),
    linear-gradient(180deg, rgba(248, 196, 23, 0.94) 0%, rgba(248, 196, 23, 0.14) 34%, rgba(255, 255, 255, 0) 100%),
    var(--color-white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.review-card {
  --review-text-color: var(--color-white);
  --review-meta-color: rgba(255, 255, 255, 0.66);
  --review-pill-bg: rgba(255, 255, 255, 0.08);
  --review-pill-border: rgba(255, 255, 255, 0.1);
  --review-quote-color: rgba(255, 255, 255, 0.12);
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 380px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, #111111 0%, #1b1b1b 100%);
  color: var(--review-text-color);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  line-height: 1;
  font-weight: 800;
  color: var(--review-quote-color);
}

.review-card::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(18deg);
}

.review-card:hover,
.review-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(248, 196, 23, 0.68);
  box-shadow: 0 24px 50px rgba(17, 17, 17, 0.16);
}

.review-card > * {
  position: relative;
  z-index: 1;
}

.review-card-featured {
  grid-column: span 1;
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-author {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.review-author h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.review-avatar {
  width: 68px;
  height: 68px;
  min-width: 68px;
  min-height: 68px;
  margin-bottom: 0;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.16);
}

.review-meta {
  margin: 0;
  color: var(--review-meta-color);
}

.review-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.78;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.review-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--review-pill-border);
  border-radius: 999px;
  background: var(--review-pill-bg);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-card {
    min-height: 350px;
  }

  .review-card-featured {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card,
  .review-card-featured {
    grid-column: span 1;
    min-height: auto;
    padding: 24px;
  }

  .review-card::before {
    top: 12px;
    right: 14px;
    font-size: 4rem;
  }

  .review-card::after {
    right: -16px;
    bottom: -22px;
    width: 92px;
    height: 92px;
    border-radius: 24px;
  }

  .review-card-top {
    gap: 14px;
  }

  .review-avatar,
  .review-card-featured .review-avatar {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
  }
}

.cooperation-section {
  background:
    radial-gradient(circle at top right, rgba(248, 196, 23, 0.26), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 245, 236, 1) 100%);
}

.cooperation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
}

.cooperation-copy {
  display: grid;
  align-content: start;
}

.cooperation-copy .section-intro {
  max-width: 70ch;
}

.cooperation-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.cooperation-item {
  display: grid;
  gap: 10px;
  padding: 22px 24px;
  border: 1px solid rgba(11, 11, 11, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.cooperation-item strong {
  font-size: clamp(1.2rem, 1.8vw, 1.38rem);
  line-height: 1.1;
}

.cooperation-item p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.72;
}

.cooperation-visual {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 16px;
  height: 100%;
}

.cooperation-photo {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(11, 11, 11, 0.08);
  background: var(--color-black);
  box-shadow: var(--shadow-hard);
  min-height: 0;
  height: 100%;
}

.cooperation-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.08) 0%, rgba(11, 11, 11, 0.62) 100%),
    linear-gradient(135deg, rgba(248, 196, 23, 0.16), transparent 42%);
  pointer-events: none;
}

.cooperation-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cooperation-photo-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(11, 11, 11, 0.54);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  z-index: 1;
}

.cooperation-photo-badge span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(248, 196, 23, 0.28);
  border-radius: 999px;
  background: rgba(248, 196, 23, 0.14);
  color: #ffe18d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cooperation-photo-badge strong {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.cooperation-button {
  width: 100%;
  min-height: 58px;
}

.cooperation-note {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .cooperation-grid {
    grid-template-columns: 1fr;
  }

  .cooperation-visual {
    height: auto;
    grid-template-rows: auto auto auto;
  }

  .cooperation-photo {
    height: auto;
  }

  .cooperation-photo img {
    height: auto;
    aspect-ratio: 1.05 / 1;
  }
}

@media (max-width: 720px) {
  .cooperation-item {
    padding: 18px;
    border-radius: 20px;
  }

  .cooperation-photo {
    border-radius: 26px;
  }

  .cooperation-photo-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
    border-radius: 24px;
  }
}

.workflow {
  position: relative;
  overflow: clip;
  /* background: */
    /* linear-gradient(120deg, rgba(9, 9, 9, 0.92), rgba(9, 9, 9, 0.64)), */
    /* linear-gradient(180deg, rgba(248, 196, 23, 0.18), rgba(248, 196, 23, 0.05)), */
    /* var(--workflow-bg-image, url("../img/workshop-tools.jpg")) center/cover no-repeat; */
	 background:
    linear-gradient(120deg, rgba(9, 9, 9, 0.92), rgba(9, 9, 9, 0.64)),
    linear-gradient(180deg, rgba(248, 196, 23, 0.18), rgba(248, 196, 23, 0.05)),
    url("../img/custom/custom 11.jpg") center/cover no-repeat;
}

.workflow .section-head {
  /* max-width: 760px; */
}

.workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  counter-reset: workflow-step;
}

.workflow-grid::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(248, 196, 23, 0.24), rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.workflow-card {
  position: relative;
  min-height: 250px;
  padding: 32px 30px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.workflow-card::before {
  counter-increment: workflow-step;
  content: counter(workflow-step, decimal-leading-zero);
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(4.25rem, 8vw, 5.6rem);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.08);
}

.workflow-card:nth-child(2n) {
  transform: translateY(34px);
}

.workflow-card:hover,
.workflow-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(248, 196, 23, 0.5);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.26);
}

.workflow-card:nth-child(2n):hover,
.workflow-card:nth-child(2n):focus-within {
  transform: translateY(28px);
}

.workflow-card > * {
  position: relative;
  z-index: 1;
}

.workflow-card span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  margin-bottom: 18px;
  padding: 0 14px;
  border: 1px solid rgba(248, 196, 23, 0.28);
  border-radius: 999px;
  background: rgba(248, 196, 23, 0.14);
  color: #ffe18d;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workflow-card h3 {
  max-width: 16ch;
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.1vw, 1.9rem);
  line-height: 1.04;
}

.workflow-card p {
  max-width: 34ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.58;
}

@media (max-width: 980px) {
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-grid::before {
    display: none;
  }

  .workflow-card,
  .workflow-card:nth-child(2n) {
    min-height: auto;
    transform: none;
  }

  .workflow-card:hover,
  .workflow-card:focus-within,
  .workflow-card:nth-child(2n):hover,
  .workflow-card:nth-child(2n):focus-within {
    transform: translateY(-4px);
  }
}

@media (max-width: 720px) {
  .workflow-card {
    padding: 26px 22px 26px;
  }

  .workflow-card::before {
    top: 14px;
    right: 14px;
    font-size: 3.8rem;
  }

  .workflow-card h3 {
    max-width: none;
  }

  .workflow-card p {
    max-width: none;
    padding-right: 22px;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.benefit-card {
  position: relative;
  min-height: 250px;
  padding: 32px 30px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.benefit-card::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(18deg);
}

.benefit-card:hover,
.benefit-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(248, 196, 23, 0.5);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.26);
}

.benefit-card > * {
  position: relative;
  z-index: 1;
}

.benefit-card-index {
  position: absolute;
  top: 16px;
  right: 18px;
  display: block;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(4.25rem, 8vw, 5.6rem);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.08);
  z-index: 0;
  pointer-events: none;
}

.benefit-card h3 {
  max-width: none;
  margin-bottom: 14px;
  padding-right: clamp(4.5rem, 7vw, 6rem);
  font-size: clamp(1.45rem, 2.1vw, 1.85rem);
  line-height: 1.04;
}

.benefit-card p {
  max-width: none;
  margin-bottom: 0;
  padding-right: clamp(2.75rem, 5vw, 4rem);
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.58;
}

@media (max-width: 1100px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card {
    min-height: 230px;
  }
}

@media (max-width: 720px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
    padding: 26px 22px 26px;
  }

  .benefit-card-index {
    top: 14px;
    right: 14px;
    font-size: 3.8rem;
  }

  .benefit-card h3,
  .benefit-card p {
    max-width: none;
    padding-right: 0;
  }

  .benefit-card::after {
    right: -16px;
    bottom: -22px;
    width: 92px;
    height: 92px;
    border-radius: 24px;
  }
}
