:root {
  --color-primary: #f26322;
  --color-primary-strong: #ff5a1f;
  --color-primary-hover: #e55216;
  --color-text: #171717;
  --color-text-soft: #343a3b;
  --color-muted: #5f6467;
  --color-section: #f6f7f7;
  --color-section-2: #f8f8f8;
  --color-peach: #fff3ee;
  --color-peach-strong: #ffe7d7;
  --color-card: #ffffff;
  --color-border: #e8eaec;
  --color-footer: #171b1c;
  --color-footer-2: #1b2020;
  --color-success: #f26322;
  --color-problem: #f26322;
  --color-telegram: #f26322;
  --color-max: #f26322;
  --shadow-soft: 0 8px 28px rgba(16, 24, 40, 0.06);
  --shadow-card: 0 16px 42px rgba(16, 24, 40, 0.08);
  --shadow-orange: 0 16px 28px rgba(242, 99, 34, 0.26);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --container: min(1220px, calc(100% - 48px));
  --header-height: 78px;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
  color: var(--color-text);
  font-family: var(--font-family, Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open,
body.is-modal-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.section {
  position: relative;
}

.section-title {
  margin: 0 0 30px;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.section-title--center {
  text-align: center;
}

.icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

:focus-visible {
  outline: 3px solid rgba(242, 99, 34, 0.35);
  outline-offset: 3px;
}

.card-hover {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(242, 99, 34, 0.28);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(17, 24, 28, 0.07);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
  color: var(--color-text);
}

.logo__mark {
  width: 42px;
  height: 42px;
  color: var(--color-primary);
}

.logo__image {
  width: 124px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
}

.logo__text {
  display: grid;
  gap: 0;
  line-height: 1;
}

.logo__text strong {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.logo__text small {
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.header-nav,
.mobile-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  position: relative;
  color: #222;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: color 160ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  white-space: nowrap;
}

.header-contact__icon {
  width: 20px;
  height: 20px;
  color: var(--color-text-soft);
}

.header-contact span {
  display: grid;
  gap: 1px;
}

.header-contact strong {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.header-contact small {
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 700;
}

.header__messengers {
  display: flex;
  gap: 8px;
  align-items: center;
}

.messenger {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  transition: transform 160ms ease, filter 160ms ease;
}

.messenger:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.messenger--max {
  color: var(--color-max);
}

.messenger--telegram {
  color: var(--color-telegram);
}

.messenger__icon {
  width: 34px;
  height: 34px;
}

.btn {
  --btn-bg: #fff;
  --btn-border: var(--color-border);
  --btn-color: var(--color-text);
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--btn-border);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-color);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.btn--primary {
  --btn-bg: var(--color-primary-strong);
  --btn-border: var(--color-primary-strong);
  --btn-color: #fff;
  box-shadow: var(--shadow-orange);
}

.btn--primary:hover {
  --btn-bg: var(--color-primary-hover);
  --btn-border: var(--color-primary-hover);
  box-shadow: 0 18px 34px rgba(229, 82, 22, 0.28);
}

.btn--outline {
  --btn-bg: rgba(255, 255, 255, 0.78);
  --btn-border: #b9d7d6;
  --btn-color: #16606a;
  box-shadow: 0 8px 22px rgba(33, 84, 90, 0.05);
}

.btn--outline:hover {
  --btn-border: rgba(242, 99, 34, 0.4);
  --btn-color: var(--color-primary-hover);
}

.btn__icon {
  width: 24px;
  height: 24px;
}

.btn--messenger-inline .btn__icon {
  width: 26px;
  height: 26px;
}

.header__cta {
  min-height: 42px;
  padding-inline: 22px;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 50px;
  height: 50px;
  margin-left: auto;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  color: var(--color-text);
  align-items: center;
  justify-content: center;
}

.menu-toggle__icon {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
}

.menu-toggle__icon--close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon--open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon--close {
  display: block;
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 auto;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 20px 44px rgba(17, 24, 28, 0.1);
}

.mobile-menu__inner {
  padding: 22px 0 26px;
  display: grid;
  gap: 20px;
}

.mobile-nav {
  align-items: stretch;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav .nav-link {
  padding: 13px 0;
  font-size: 18px;
}

.mobile-menu__contacts,
.mobile-menu__actions {
  display: grid;
  gap: 12px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: #fff;
}

.hero__media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 63%;
  background-image:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.94) 10%, rgba(255,255,255,0.48) 30%, rgba(255,255,255,0.08) 47%, rgba(255,255,255,0) 68%),
    linear-gradient(0deg, #fff 0%, rgba(255,255,255,0) 18%),
    url('../assets/hero-formwork-quality.webp');
  background-size: cover, cover, cover;
  background-position: left center, center, center right;
  z-index: 0;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 54% 30%, rgba(255, 255, 255, 0) 0 45%, rgba(255, 255, 255, 0.28) 76%, rgba(255, 255, 255, 0.58) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 660px;
  padding-top: 64px;
}

.hero__content {
  width: min(610px, 54%);
}

.hero h1 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(42px, 4.04vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.hero h1 span {
  color: var(--color-primary);
}

.hero__lead {
  max-width: 552px;
  margin: 25px 0 0;
  color: var(--color-text-soft);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 550;
}

.hero__benefits {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 610px;
}

.benefit-mini {
  min-width: 0;
}

.benefit-mini__icon {
  width: 45px;
  height: 45px;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.benefit-mini__icon .icon {
  width: 45px;
  height: 45px;
}

.benefit-mini h3 {
  margin: 0;
  color: #202020;
  font-size: 13px;
  line-height: 1.34;
  font-weight: 900;
  letter-spacing: -0.015em;
}

.hero__actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__actions .btn--primary {
  min-width: 244px;
}

.hero__notice {
  margin: 17px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-text-soft);
  font-size: 13px;
  font-weight: 750;
}

.hero__notice .icon {
  width: 18px;
  height: 18px;
  color: var(--color-text-soft);
}

.hero__trust-card {
  position: absolute;
  right: 52px;
  bottom: 122px;
  width: 345px;
  min-height: 122px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border: 1px solid rgba(232, 234, 236, 0.9);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(17, 24, 28, 0.14);
}

.hero__trust-card .icon {
  width: 72px;
  height: 72px;
  color: var(--color-primary);
}

.hero__trust-card strong {
  font-size: 18px;
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: -0.025em;
}

/* Problem */
.problem-section {
  padding: 64px 0 58px;
  background: var(--color-section);
}

.problem-section__top {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 42px;
  align-items: start;
}

.section-copy h2,
.predictability-copy h2,
.projects-copy h2,
.faq-section h2 {
  margin: 0;
  font-size: clamp(27px, 2.7vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.section-copy p,
.predictability-copy p,
.projects-copy p {
  margin: 20px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.62;
  font-weight: 600;
}

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

.problem-card {
  min-height: 165px;
  padding: 28px 22px 22px;
  border: 1px solid var(--color-border);
  border-radius: 17px;
  background: #fff;
}

.problem-card__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 21px;
  display: grid;
  place-items: center;
  color: var(--color-problem);
}

.problem-card__icon .icon {
  width: 44px;
  height: 44px;
}

.problem-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.process-timeline {
  margin-top: 30px;
  padding: 20px 30px 26px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #fff;
}

.process-timeline__caption {
  margin: 0 0 17px;
  color: var(--color-text-soft);
  font-size: 12px;
  font-weight: 800;
}

.process-timeline__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr 30px) 1fr;
  align-items: start;
  gap: 8px;
}

.process-timeline__unit {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 11px;
  text-align: center;
}

.process-timeline__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f6f7f7;
  color: #111;
}

.process-timeline__icon .icon {
  width: 34px;
  height: 34px;
}

.process-timeline__unit span {
  max-width: 112px;
  font-size: 12px;
  line-height: 1.28;
  font-weight: 800;
}

.process-timeline__unit.is-danger .process-timeline__icon {
  background: rgba(217, 45, 58, 0.1);
  color: #e31822;
}

.process-timeline__unit.is-danger span {
  color: #171717;
}

.process-timeline__arrow {
  align-self: center;
  justify-self: center;
  margin-top: 19px;
  color: #000;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
}

/* Predictability */
.predictability-section {
  padding: 58px 0 58px;
  background: var(--color-peach);
  overflow: hidden;
}

.predictability-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.predictability-copy h2 span {
  color: var(--color-primary);
}

.predictability-copy p {
  max-width: 380px;
}

.predictability-note {
  max-width: 388px;
  margin-top: 31px;
  padding: 18px 19px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(242, 99, 34, 0.12);
  border-radius: 14px;
  background: #ffe9dd;
  color: #634333;
  font-size: 13px;
  line-height: 1.48;
  font-weight: 650;
}

.predictability-note .icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.daya-process-card {
  padding: 24px 24px 22px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.daya-process-card h3 {
  margin: 0 0 16px;
  color: var(--color-success);
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
}

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

.daya-process-card__item {
  position: relative;
  min-height: 48px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  color: #18201b;
}

.daya-process-card__icon {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--color-success);
}

.daya-process-card__icon .icon {
  width: 31px;
  height: 31px;
}

.daya-process-card__item strong {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}

.daya-process-card__arrow {
  position: absolute;
  left: 16px;
  bottom: -10px;
  color: #222;
  font-size: 24px;
  line-height: 1;
  z-index: 2;
}

.daya-process-card__item.is-success {
  margin-top: 10px;
  min-height: 72px;
  padding: 9px 14px 9px 0;
  border-radius: 18px;
  background: rgba(47, 174, 100, 0.08);
  color: #136b37;
}

.daya-process-card__item.is-success .daya-process-card__icon {
  width: 58px;
  height: 58px;
  color: var(--color-success);
}

.daya-process-card__item.is-success .daya-process-card__icon .icon {
  width: 58px;
  height: 58px;
}

.predictability-quote {
  position: relative;
  min-height: 260px;
  margin: 0;
  display: flex;
  align-items: center;
  padding: 32px 44px 32px 26px;
  color: #171717;
}

.predictability-quote__icon {
  position: absolute;
  left: 0;
  top: 22px;
  width: 42px;
  height: 42px;
  color: var(--color-primary);
}

.predictability-quote p {
  position: relative;
  z-index: 2;
  max-width: 354px;
  margin: 0;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.28;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.logo-watermark {
  position: absolute;
  right: -6px;
  top: 56px;
  width: 150px;
  height: 150px;
  color: rgba(242, 99, 34, 0.08);
}

/* Equipment benefits */
.equipment-section {
  padding: 48px 0 52px;
  background: #fff;
}

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

.equipment-card {
  min-height: 160px;
  padding: 25px 22px 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 17px;
  border: 1px solid var(--color-border);
  border-radius: 17px;
  background: #fff;
}

.equipment-card__icon {
  width: 54px;
  height: 54px;
  color: var(--color-primary);
}

.equipment-card__icon .icon {
  width: 54px;
  height: 54px;
}

.equipment-card h3 {
  margin: 2px 0 9px;
  font-size: 15px;
  line-height: 1.24;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.equipment-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

/* Steps */
.steps-section {
  padding: 42px 0 54px;
  background: var(--color-section-2);
}

.steps-heading {
  margin-bottom: 26px;
  text-align: center;
}

.steps-heading h2 {
  margin: 0;
  font-size: clamp(28px, 2.7vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.steps-heading p {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

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

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}

.step-card__number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-primary-strong);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(242, 99, 34, 0.26);
}

.step-card__body {
  min-width: 0;
}

.step-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  color: #202020;
}

.step-card__icon .icon {
  width: 44px;
  height: 44px;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.26;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.step-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 650;
}

/* Projects */
.projects-section {
  padding: 58px 0 56px;
  background: #fff;
}

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

.projects-copy h2 {
  max-width: 330px;
}

.projects-copy p {
  max-width: 310px;
}

.client-logos {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.client-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 54px;
  padding: 8px 10px;
  border: 1px solid rgba(17, 24, 28, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 24, 28, 0.05);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.projects-carousel {
  position: relative;
  min-width: 0;
}

.projects-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 14px;
}

.projects-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(220, 81, 38, 0.24);
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 12px 26px rgba(17, 24, 28, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.projects-arrow:hover {
  transform: translateY(-1px);
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.projects-arrow .icon {
  width: 24px;
  height: 24px;
}

.projects-arrow--prev .icon {
  transform: rotate(90deg);
}

.projects-arrow--next .icon {
  transform: rotate(-90deg);
}

.projects-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  gap: 20px;
  padding: 2px 2px 8px;
  scrollbar-width: none;
}

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

.project-card {
  flex: 0 0 calc((100% - 40px) / 3);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: #fff;
  scroll-snap-align: start;
}

.project-card__image {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
}

.project-card__body {
  padding: 16px 18px 18px;
}

.project-card h3 {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.project-card ul {
  margin: 0;
  padding-left: 16px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 650;
}

.carousel-dots {
  margin-top: 17px;
  display: none;
  justify-content: center;
  gap: 8px;
}

.projects-carousel .carousel-dots {
  display: none;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #b8b8b8;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dot.is-active {
  width: 10px;
  background: var(--color-primary);
}

/* FAQ */
.faq-section {
  padding: 52px 0 32px;
  background: var(--color-section);
}

.faq-section h2 {
  margin-bottom: 24px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 28px;
  align-items: stretch;
}

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

.faq-accordion__column {
  display: grid;
  align-content: start;
  gap: 13px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
}

.faq-item__title {
  margin: 0;
}

.faq-item__button {
  width: 100%;
  min-height: 48px;
  padding: 0 18px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  text-align: left;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
}

.faq-item__chevron {
  width: 20px;
  height: 20px;
  color: #1f1f1f;
  transition: transform 180ms ease;
}

.faq-item__button[aria-expanded="true"] .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-item__panel {
  height: 0;
  overflow: hidden;
  transition: height 260ms ease;
}

.faq-item__panel p {
  margin: 0;
  padding: 0 20px 17px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.faq-layout__image {
  width: 100%;
  height: 100%;
  min-height: 202px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
}

.gallery-trigger::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(17, 24, 28, 0), rgba(17, 24, 28, 0.64));
  pointer-events: none;
}

.gallery-trigger span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(17, 24, 28, 0.16);
}

/* Footer + final CTA */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--color-footer);
  color: #fff;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 260px;
  background-image: linear-gradient(90deg, rgba(23,27,28,0.62), rgba(23,27,28,0.95)), url('../assets/dark-cta-texture.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  pointer-events: none;
}

.footer-cta {
  position: relative;
  z-index: 1;
  padding: 36px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.44fr);
  gap: 48px;
  align-items: start;
}

.footer-cta__intro {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: center;
}

.footer-cta__intro img {
  width: 240px;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  border-radius: 13px;
}

.footer-gallery-trigger {
  width: 240px;
  border-radius: 13px;
}

.footer-gallery-trigger img {
  display: block;
}

.footer-cta__intro h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.footer-cta__intro p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.footer-cta__intro .footer-cta__accent {
  color: var(--color-primary-strong);
  font-size: 19px;
  line-height: 1.25;
  font-weight: 900;
}

.footer-cta__form {
  padding-top: 2px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-field {
  position: relative;
  min-width: 0;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field label:not(.upload-area__label),
.contact-form > label > span:first-child {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(232, 234, 236, 0.92);
  border-radius: 8px;
  background: #fff;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 650;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input {
  height: 42px;
  padding: 0 16px;
}

textarea {
  min-height: 50px;
  resize: vertical;
  padding: 12px 16px;
}

input::placeholder,
textarea::placeholder {
  color: #8b9295;
}

input:focus,
textarea:focus {
  border-color: rgba(242, 99, 34, 0.72);
  box-shadow: 0 0 0 3px rgba(242, 99, 34, 0.13);
  outline: none;
}

input[aria-invalid="true"] {
  border-color: var(--color-problem);
}

.form-error {
  display: block;
  min-height: 13px;
  margin-top: 3px;
  color: #ff9b8e;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
}

.upload-area {
  position: relative;
  border: 1px solid rgba(232, 234, 236, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 160ms ease, background 160ms ease;
}

.upload-area.is-dragover {
  border-color: var(--color-primary);
  background: rgba(242, 99, 34, 0.08);
}

.upload-area__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-area__label {
  min-height: 58px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.upload-area__button {
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  background: #fff;
  color: var(--color-text-soft);
  font-size: 12px;
  font-weight: 900;
}

.upload-area__button .icon {
  width: 18px;
  height: 18px;
  color: var(--color-text-soft);
}

.upload-area__text {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 650;
}

.consent {
  margin-top: -2px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 650;
  text-align: center;
}

.consent input {
  width: 15px;
  height: 15px;
  margin: 1px 0 0;
  accent-color: var(--color-primary);
  flex: 0 0 auto;
}

.contact-form__submit {
  width: 100%;
  min-height: 44px;
  border-radius: 8px;
  font-size: 14px;
}

.contact-form__submit:disabled {
  opacity: 0.75;
  cursor: wait;
  transform: none;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 26px 0 30px;
  display: grid;
  grid-template-columns: 210px 190px 150px 150px 170px 1fr;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.logo--footer {
  color: #fff;
}

.logo--footer .logo__mark {
  color: var(--color-primary);
}

.logo--footer .logo__image {
  filter: none;
}

.logo--footer .logo__text small {
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom__brand {
  display: grid;
  align-content: start;
  gap: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 600;
}

.footer-bottom__col {
  display: grid;
  align-content: start;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 650;
}

.footer-bottom__col h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.footer-bottom__col a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 160ms ease;
}

.footer-bottom__col a:hover {
  color: #fff;
}

.footer-bottom__col .icon {
  width: 16px;
  height: 16px;
}

.footer-bottom__policy {
  justify-content: end;
  text-align: right;
}

.success-modal,
.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.success-modal[hidden],
.policy-modal[hidden] {
  display: none;
}

.success-modal__overlay,
.policy-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 15, 0.62);
}

.success-modal__panel {
  position: relative;
  width: min(430px, 100%);
  padding: 38px 34px 34px;
  border-radius: 20px;
  background: #fff;
  color: var(--color-text);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.success-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #f2f3f3;
  color: var(--color-text);
  font-size: 24px;
  line-height: 1;
}

.success-modal__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  color: var(--color-success);
}

.success-modal__icon .icon {
  width: 70px;
  height: 70px;
}

.success-modal h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
}

.success-modal p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 650;
}

.footer-policy-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-weight: 750;
  text-align: right;
  transition: color 160ms ease;
}

.footer-policy-link:hover {
  color: #fff;
}

.policy-modal__panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  padding: 34px 38px 36px;
  border-radius: 18px;
  background: #fff;
  color: var(--color-text);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.policy-modal__close {
  position: sticky;
  top: 0;
  float: right;
  width: 36px;
  height: 36px;
  margin: -18px -20px 4px 18px;
  border: 0;
  border-radius: 999px;
  background: #f2f3f3;
  color: var(--color-text);
  font-size: 24px;
  line-height: 1;
}

.policy-modal h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 900;
}

.policy-modal h3 {
  margin: 22px 0 8px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
}

.policy-modal p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.62;
  font-weight: 600;
}

.policy-modal__lead {
  color: var(--color-text-soft);
}

.policy-modal a {
  color: var(--color-primary-hover);
  font-weight: 850;
}

/* Responsive */
@media (max-width: 1240px) {
  :root {
    --container: min(1120px, calc(100% - 42px));
  }

  .header-nav,
  .header__actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero__content {
    width: min(590px, 60%);
  }

  .hero__trust-card {
    right: 22px;
  }

  .problem-section__top,
  .projects-layout {
    grid-template-columns: 310px 1fr;
    gap: 30px;
  }

  .predictability-grid {
    gap: 28px;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .footer-bottom__policy {
    justify-content: start;
    text-align: left;
  }
}

@media (max-width: 1040px) {
  .hero {
    min-height: 720px;
  }

  .hero__inner {
    min-height: 720px;
  }

  .hero__media {
    width: 68%;
    opacity: 0.92;
  }

  .hero__content {
    width: min(560px, 65%);
  }

  .hero__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 410px;
  }

  .hero__trust-card {
    bottom: 56px;
    width: 320px;
  }

  .problem-section__top {
    grid-template-columns: 1fr;
  }

  .problem-section__cards,
  .equipment-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-timeline__items {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }

  .process-timeline__arrow {
    display: none;
  }

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

  .predictability-quote {
    grid-column: 1 / -1;
    min-height: 190px;
  }

  .projects-layout {
    grid-template-columns: 1fr;
  }

  .projects-copy h2,
  .projects-copy p {
    max-width: 560px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout__image {
    max-height: 260px;
  }

  .footer-cta__intro {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 620px);
    --header-height: 68px;
  }

  body {
    font-size: 14px;
  }

  .site-header {
    height: var(--header-height);
  }

  .logo__mark {
    width: 36px;
    height: 36px;
  }

  .logo__image {
    width: 118px;
    height: 38px;
  }

  .logo__text strong {
    font-size: 20px;
  }

  .logo__text small {
    font-size: 9px;
  }

  .hero {
    min-height: unset;
    padding-bottom: 24px;
  }

  .hero__inner {
    min-height: unset;
    padding-top: 34px;
    display: grid;
  }

  .hero__content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(35px, 10vw, 44px);
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 15px;
  }

  .hero__benefits {
    margin-top: 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
  }

  .hero__actions {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .btn,
  .hero__actions .btn--primary {
    width: 100%;
    min-width: 0;
  }

  .hero__media {
    position: relative;
    width: var(--container);
    height: 360px;
    margin: 28px auto 0;
    border-radius: 20px;
    overflow: hidden;
    background-image:
      linear-gradient(0deg, rgba(255,255,255,0.75), rgba(255,255,255,0) 35%),
      url('../assets/hero-formwork-quality.webp');
    background-size: cover, cover;
    background-position: center, center;
  }

  .hero__media::after {
    display: none;
  }

  .hero__trust-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 350px);
    min-height: 104px;
    margin: 18px 0 0 auto;
    margin-left: auto;
    padding: 18px;
    z-index: 3;
  }

  .hero__trust-card .icon {
    width: 56px;
    height: 56px;
  }

  .hero__trust-card strong {
    font-size: 16px;
  }

  .problem-section,
  .predictability-section,
  .equipment-section,
  .steps-section,
  .projects-section,
  .faq-section {
    padding: 42px 0;
  }

  .section-copy h2,
  .predictability-copy h2,
  .projects-copy h2,
  .faq-section h2,
  .steps-heading h2,
  .section-title {
    font-size: 29px;
  }

  .problem-section__cards,
  .equipment-grid,
  .steps-grid,
  .predictability-grid,
  .faq-accordion {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .equipment-card {
    min-height: auto;
  }

  .process-timeline {
    padding: 18px;
  }

  .process-timeline__items {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .process-timeline__unit {
    grid-template-columns: 50px 1fr;
    justify-items: start;
    text-align: left;
  }

  .process-timeline__unit span {
    max-width: none;
    align-self: center;
  }

  .process-timeline__icon {
    width: 48px;
    height: 48px;
  }

  .process-timeline__icon .icon {
    width: 30px;
    height: 30px;
  }

  .predictability-quote {
    min-height: 210px;
    padding: 54px 24px 20px 0;
  }

  .predictability-quote__icon {
    left: 0;
    top: 4px;
  }

  .logo-watermark {
    right: 8px;
    top: 48px;
    width: 120px;
    height: 120px;
  }

  .equipment-card {
    grid-template-columns: 52px 1fr;
  }

  .steps-grid {
    gap: 24px;
  }

  .projects-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

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

  .project-card {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }

  .carousel-dots {
    display: flex;
  }

  .client-logos {
    gap: 14px;
  }

  .client-logo {
    width: calc(50% - 7px);
    height: 52px;
  }

  .faq-layout__image {
    min-height: 200px;
  }

  .footer-cta {
    padding: 34px 0 28px;
  }

  .footer-cta__intro {
    grid-template-columns: 1fr;
  }

  .footer-cta__intro img {
    width: 100%;
    max-height: 270px;
  }

  .footer-gallery-trigger {
    width: 100%;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .upload-area__label {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .upload-area__button {
    width: 100%;
  }

  .consent {
    justify-content: start;
    text-align: left;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 430px) {
  .hero__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .benefit-mini h3 {
    font-size: 12px;
  }

  .hero__media {
    height: 300px;
  }

  .step-card {
    grid-template-columns: 44px 1fr;
    gap: 13px;
  }

  .step-card__number {
    width: 42px;
    height: 42px;
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Pixel-pass compaction for the 1440px reference composition */
@media (min-width: 1241px) {
  .hero,
  .hero__inner {
    min-height: 662px;
  }

  .hero__inner {
    padding-top: 54px;
  }

  .hero__content {
    width: 690px;
  }

  .hero h1 {
    max-width: 690px;
    font-size: 56px;
    line-height: 1.055;
  }

  .hero__lead {
    max-width: 560px;
    margin-top: 22px;
  }

  .hero__benefits {
    max-width: 650px;
    margin-top: 32px;
    gap: 19px;
  }

  .hero__actions {
    margin-top: 27px;
  }

  .hero__actions .btn--primary {
    min-width: 232px;
  }

  .hero__trust-card {
    bottom: 110px;
  }

  .problem-section {
    padding: 52px 0 44px;
  }

  .problem-section__top {
    grid-template-columns: 390px 1fr;
    gap: 36px;
  }

  .section-copy h2,
  .predictability-copy h2,
  .projects-copy h2,
  .faq-section h2 {
    font-size: 34px;
    line-height: 1.1;
  }

  .section-copy p,
  .predictability-copy p,
  .projects-copy p {
    margin-top: 17px;
    font-size: 13px;
    line-height: 1.55;
  }

  .problem-card {
    min-height: 150px;
    padding: 23px 20px 19px;
  }

  .problem-card__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
  }

  .problem-card__icon .icon {
    width: 40px;
    height: 40px;
  }

  .problem-card h3 {
    font-size: 14px;
  }

  .process-timeline {
    margin-top: 24px;
    padding: 18px 28px 22px;
  }

  .process-timeline__items {
    display: flex;
    grid-template-columns: none;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
  }

  .process-timeline__unit {
    flex: 1 1 0;
  }

  .process-timeline__arrow {
    flex: 0 0 34px;
    margin-top: 20px;
  }

  .process-timeline__icon {
    width: 50px;
    height: 50px;
  }

  .process-timeline__icon .icon {
    width: 30px;
    height: 30px;
  }

  .predictability-section {
    padding: 48px 0 48px;
  }

  .predictability-grid {
    grid-template-columns: minmax(0, 1fr) 330px minmax(0, 1fr);
    gap: 44px;
  }

  .predictability-note {
    margin-top: 24px;
    padding: 15px 17px;
  }

  .daya-process-card {
    padding: 21px 22px 20px;
  }

  .daya-process-card__item {
    min-height: 43px;
  }

  .daya-process-card__item.is-success {
    min-height: 64px;
  }

  .predictability-quote {
    min-height: 220px;
  }

  .predictability-quote p {
    font-size: 26px;
  }

  .equipment-section {
    padding: 40px 0 42px;
  }

  .section-title {
    margin-bottom: 24px;
    font-size: 34px;
  }

  .equipment-card {
    min-height: 142px;
    padding: 21px 19px 18px;
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }

  .equipment-card__icon,
  .equipment-card__icon .icon {
    width: 48px;
    height: 48px;
  }

  .steps-section {
    padding: 34px 0 42px;
  }

  .steps-heading {
    margin-bottom: 23px;
  }

  .steps-heading h2 {
    font-size: 34px;
  }

  .steps-grid {
    gap: 22px;
  }

  .projects-section {
    padding: 46px 0 45px;
  }

  .projects-layout {
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 38px;
  }

  .project-card__body {
    padding: 14px 16px 16px;
  }

  .faq-section {
    padding: 42px 0 28px;
  }

  .faq-section h2 {
    margin-bottom: 21px;
  }

  .faq-item__button {
    min-height: 44px;
  }

  .faq-layout__image {
    min-height: 188px;
  }

  .footer-cta {
    padding: 28px 0 24px;
  }

  .footer-cta__intro {
    grid-template-columns: 220px 1fr;
    gap: 24px;
  }

  .footer-cta__intro img {
    width: 220px;
  }

  .footer-cta__intro h2 {
    font-size: 38px;
  }

  .footer-cta__intro .footer-cta__accent {
    font-size: 18px;
  }

  .contact-form {
    gap: 8px;
  }

  input {
    height: 38px;
  }

  textarea {
    min-height: 44px;
    padding-block: 10px;
  }

  .upload-area__label {
    min-height: 52px;
    padding-block: 9px;
  }

  .contact-form__submit {
    min-height: 40px;
  }

  .footer-bottom {
    padding: 22px 0 24px;
  }
}

@media (min-width: 1241px) {
  .problem-section__top {
    grid-template-columns: 410px 1fr;
  }

  .problem-section .section-copy h2 {
    font-size: 32px;
  }

  .footer::before {
    background-image:
      radial-gradient(circle at 12% 20%, rgba(242, 99, 34, 0.18), transparent 30%),
      linear-gradient(90deg, rgba(23, 27, 28, 0.96), rgba(23, 27, 28, 0.9));
    opacity: 1;
  }

  .footer-cta {
    grid-template-columns: 620px minmax(0, 1fr);
    gap: 42px;
  }

  .footer-cta__intro {
    grid-template-columns: 210px 1fr;
    gap: 24px;
  }

  .footer-cta__intro img {
    width: 210px;
  }

  .footer-cta__intro h2 {
    font-size: 34px;
  }
}
@media (min-width: 1241px) {
  .footer-cta__intro h2 {
    font-size: 32px;
    line-height: 1.08;
  }
}

.footer::before {
  background-image:
    radial-gradient(circle at 14% 22%, rgba(242, 99, 34, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(23, 27, 28, 0.98), rgba(23, 27, 28, 0.91));
  opacity: 1;
}

/* Visual rhythm pass */
.problem-section,
.steps-section,
.faq-section {
  border-top: 1px solid rgba(222, 228, 229, 0.95);
  border-bottom: 1px solid rgba(222, 228, 229, 0.72);
  background: #f3f5f5;
}

.predictability-section {
  padding: 76px 0;
  border-top: 1px solid #ffe1d4;
  border-bottom: 1px solid #ffe1d4;
  background: linear-gradient(180deg, #fff4ef 0%, #fff0e8 100%);
}

.equipment-section,
.projects-section {
  padding: 74px 0;
  background: #fff;
}

.problem-section {
  padding: 76px 0 72px;
}

.steps-section {
  padding: 70px 0 76px;
}

.faq-section {
  padding: 72px 0 64px;
}

.footer-cta {
  padding-top: 48px;
}

.problem-card,
.equipment-card,
.project-card,
.faq-item,
.process-timeline,
.daya-process-card {
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.045);
}

.faq-layout {
  align-items: start;
}

.faq-layout__image {
  height: 220px;
  min-height: 0;
  align-self: start;
}

@media (min-width: 1241px) {
  .problem-section {
    padding: 70px 0 68px;
  }

  .predictability-section {
    padding: 70px 0;
  }

  .equipment-section,
  .projects-section {
    padding: 66px 0;
  }

  .steps-section {
    padding: 62px 0 68px;
  }

  .faq-section {
    padding: 64px 0 56px;
  }

  .faq-layout__image {
    height: 224px;
  }
}

@media (max-width: 760px) {
  .problem-section,
  .predictability-section,
  .equipment-section,
  .steps-section,
  .projects-section,
  .faq-section {
    padding: 50px 0;
  }

  .hero {
    padding-bottom: 42px;
  }

  .faq-layout__image {
    height: 220px;
    min-height: 0;
  }

  .footer-policy-link {
    text-align: left;
  }

  .policy-modal {
    padding: 14px;
  }

  .policy-modal__panel {
    max-height: 88vh;
    padding: 28px 22px 30px;
    border-radius: 14px;
  }

  .policy-modal h2 {
    font-size: 24px;
  }
}

.contact-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 250;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 12, 13, 0.74);
  cursor: pointer;
}

.gallery-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 14px;
  align-items: center;
}

.gallery-modal__image {
  width: 100%;
  max-height: min(72vh, 720px);
  object-fit: contain;
  border-radius: 10px;
  background: #111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.gallery-modal__close,
.gallery-modal__nav {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.gallery-modal__close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
}

.gallery-modal__close .icon,
.gallery-modal__nav .icon {
  width: 26px;
  height: 26px;
}

.gallery-modal__nav--prev .icon {
  transform: rotate(90deg);
}

.gallery-modal__nav--next .icon {
  transform: rotate(-90deg);
}

.gallery-modal__caption {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.gallery-modal__caption strong {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.82);
}

.contact-fab__main {
  order: 2;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--color-primary-strong);
  color: #fff;
  box-shadow: 0 18px 40px rgba(242, 99, 34, 0.34);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  touch-action: manipulation;
  cursor: pointer;
}

.contact-fab__main:hover {
  transform: translateY(-2px);
  background: var(--color-primary-hover);
  box-shadow: 0 22px 48px rgba(229, 82, 22, 0.38);
}

.contact-fab__main .icon {
  width: 28px;
  height: 28px;
}

.contact-fab__menu {
  order: 1;
  display: grid;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-fab.is-open .contact-fab__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-fab__item {
  min-width: 158px;
  min-height: 44px;
  padding: 0 16px 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(242, 99, 34, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(17, 24, 28, 0.12);
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}

.contact-fab__item:hover {
  transform: translateX(-2px);
  border-color: rgba(242, 99, 34, 0.45);
  color: var(--color-primary-hover);
}

.contact-fab__item .icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.header-contact__icon,
.hero__notice .icon,
.process-timeline__icon,
.process-timeline__arrow,
.step-card__icon,
.footer-bottom__col .icon {
  color: var(--color-primary);
}

.process-timeline__icon {
  background: rgba(242, 99, 34, 0.08);
}

.messenger--max,
.messenger--telegram {
  color: var(--color-primary);
}

@media (max-width: 760px) {
  .contact-fab {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .contact-fab__main {
    width: 56px;
    height: 56px;
  }

  .contact-fab__item {
    min-width: 144px;
  }

  .gallery-modal {
    padding: 14px;
  }

  .gallery-modal__dialog {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .gallery-modal__close,
  .gallery-modal__nav {
    width: 42px;
    height: 42px;
  }

  .gallery-modal__close {
    top: -12px;
    right: -8px;
  }

  .gallery-modal__image {
    max-height: 66vh;
  }

  .gallery-modal__caption {
    grid-column: 1 / -1;
    font-size: 12px;
  }
}
