:root {
  /* Брендовые цвета */
  --primary: #194C60;
  --accent: #E7B300;
  --site-header-height: 96px;
  --sticky-stack-height: var(--site-header-height);

  /* Базовые фоны и текст (светлая тема по умолчанию) */
  --color-bg-page: #F2F4F5;
  --color-bg-section: #F2F4F5;
  --color-bg-surface: #FFFFFF;
  --color-bg-card: #FFFFFF;
  --color-bg-placeholder: #DDE3E7;
  --color-bg-field: #FFFFFF;

  --color-text-main: #194C60;
  --color-text-secondary: rgba(25, 76, 96, 0.8);
  --color-text-muted-strong: rgba(25, 76, 96, 0.9);
  --color-text-muted: rgba(25, 76, 96, 0.7);
  --color-text-grey-strong: #555555;
  --color-text-grey: #666666;

  /* Границы и тени */
  --color-border-subtle: #E5E5E5;
  --color-border-accent: #E7B300;

  --shadow-card-soft: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-card-soft-strong: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-card-strong: 0 18px 50px rgba(0, 0, 0, 0.12);
  --shadow-card-coating-soft: 0 8px 24px rgba(0, 0, 0, 0.05);
  --shadow-card-coating-strong: 0 14px 34px rgba(0, 0, 0, 0.08);
  --shadow-card-thickness: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-card-usage: 0 8px 24px rgba(0, 0, 0, 0.06);

  /* Hero */
  --hero-bg:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.18), transparent 60%),
    radial-gradient(circle at 0% 80%, rgba(0, 0, 0, 0.18), transparent 65%),
    linear-gradient(135deg, #225d76 0%, #194C60 45%, #102734 100%);
  --hero-text-color: #FFFFFF;
  --hero-image-bg: linear-gradient(135deg, #20637f, #194C60);
  --hero-image-border: rgba(255, 255, 255, 0.25);

  /* Кнопки */
  --accent-hover: #F3C833;
  --btn-outline-hover-bg: rgba(25, 76, 96, 0.05);

  /* Карточки */
  --color-card-title: #194C60;
  --color-card-desc: #555555;

  /* Квиз: варианты (светлая тема) */
  --chip-selected-bg: rgba(231, 179, 0, 0.06);

  /* Section depth system */
  --section-glow: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(231, 179, 0, 0.03), transparent);
  --section-ambient-1: radial-gradient(ellipse 60% 40% at 80% 20%, rgba(25, 76, 96, 0.04), transparent);
  --section-ambient-2: radial-gradient(ellipse 60% 40% at 20% 80%, rgba(25, 76, 96, 0.03), transparent);

  /* Button depth */
  --btn-gradient: linear-gradient(180deg, #F0C020 0%, #D9A400 100%);
  --btn-glow: 0 4px 16px rgba(231, 179, 0, 0.3);
  --btn-glow-hover: 0 8px 28px rgba(231, 179, 0, 0.45);
}


@media (max-width: 768px) {
  :root {
    --site-header-height: 92px;
  }
}

@media (max-width: 340px), (max-height: 570px) {
  :root {
    --site-header-height: 64px;
  }
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: var(--sticky-stack-height, var(--site-header-height, 96px));
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--color-bg-page);
  color: var(--color-text-main);
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

#quiz,
#profiles,
#coating-catalog,
#colors,
#gallery-examples,
#reviews,
#benefits,
#installers {
  scroll-margin-top: calc(var(--sticky-stack-height, var(--site-header-height, 96px)) + 20px);
}

/* БАЗОВЫЙ ЛЕЙАУТ ДОКУМЕНТОВ */

.site-header {
  background-color: rgba(10, 29, 38, 0.66);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  color: var(--hero-text-color);
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--hero-text-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 19px;
  line-height: 1;
}

.site-header__brand:hover {
  text-decoration: underline;
}

.site-header__brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.site-header__brand-text {
  display: inline-block;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-header__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.site-header__nav a {
  color: var(--hero-text-color);
  opacity: 0.96;
  text-decoration: none;
  font-size: 15px;
  padding: 6px 0;
  transition: opacity 0.2s ease;
}

.site-header__nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.site-header__contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-header__address {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 230px;
  color: var(--hero-text-color);
  text-decoration: none;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
  opacity: 0.96;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header__address:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.site-header__address-icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header__address-copy {
  display: block;
  min-width: 0;
}

.site-header__address-title,
.site-header__address-text {
  display: block;
}

.site-header__address-title {
  font-size: 13px;
  font-weight: 800;
}

.site-header__address-text {
  opacity: 0.9;
}

.site-header__phone {
  color: var(--hero-text-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 22px;
  white-space: nowrap;
}

.site-header__phone:hover {
  text-decoration: underline;
}

.site-header__socials {
  display: flex;
  gap: 10px;
}

.site-header__social {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header__social:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.site-header__social-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.site-header__catalog {
  position: relative;
}

.site-header__catalog-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  margin: -1px 0;
  font: inherit;
  font-size: 15px;
  line-height: 1.2;
  color: var(--hero-text-color);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.95;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.site-header__catalog-btn:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.75);
}

.site-header__catalog-btn[aria-expanded="true"] {
  border-color: var(--accent);
  opacity: 1;
}

.site-header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  width: 690px;
  max-width: calc(100vw - 24px);
  background: var(--color-bg-surface);
  color: var(--color-text-main);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--color-border-subtle);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  overflow: hidden;
}

.site-header__catalog.open .site-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header__dropdown-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 12px 0;
  width: 100%;
  box-sizing: border-box;
}

.site-header__dropdown-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.site-header__dropdown-col:not(:last-child) {
  border-right: 1px solid var(--color-border-subtle);
}

.site-header__dropdown-title {
  padding: 10px 16px 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.site-header__dropdown-col a {
  display: block;
  margin: 4px 16px;
  padding: 4px 8px;
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  flex-shrink: 0;
  color: var(--color-text-main);
  text-decoration: none;
  border-radius: 20px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.site-header__dropdown-col a:hover,
.site-header__dropdown-col a:focus-visible {
  background-color: var(--accent);
  color: var(--primary);
}

@media (max-width: 1023px) {
  .site-header__dropdown-inner {
    grid-template-columns: 1fr;
  }

  .site-header__dropdown-col:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--color-border-subtle);
  }

  .site-header__dropdown {
    width: 320px;
    min-width: 0;
    max-height: 70vh;
    overflow-y: auto;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 0;
  }

  .site-header__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 10px;
    row-gap: 6px;
  }

  .site-header__brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    gap: 8px;
  }

  .site-header__brand-logo {
    width: 42px;
    height: 42px;
  }

  .site-header__brand-text {
    white-space: nowrap;
  }

  .site-header__nav {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    gap: 0;
  }

  .site-header__nav > a {
    display: none;
  }

  .site-header__contacts {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .site-header__address {
    display: none;
  }

  .site-header__phone {
    font-size: 18px;
    line-height: 1.1;
  }

  .site-header__socials {
    gap: 6px;
    margin-left: auto;
  }

  .site-header__social-icon {
    width: 34px;
    height: 34px;
  }

  .site-header__catalog-btn {
    margin: 0;
  }

  .site-header__dropdown {
    left: auto;
    right: 0;
  }
}

@media (max-width: 340px), (max-height: 570px) {
  .site-header {
    padding: 8px 0;
  }

  .site-header__row {
    column-gap: 8px;
    row-gap: 4px;
  }

  .site-header__brand {
    gap: 5px;
  }

  .site-header__brand-logo {
    width: 30px;
    height: 30px;
  }

  .site-header__brand-text {
    font-size: 12px;
  }

  .site-header__contacts {
    gap: 8px;
  }

  .site-header__address {
    display: none;
  }

  .site-header__phone {
    font-size: 14px;
    line-height: 1.1;
  }

  .site-header__catalog-btn {
    min-height: 30px;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 10px;
  }

  .site-header__socials {
    gap: 5px;
  }

  .site-header__social-icon {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 769px) {
  .site-header__row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .site-header__nav {
    justify-content: center;
    flex: 1;
  }

  .site-header__contacts {
    justify-content: flex-end;
  }
}

.doc {
  padding: 48px 0;
}

.doc--seamless {
  padding-bottom: 0;
}

.doc-title {
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.18;
  text-wrap: balance;
  overflow-wrap: anywhere;
  color: var(--color-text-main);
}

@media (max-width: 768px) {
  .doc-title {
    font-size: clamp(22px, 6.2vw, 30px);
    line-height: 1.16;
    margin: 0 0 12px;
  }
}

.doc-content {
  min-height: 240px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: 16px;
  padding: 20px;
  color: var(--color-text-main);
}

.doc-pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-main);
}

.doc-content--thanks {
  min-height: auto;
}

.thanks-inner {
  font-size: 14px;
  color: var(--color-text-secondary);
  text-align: center;
}

.thanks-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.thanks-nav-btn {
  width: auto;
  min-width: 140px;
  padding: 14px 18px;
}

/* FOOTER */

.footer {
  background-color: var(--color-bg-surface);
  color: var(--color-text-main);
  padding: 32px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto;
}

.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  line-height: 1.45;
}

.footer a {
  color: var(--color-text-secondary);
  opacity: 1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--color-text-main);
  text-decoration: underline;
}

.footer-owner {
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.footer-disclaimer {
  margin: 10px 0 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  max-width: 70ch;
}

.footer-messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 0 0;
}

.footer-msg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 24px;
  border: 1px solid rgba(25, 76, 96, 0.15);
  background-color: rgba(25, 76, 96, 0.06);
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.footer-msg-btn:hover {
  background-color: rgba(25, 76, 96, 0.12);
  border-color: rgba(25, 76, 96, 0.25);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .footer-col:first-child {
    justify-self: end;
    width: min(100%, 470px);
  }

  .footer-col:last-child {
    justify-self: start;
    width: min(100%, 470px);
  }
}
/* HERO */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 70px;
  padding-bottom: 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--hero-text-color);
  background: var(--hero-bg);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(25, 76, 96, 0.92) 0%,
      rgba(25, 76, 96, 0.82) 35%,
      rgba(25, 76, 96, 0.55) 55%,
      rgba(25, 76, 96, 0.25) 75%,
      rgba(25, 76, 96, 0) 90%
    );
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background:
    linear-gradient(
      180deg,
      rgba(25, 76, 96, 0) 0%,
      rgba(25, 76, 96, 0.5) 40%,
      rgba(25, 76, 96, 0.85) 70%,
      rgba(25, 76, 96, 1) 100%
    );
  pointer-events: none;
  z-index: 3;
}

.hero-title {
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 600;
}

.hero-title-line {
  display: inline-block;
  white-space: nowrap;
}

.hero-title-note {
  display: inline-block;
  font-size: 0.8em;
  color: var(--accent);
  font-weight: 700;
}

.hero-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1em;
}

.hero-title-price {
  color: #ffffff;
}

.hero-title-price--accent {
  color: var(--accent);
}

.hero-price-prefix {
  color: inherit;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.2;
  margin: 0 0 24px;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.9;
  white-space: nowrap;
}

.hero-subtitle__line--accent {
  color: var(--accent);
  font-weight: 700;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.hero-list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.hero-list .hero-list__item--break {
  flex-basis: 100%;
}

.hero-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
  margin-right: 8px;
}

.hero-trigger {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.4;
  opacity: 0.85;
  color: inherit;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  border-radius: 8px;
  border: none;
  background-color: var(--accent);
  color: #000000;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  width: min(100%, 340px);
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
  height: auto;
}

.hero-cta:hover {
  background-color: var(--accent-hover);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: min(100%, 700px);
}

.hero#calc .hero-cta,
.installers .profiles-toggle,
.profiles [data-all-profiles-toggle],
.colors [data-colors-toggle] {
  color: var(--primary);
}

.hero#calc .hero-cta:hover,
.installers .profiles-toggle:hover,
.profiles [data-all-profiles-toggle]:hover,
.colors [data-colors-toggle]:hover,
.hero#calc .hero-cta:focus-visible,
.installers .profiles-toggle:focus-visible,
.profiles [data-all-profiles-toggle]:focus-visible,
.colors [data-colors-toggle]:focus-visible {
  color: var(--primary);
}

.hero-cta--outline {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.hero-cta--outline:hover {
  background-color: var(--btn-outline-hover-bg);
  border-color: var(--accent);
  color: var(--accent);
}

.hero#calc .hero-cta--outline,
.hero#calc .hero-cta--outline:hover,
.hero#calc .hero-cta--outline:focus-visible {
  color: var(--accent);
}

.hero-under-cta {
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
  width: min(100%, 340px);
  text-align: center;
}

.hero#top .hero-title,
.hero#top .hero-subtitle,
.hero#top .hero-under-cta {
  text-wrap: balance;
}

.hero#top .hero-subtitle {
  white-space: normal;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(25, 76, 96, 0.92) 0%,
      rgba(25, 76, 96, 0.82) 35%,
      rgba(25, 76, 96, 0.55) 55%,
      rgba(25, 76, 96, 0.22) 75%,
      rgba(25, 76, 96, 0) 100%
    );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  width: 100%;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateY(-30px);
}

.hero__content > * {
  max-width: 640px;
}

@media (min-width: 1024px) {
  .hero--siding-metall .hero__content > * {
    max-width: 1120px;
  }

  .hero--siding-metall .hero-list {
    max-width: 720px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 6px;
  }

  .hero--siding-metall .hero-list li {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 16px;
    line-height: 1.4;
  }

  .hero--siding-metall .hero-actions {
    width: min(100%, 340px);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero--siding-metall .hero-cta {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: unset;
    height: auto;
    padding: 20px 12px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .hero__image {
    object-position: 64% center;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(12, 33, 43, 0.42) 0%,
        rgba(12, 33, 43, 0.1) 22%,
        rgba(12, 33, 43, 0.18) 38%,
        rgba(12, 33, 43, 0.88) 72%,
        rgba(12, 33, 43, 0.96) 100%
      );
  }

  .hero::after {
    height: 140px;
    background:
      linear-gradient(
        180deg,
        rgba(25, 76, 96, 0) 0%,
        rgba(12, 33, 43, 0.45) 36%,
        rgba(12, 33, 43, 0.82) 76%,
        rgba(12, 33, 43, 0.96) 100%
      );
  }

  .hero__overlay {
    background:
      radial-gradient(circle at 78% 20%, rgba(231, 179, 0, 0.14), transparent 34%),
      linear-gradient(
        180deg,
        rgba(25, 76, 96, 0.08) 0%,
        rgba(25, 76, 96, 0.04) 34%,
        rgba(25, 76, 96, 0.54) 68%,
        rgba(25, 76, 96, 0.74) 100%
      );
  }

  .hero__content {
    transform: none !important;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 20px 16px;
    border-radius: 14px;
    box-sizing: border-box;
    overflow: visible;
    background: linear-gradient(180deg, rgba(18, 51, 65, 0.56), rgba(11, 31, 40, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }

  .hero__content > * {
    max-width: 100%;
    margin-bottom: 12px;
  }

  .hero__content > *:last-child {
    margin-bottom: 0;
  }

  .hero-title {
    font-size: clamp(26px, 7vw, 32px);
    line-height: 1.08;
    margin: 0 0 12px;
    overflow-wrap: anywhere;
  }

  .hero-title-line {
    display: block;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-title-main,
  .hero-title-city {
    display: inline;
  }

  .hero-title-note {
    display: block;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-price-prefix,
  .hero-price {
    display: inline;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.2;
    margin: 0 0 12px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero#calc .hero-subtitle,
  .hero#calc .hero-subtitle__line {
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    width: 100%;
    margin: 0 0 12px;
  }

  .hero-list li {
    min-height: 52px;
    padding: 8px 8px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    font-size: 12px;
    line-height: 1.05;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-list li::before {
    width: 6px;
    height: 6px;
    margin-right: 0;
    margin-bottom: 4px;
    flex: 0 0 auto;
  }

  .hero-list li span {
    display: block;
  }

  .hero-list li span + span {
    margin-left: 0;
  }

  .hero-list li span:first-child {
    font-size: 12px;
    line-height: 1;
    opacity: 0.84;
    font-weight: 600;
  }

  .hero-list li span:last-child {
    font-size: 14px;
    line-height: 1.05;
    font-weight: 700;
  }

  .hero-cta {
    width: 100%;
    max-width: none;
    min-height: 52px;
    padding: 14px 16px;
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-under-cta {
    width: 100%;
    text-align: center;
    font-size: 12px;
    line-height: 1.35;
    margin: 0;
  }
}

@media (max-width: 340px), (max-height: 570px) {
  .hero {
    padding: 10px 10px 12px;
    align-items: flex-start;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero::after {
    height: 90px;
  }

  .hero__content {
    max-width: 320px;
    padding: 12px 10px;
    border-radius: 12px;
  }

  .hero__content > * {
    margin-bottom: 8px;
  }

  .hero-title {
    font-size: clamp(20px, 6.2vw, 25px);
    line-height: 1.04;
    margin: 0 0 8px;
  }

  .hero-subtitle {
    font-size: 11px;
    line-height: 1.2;
    margin: 0 0 8px;
    white-space: nowrap;
  }

  .hero-list {
    gap: 5px;
    margin: 0 0 8px;
  }

  .hero-list li {
    min-height: 44px;
    padding: 6px 6px;
    border-radius: 10px;
    gap: 1px;
    font-size: 11px;
    line-height: 1.02;
  }

  .hero-list li::before {
    width: 5px;
    height: 5px;
    margin-bottom: 3px;
  }

  .hero-list li span:first-child {
    font-size: 10px;
  }

  .hero-list li span:last-child {
    font-size: 12px;
    line-height: 1.02;
  }

  .hero-cta {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-under-cta {
    font-size: 10px;
    line-height: 1.2;
  }
}
/* МИНИ-ФОРМА ДЛЯ ДОРЯЧИХ КЛИЕНТОВ */

.product-mini-section {
  padding: 28px 0 36px !important;
}

.product-mini-section__title {
  margin: 0 0 18px !important;
  text-align: center;
  color: var(--color-text-main);
}

.product-mini-grid {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr)) !important;
  gap: 12px !important;
}

.product-mini-grid__item {
  min-width: 0;
}

.related-products a.product-mini-card,
.seo-links a.product-mini-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 100%;
  width: 100%;
  padding: 14px;
  text-align: center;
  text-decoration: none;
  color: var(--color-card-title);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  white-space: normal;
}

.related-products a.product-mini-card:hover,
.related-products a.product-mini-card:focus-visible,
.seo-links a.product-mini-card:hover,
.seo-links a.product-mini-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--color-border-accent);
  color: var(--color-card-title);
  background: rgba(255, 255, 255, 0.96);
  text-decoration: none;
}

.product-mini-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-mini-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-mini-card__title {
  display: block;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-card-title);
  text-wrap: balance;
}


.hot-lead {
  background-color: var(--color-bg-section);
  padding: 48px 0;
}

.hot-lead-card {
  max-width: 720px;
  margin: 0 auto;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: 16px;
  padding: 18px 16px 18px;
  box-shadow: var(--shadow-card-soft-strong);
}

.hot-lead-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-main);
  text-align: center;
}

.hot-lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hot-lead-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hot-lead-label {
  font-size: 13px;
  color: var(--color-text-secondary);
}

.hot-lead-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 24px;
  border-radius: 24px;
  border: none;
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 100%;
}

.hot-lead-submit:hover {
  background-color: var(--accent-hover);
}

.hot-lead-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.hot-lead-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--color-text-secondary);
  text-align: center;
}

/* ХОДОВЫЕ ПРОФИЛИ */

.profiles {
  background-color: var(--color-bg-section);
  padding: 48px 0;
}

.profiles-header {
  text-align: center;
  margin-bottom: 16px;
}

.profiles-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-main);
}

.profiles-subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.profiles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.profiles-toggle-wrapper {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

/* ВЕСЬ АССОРТИМЕНТ */
.all-profiles {
  background-color: var(--color-bg-surface);
  padding: 48px 0;
}

.all-profiles-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-main);
  text-align: center;
}

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

.all-profile-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  cursor: zoom-in;
}

.all-profile-card * {
  cursor: zoom-in;
}

.all-profile-card__img {
  width: 100%;
  aspect-ratio: 2 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
  background-color: var(--color-bg-placeholder);
}

.all-profile-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-card-title);
}

.all-profile-card p {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--color-card-desc);
}

.all-profile-card div {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.all-profile-card__length {
  margin-top: 1px;
}

.all-profile-card__width {
  color: var(--color-text-muted);
  margin-top: 1px;
}

.all-profile-card .profile-card__btn {
  margin-top: 10px;
  cursor: pointer;
  width: 100%;
  height: 40px;
  font-size: 13px;
  border-radius: 8px;
}

.all-profiles-cta {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.profile-card {
  background-color: var(--color-bg-card);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-card-soft-strong);
  border: 1px solid var(--color-border-subtle);
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
  will-change: transform;
}

.profile-card:hover {
  border-color: var(--accent);
}

.profile-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background-color: var(--color-bg-placeholder);
  margin-bottom: 16px;
}

.profile-card__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease;
  transform: translateZ(0);
  will-change: opacity;
}

.profile-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

.profile-card__img--secondary {
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .profile-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    border-color: var(--accent);
  }

  .profile-card--swap:hover .profile-card__img--secondary {
    opacity: 1;
  }

  .profile-card--swap:hover .profile-card__img--primary {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .profile-card--swap .profile-card__image {
    touch-action: pan-y;
  }

  .profile-card__swap-nav {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    line-height: 1;
    background: rgba(25, 76, 96, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.36);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transform: translateY(-50%);
    z-index: 3;
    cursor: pointer;
    padding: 0;
  }

  .profile-card__swap-nav--prev {
    left: 8px;
  }

  .profile-card__swap-nav--next {
    right: 8px;
  }

  .profile-card--swap.is-flipped .profile-card__img--secondary {
    opacity: 1;
  }

  .profile-card--swap.is-flipped .profile-card__img--primary {
    opacity: 0;
  }
}

.profile-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-card-title);
  margin: 0 0 6px;
}

.profile-title-break-desktop {
  display: none;
}

.profile-card__desc {
  font-size: 13px;
  color: var(--color-card-desc);
  margin: 0 0 8px;
}

.profile-card__meta {
  font-size: 13px;
  color: var(--color-text-muted-strong);
  margin: 0 0 8px;
}

.profile-card__price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin: 4px 0 14px;
}

.profile-card__stock {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 6px;
}

.profile-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 52px;
  border-radius: 24px;
  border: none;
  background-color: var(--accent);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease;
  width: min(100%, 340px);
  white-space: nowrap;
}

.profile-card__btn:hover {
  background-color: var(--accent-hover);
}

/* CTA ПОСЛЕ ПРОФИЛЕЙ */
.profiles-cta {
  background-color: #194C60;
  color: #FFFFFF;
  padding: 40px 0;
  text-align: center;
}

.profiles-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.profiles-cta-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
}

.profiles-cta-subtitle {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.profiles-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 24px;
  border-radius: 24px;
  border: none;
  background-color: #E7B300;
  color: #194C60;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  width: 100%;
  max-width: 280px;
}

.profiles-cta-btn:hover {
  background-color: var(--accent-hover);
}

/* ТОЛЩИНА ПРОФНАСТИЛА */

.thickness {
  background-color: var(--color-bg-surface);
  padding: 48px 0;
}

.thickness-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.thickness-header {
  text-align: center;
  margin-bottom: 16px;
}

.thickness-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-main);
}

.thickness-subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.thickness-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.thickness-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 170px;
  justify-content: space-between;
}

.thickness-card__value {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-card-title);
}

.thickness-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.thickness-card__subtitle {
  margin: 4px 0 6px;
  font-size: 15px;
  color: var(--color-text-grey-strong);
}

.thickness-card__desc {
  margin: 0;
  font-size: 16px;
  color: var(--color-text-grey-strong);
}

.thickness-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: var(--accent);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  margin: 4px 0 6px;
  align-self: flex-start;
}

/* ВАРИАНТЫ ПОКРЫТИЙ */

.coatings {
  background-color: var(--color-bg-section);
  padding: 48px 0;
}

.coatings-header {
  text-align: center;
  margin-bottom: 16px;
}

.coatings-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-main);
}

.coatings-subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.coatings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.coating-card {
  background-color: var(--color-bg-card);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-card-coating-soft);
  border: 1px solid var(--color-border-subtle);
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.coating-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.coating-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-card-title);
}

.coating-card__desc {
  margin: 0;
  font-size: 15px;
  color: var(--color-card-desc);
}

.coating-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: var(--accent);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
}

/* ПОЧЕМУ ПОКУПАЮТ У НАС */

.reasons {
  background: var(--hero-bg);
  padding: 80px 0;
  color: var(--hero-text-color);
}

.reasons-header {
  text-align: center;
  margin-bottom: 16px;
}

.reasons-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--hero-text-color);
}

.reasons-subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.reason-card {
  background-color: var(--color-bg-card);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--color-border-subtle);
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card-soft);
}

.reason-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-card-title);
}

.reason-card__text {
  margin: 0;
  font-size: 14px;
  color: var(--color-card-desc);
}

/* ФОТО ОБЪЕКТОВ В УФЕ */

.photos {
  background: transparent;
  padding: 80px 0 64px;
}

.hero + section {
  margin-top: -120px;
  padding-top: 168px;
}

.hero + .all-profiles--catalog {
  margin-top: 0;
  padding-top: 72px;
}

@media (max-width: 768px) {
  .hero + section {
    margin-top: 0;
    padding-top: 48px;
  }

  .hero + .all-profiles--catalog {
    padding-top: 48px;
  }
}

.photos-header {
  text-align: center;
  margin-bottom: 16px;
}

.photos-title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.photos-subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.photos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.photos--two-column .photos-grid {
  grid-template-columns: 1fr;
}

.photos-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 20px;
}

.photos-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--color-border-subtle);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-text-main);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.photos-filter:hover,
.photos-filter:focus-visible {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.photos-filter.is-active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.gallery-tab-panels {
  position: relative;
}

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

.photo-card {
  background-color: var(--color-bg-card);
  border-radius: 16px;
  box-shadow: var(--shadow-card-soft);
  border: 1px solid var(--color-border-subtle);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
  cursor: zoom-in;
}

.photo-card * {
  cursor: zoom-in;
}

.photo-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background-color: var(--color-bg-placeholder);
  overflow: hidden;
}

.photo-card__image--button {
  display: block;
  padding: 0;
  border: 0;
  appearance: none;
  text-align: inherit;
}

.photo-card__top-title {
  position: absolute;
  z-index: 1;
  top: 24px;
  left: 16px;
  right: 16px;
  color: var(--color-card-title);
  font-size: clamp(18px, 1.55vw, 26px);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  pointer-events: none;
}

.photo-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background-color: #fff;
}

.photo-card__body {
  display: grid;
  gap: 8px;
  padding: 14px 8px 8px;
}

.photo-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(231, 179, 0, 0.12);
  color: var(--color-text-main);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.photo-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-card-title);
}

.photo-card__meta {
  margin: 0;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.photo-card__specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin: 2px 0 0;
}

.photo-card__spec {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(25, 76, 96, 0.06);
}

.photo-card__spec dt,
.photo-card__spec dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.25;
}

.photo-card__spec dt {
  color: var(--color-text-muted);
  font-weight: 750;
}

.photo-card__spec dd {
  color: var(--color-text-main);
  font-weight: 850;
  text-align: right;
  white-space: nowrap;
}

.photo-card__spec--price {
  align-items: center;
  background: rgba(25, 76, 96, 0.06);
}

.photo-card__spec--price dt {
  color: var(--color-text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.photo-card__spec--price dd {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  padding: 3px 9px;
  border: 1px solid rgba(185, 28, 28, 0.18);
  border-radius: 999px;
  background: rgba(185, 28, 28, 0.09);
  color: #b91c1c;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.1;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .photo-card {
    border-radius: 14px;
  }

  .photo-card__body {
    padding: 12px 6px 6px;
  }

  .photo-card__top-title {
    top: 15px;
    left: 12px;
    right: 12px;
    font-size: 18px;
  }

  .photo-card__spec {
    display: grid;
    grid-template-columns: minmax(78px, auto) minmax(0, 1fr);
    align-items: flex-start;
    gap: 6px;
    padding: 8px;
  }

  .photo-card__spec dt,
  .photo-card__spec dd {
    min-width: 0;
  }

  .photo-card__spec dd {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .photo-card__spec--price {
    align-items: center;
  }

  .photo-card__spec--price dd {
    font-size: 14px;
    white-space: nowrap;
    max-width: 100%;
  }

  .photos--two-column .photos-grid {
    justify-items: center;
    max-width: 100%;
    overflow: visible;
  }

  .photos--two-column .photo-card {
    width: min(100%, 320px);
    max-width: calc(100vw - 64px);
  }
}

.photo-card--lead,
.photo-card--lead * {
  cursor: default;
}

.photo-card--lead {
  min-height: 100%;
  padding: 8px;
}

.photo-lead-card__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: 22px 22px 8px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 88% 12%, rgba(231, 179, 0, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 251, 0.98));
  border: 1px solid rgba(25, 76, 96, 0.08);
}

.photo-lead-card__eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.photo-lead-card__title {
  margin: 0;
  max-width: 420px;
  color: var(--color-card-title);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 850;
  line-height: 1.12;
  text-wrap: balance;
}

.photo-lead-card__text {
  margin: 12px 0 18px;
  max-width: none;
  color: var(--color-text-secondary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.photo-lead-card__features {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: var(--color-card-title);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
}

.photo-lead-card__features li {
  display: grid;
  grid-template-columns: 10px 1fr;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}

.photo-lead-card__features li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(231, 179, 0, 0.14);
  transform: translateY(-1px);
}

.photo-lead-card__form {
  margin-top: auto;
  padding: 16px 16px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  gap: 10px;
}

.photo-card--lead .lead-input {
  height: 52px;
  border-color: rgba(25, 76, 96, 0.12);
  background: #fff;
  color: var(--primary);
  cursor: text;
}

.photo-card--lead .form-consent {
  padding: 0;
  border: 0;
}

.photo-card--lead .form-consent__text {
  color: var(--color-text-secondary);
  font-size: 12px;
  line-height: 1.35;
}

.photo-card--lead .form-consent__text a {
  color: var(--primary);
}

.photo-card--lead .lead-submit {
  color: var(--primary);
  cursor: pointer;
}

.photos--single-column .photos-header {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.photos--single-column .photos-grid {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr;
}

.photos--single-column .photo-card__body .profile-card__btn {
  justify-self: center;
}

.photos--horizontal-scroll .photos-header {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.photos--utp-scroll .photos-header {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.photos--gallery-scroll .photos-header {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.photos-scroll-shell {
  position: relative;
}

.photos-scroll-shell.has-horizontal-overflow::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 12px;
  z-index: 1;
  width: 92px;
  border-radius: 0 16px 16px 0;
  background: linear-gradient(90deg, rgba(242, 244, 245, 0), var(--color-bg-section) 82%);
  pointer-events: none;
}

.photos--horizontal-scroll .photos-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 12px;
  margin-bottom: 0;
}

.photos--utp-scroll .photos-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 12px;
  margin-bottom: 0;
}

.photos--gallery-scroll .photos-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 12px;
  margin-bottom: 0;
}

.photos-scroll-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(25, 76, 96, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
  box-shadow: 0 12px 28px rgba(25, 76, 96, 0.16);
  cursor: pointer;
  transform: translateY(calc(-50% - 6px));
  transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.photos-scroll-btn span {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.photos-scroll-btn:hover,
.photos-scroll-btn:focus-visible {
  background: #ffffff;
  transform: translateY(calc(-50% - 6px)) scale(1.04);
  box-shadow: 0 16px 36px rgba(25, 76, 96, 0.18);
}

.photos-scroll-btn:disabled {
  opacity: 0.42;
  cursor: default;
  transform: translateY(calc(-50% - 6px));
  box-shadow: 0 8px 18px rgba(25, 76, 96, 0.08);
}

.photos-scroll-btn--prev {
  left: -10px;
}

.photos-scroll-btn--next {
  right: -10px;
}

.photos--horizontal-scroll .photo-card {
  flex: 0 0 min(480px, calc(100vw - 72px));
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.photos--utp-scroll .photo-card {
  flex: 0 0 min(480px, calc(100vw - 72px));
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  cursor: default;
}

.photos--gallery-scroll .photo-card {
  flex: 0 0 min(480px, calc(100vw - 72px));
  scroll-snap-align: start;
  scroll-snap-stop: always;
  cursor: zoom-in;
}

.photos--gallery-scroll .photo-card * {
  cursor: zoom-in;
}

.photos--gallery-scroll .photo-card__image {
  aspect-ratio: 4 / 3;
}

.photos--gallery-scroll .photo-card__image img {
  object-fit: cover;
}

.photos--horizontal-scroll .photo-card__image,
.photos--utp-scroll .photo-card__image {
  aspect-ratio: 4 / 3;
}

.photos--utp-scroll .photo-card * {
  cursor: default;
}

.photos--utp-scroll .photo-card__image {
  border-radius: 18px;
  background: transparent;
}

.photos--utp-scroll .photo-card__image img {
  object-fit: contain;
  background: transparent;
}

.photos--horizontal-scroll .photo-card__body .profile-card__btn {
  justify-self: center;
}

@media (max-width: 768px) {
  .photos--horizontal-scroll .photos-grid {
    gap: 14px;
    padding-bottom: 8px;
  }

  .photos--utp-scroll .photos-grid {
    gap: 14px;
    padding-bottom: 8px;
  }

  .photos--gallery-scroll .photos-grid {
    gap: 14px;
    padding-bottom: 8px;
  }

  .photos--horizontal-scroll .photo-card {
    flex-basis: calc(100vw - 64px);
  }

  .photos--utp-scroll .photo-card {
    flex-basis: calc(100vw - 64px);
  }

  .photos--gallery-scroll .photo-card {
    flex-basis: calc(100vw - 64px);
  }

  .photos-title {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }

  .photos-scroll-btn {
    display: none;
  }
}

.photo-card[hidden] {
  display: none !important;
}

@media (hover: hover) and (pointer: fine) {
  .all-profiles .all-profile-card,
  .all-profiles .all-profile-card:hover,
  .all-profiles .all-profile-card * {
    cursor: zoom-in !important;
  }

  .reviews .review-card,
  .reviews .review-card:hover,
  .reviews .review-card * {
    cursor: zoom-in !important;
  }

  .photos .photo-card,
  .photos .photo-card:hover,
  .photos .photo-card * {
    cursor: zoom-in !important;
  }
}

.photos-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.photos-cta__text {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-main);
}

.photos-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  height: 52px;
  border-radius: 24px;
  border: none;
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.photos-cta__btn:hover {
  background-color: var(--accent-hover);
}

/* ПОЧЕМУ ВЫГОДНО ПОКУПАТЬ */

.benefits {
  background-color: var(--primary);
  color: var(--hero-text-color);
  padding: 48px 0;
}

.benefits-header {
  text-align: center;
  margin-bottom: 16px;
}

.benefits-title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--hero-text-color);
  text-wrap: balance;
}

.benefits-subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--hero-text-color);
  opacity: 0.85;
  line-height: 1.5;
  text-wrap: balance;
}

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

.benefit-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  border-color: var(--color-border-accent);
}

.benefit-card__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 14px;
  transition: color 0.25s ease;
}

.benefit-card:hover .benefit-card__icon {
  color: #E7B300;
}

.benefit-card__icon .icon {
  width: 24px;
  height: 24px;
  display: block;
}

.icon--accent {
  color: var(--accent);
}

.benefit-card__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--hero-text-color);
}

.benefit-card__text {
  margin: 0;
  font-size: 14px;
  color: var(--hero-text-color);
  opacity: 0.9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ДЛЯ МОНТАЖНИКОВ */

.installers {
  background-color: var(--primary);
  color: var(--hero-text-color);
  padding: 0 0 48px;
}

.installers-header {
  margin-bottom: 16px;
  text-align: center;
}

.installers-title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--hero-text-color);
  text-wrap: balance;
}

.installers-subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--hero-text-color);
  opacity: 0.9;
  line-height: 1.5;
  text-wrap: balance;
}

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

.installers-actions {
  margin-top: 20px;
  text-align: center;
}

/* СПЕЦУСЛОВИЯ ОТ 6 ЗАВОДОВ */

.spec-conditions {
  padding: 48px 0;
  background-color: var(--primary);
  color: var(--hero-text-color);
}

.spec-conditions-card {
  max-width: 900px;
  margin: 0 auto;
}

.spec-conditions-title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--hero-text-color);
  line-height: 1.3;
  text-align: center;
  text-wrap: balance;
}

.spec-conditions-desc {
  margin: 0 auto 20px;
  font-size: 15px;
  color: var(--hero-text-color);
  opacity: 0.9;
  line-height: 1.5;
  text-align: center;
  max-width: 640px;
  text-wrap: pretty;
}

.spec-conditions-partners {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--hero-text-color);
  text-align: center;
  text-wrap: balance;
}

.spec-conditions-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
  margin-bottom: 20px;
}

.profnastil-spec-conditions .spec-conditions-logos {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.spec-conditions-logo {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  min-width: 0;
}

.spec-conditions-logo img {
  max-height: 56px;
  max-width: 88%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.spec-conditions-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: var(--hero-text-color);
  opacity: 0.9;
  line-height: 1.5;
  text-align: center;
}

.spec-conditions-list__item {
  white-space: nowrap;
}

.spec-conditions-list__item:not(:last-child)::after {
  content: " - ";
  margin-left: 16px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .spec-conditions-list__item {
    white-space: normal;
  }

  .spec-conditions-list__item:not(:last-child)::after {
    content: none;
  }
}

@media (min-width: 768px) {
  .spec-conditions-title {
    font-size: 26px;
  }

  .spec-conditions-logos {
    gap: 16px;
  }

  .spec-conditions-logo {
    min-height: 96px;
  }
}

@media (max-width: 1024px) {
  .spec-conditions-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .spec-conditions-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .spec-conditions-logo {
    min-height: 84px;
  }

  .spec-conditions-logo img {
    max-height: 48px;
    max-width: 90%;
  }
}

@media (max-width: 520px) {
  .spec-conditions-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-spec-conditions--trim-mobile .spec-conditions-logos .spec-conditions-logo:last-child {
    display: none;
  }

  .spec-conditions-logo {
    min-height: 76px;
    padding: 8px 10px;
  }

  .spec-conditions-logo img {
    max-height: 42px;
  }

  .profnastil-spec-conditions .spec-conditions-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .profnastil-spec-conditions .spec-conditions-logo {
    min-height: 88px;
    padding: 10px 8px;
  }

  .profnastil-spec-conditions .spec-conditions-logo img {
    max-height: 52px;
    max-width: 95%;
  }
}

/* КАК МЫ РАБОТАЕМ */

.workflow {
  background-color: var(--color-bg-surface);
  padding: 48px 0;
}

.workflow-header {
  text-align: center;
  margin-bottom: 16px;
}

.workflow-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-main);
}

.workflow-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.workflow-step {
  border: 1px solid var(--color-border-subtle);
  border-radius: 16px;
  padding: 18px 16px;
  background-color: var(--color-bg-card);
}

.workflow-step__num {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.workflow-step__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-main);
}

.workflow-step__text {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* КОМПАКТНЫЙ БЛОК ТОЛЩИНА + ПОКРЫТИЯ */
.selection-guide {
  background-color: var(--color-bg-surface);
  padding: 48px 0;
}

.selection-guide-header {
  text-align: center;
  margin-bottom: 16px;
}

.selection-guide-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-main);
}

.selection-guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.selection-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.selection-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-card-title);
}

.selection-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--color-card-desc);
  font-size: 14px;
  line-height: 1.45;
}

/* КОРОТКАЯ ФОРМА ЗАЯВКИ */
.lead-short {
  background-color: var(--primary);
  color: var(--hero-text-color);
  padding: 48px 0;
}

.lead-short .container {
  max-width: 560px;
}

.lead-short-title {
  margin: 0 0 14px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--hero-text-color);
}

.lead-short .hot-lead-note {
  color: var(--primary);
}

.lead-form {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.lead-input {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--color-border-subtle);
  background-color: var(--color-bg-field);
  color: var(--color-text-main);
  font-size: 14px;
  padding: 0 12px;
}

.lead-input::placeholder {
  color: var(--color-text-secondary);
}

.lead-input:focus {
  outline: none;
  border-color: var(--accent);
}

.lead-submit {
  height: 56px;
  border-radius: 24px;
  border: none;
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.lead-submit:hover {
  background-color: var(--accent-hover);
}

.lead-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ОТЗЫВЫ */

.reviews {
  background-color: var(--color-bg-section);
  padding: 48px 0;
}

.reviews-header {
  text-align: center;
  margin-bottom: 16px;
}

.reviews-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-main);
  text-wrap: balance;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.reviews--scroll .reviews-grid {
  display: flex;
  align-items: stretch;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 12px;
  margin-bottom: 0;
}

.reviews--scroll .review-card {
  flex: 0 0 min(480px, calc(100vw - 72px));
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.reviews--scroll .review-card--text {
  height: 376px;
}

.reviews--scroll .review-card--text .review-card__photo {
  flex: 0 0 96px;
  aspect-ratio: auto;
}

.reviews--scroll .review-card--text .photo-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.reviews--slider .photos-scroll-shell {
  max-width: 1080px;
  margin: 0 auto;
}

.reviews--slider .reviews-grid {
  gap: 18px;
  padding: 8px 4px 14px;
  scrollbar-width: none;
}

.reviews--slider .reviews-grid::-webkit-scrollbar {
  display: none;
}

.reviews--slider .review-card {
  flex: 0 0 clamp(260px, calc((100% - 36px) / 3), 340px);
  padding: 9px;
  border-radius: 18px;
  opacity: 0.74;
  transform: scale(0.94);
  scroll-snap-align: center;
  transition: transform 0.28s ease, opacity 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.reviews--slider .review-card.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(231, 179, 0, 0.55);
  box-shadow:
    0 16px 42px rgba(25, 76, 96, 0.14),
    0 4px 12px rgba(25, 76, 96, 0.08);
}

.reviews--slider .review-card__photo {
  aspect-ratio: 1 / 1;
  border-radius: 13px;
  background: #fff;
}

.reviews--slider .review-card__photo img {
  object-fit: contain;
}

.reviews-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.scroll-gallery-dots {
  align-items: center;
  min-height: 16px;
}

.scroll-gallery-dots[hidden] {
  display: none !important;
}

.reviews-slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d7dee2;
  cursor: pointer;
  touch-action: manipulation;
  transition: width 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.reviews-slider-dot.is-active {
  width: 28px;
  background: var(--accent);
}

.reviews-slider-dot:hover,
.reviews-slider-dot:focus-visible {
  background: var(--accent);
  transform: translateY(-1px);
  outline: none;
}

@media (max-width: 768px) {
  .photos--scroll .photos-grid {
    display: flex;
    align-items: stretch;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .photos--scroll .photo-card {
    flex: 0 0 calc(100% - 44px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .reviews--scroll .review-card {
    flex: 0 0 calc(100vw - 44px);
  }

  .reviews--scroll .review-card--text {
    height: 360px;
  }

  .photos--scroll .photos-grid,
  .reviews--scroll .reviews-grid {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    scroll-padding-left: 0;
    scroll-padding-right: 0;
  }

  .reviews--slider .photos-scroll-shell {
    max-width: 100%;
  }

  .reviews--slider .reviews-grid {
    padding-bottom: 10px;
  }

  .reviews--slider .review-card {
    flex-basis: min(330px, calc(100vw - 70px));
    padding: 8px;
    border-radius: 18px;
    opacity: 1;
    transform: none;
  }

  .reviews--slider .review-card__photo {
    border-radius: 14px;
  }
}

.siding-install {
  background: var(--color-bg-section);
  padding: 54px 0 58px;
}

.siding-install__shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 10%, rgba(231, 179, 0, 0.18), transparent 30%),
    radial-gradient(circle at 4% 0%, rgba(255, 255, 255, 0.10), transparent 34%),
    linear-gradient(135deg, #2f6577 0%, #1e5367 48%, #153c4e 100%);
  color: #fff;
  box-shadow: 0 26px 70px rgba(25, 76, 96, 0.24);
  padding: 32px;
}

.siding-install__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 22px;
  align-items: stretch;
}

.siding-install__content,
.siding-install__aside,
.siding-install-gallery,
.siding-install-benefits {
  position: relative;
  z-index: 1;
}

.siding-install__eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.siding-install__title {
  margin: 0;
  max-width: 700px;
  color: #fff;
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 900;
  line-height: 1.04;
  text-wrap: balance;
}

.siding-install__subtitle {
  margin: 18px 0 0;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  font-weight: 750;
  line-height: 1.35;
}

.siding-install__lead {
  margin: 14px 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
}

.siding-install__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.siding-install-stat {
  min-height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.075);
  padding: 14px;
}

.siding-install-stat strong {
  display: block;
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.12;
}

.siding-install-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.3;
}

.siding-install__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.siding-install__cta {
  width: min(100%, 310px);
}

.siding-install__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 240px);
  min-height: 56px;
  border: 2px solid rgba(231, 179, 0, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent);
  font: inherit;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.siding-install__secondary:hover,
.siding-install__secondary:focus-visible {
  transform: translateY(-1px);
  background: rgba(231, 179, 0, 0.12);
  border-color: var(--accent);
}

.siding-install__aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.siding-install-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.085);
  padding: 20px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.siding-install-card__title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.15;
}

.siding-install-checklist {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.siding-install-checklist li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.siding-install-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(231, 179, 0, 0.12);
}

.siding-install-kit {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.siding-install-kit span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.88);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.1;
}

.siding-install-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.siding-install-benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: flex-start;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  padding: 13px 14px;
}

.siding-install-benefit span {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.siding-install-benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
}

.siding-install-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
}

.siding-install-gallery__header {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 1fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 2px;
}

.siding-install-gallery__title {
  margin: 0;
  color: #fff;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.12;
}

.siding-install-gallery__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.siding-install-gallery__group + .siding-install-gallery__group {
  margin-top: 0;
}

.siding-install-gallery__group {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.075);
  padding: 16px;
}

.siding-install-gallery__group--single {
  grid-column: 1 / -1;
}

.siding-install-gallery__group-title {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.siding-install-gallery__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 8px;
}

.siding-install-photo {
  flex: 0 0 min(190px, calc(100vw - 96px));
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.14);
  cursor: zoom-in;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 0;
}

.siding-install-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.siding-install-photo:hover img,
.siding-install-photo:focus-visible img {
  transform: scale(1.045);
}

.siding-install-photo__label {
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 9px;
  z-index: 1;
  display: block;
  max-width: calc(100% - 18px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(16, 36, 47, 0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

@media (max-width: 1024px) {
  .siding-install__grid,
  .siding-install-gallery,
  .siding-install-gallery__header {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .siding-install {
    padding: 44px 0;
  }

  .siding-install__shell {
    border-radius: 22px;
    padding: 20px;
  }

  .siding-install__title {
    font-size: clamp(28px, 9vw, 42px);
  }

  .siding-install__subtitle {
    font-size: 17px;
  }

  .siding-install__stats,
  .siding-install-benefits {
    grid-template-columns: 1fr;
  }

  .siding-install-stat,
  .siding-install-benefit {
    min-height: 0;
  }

  .siding-install__actions,
  .siding-install__cta,
  .siding-install__secondary {
    width: 100%;
  }

  .siding-install-card {
    padding: 18px;
  }

  .siding-install-gallery__group {
    padding: 14px;
  }

  .siding-install-photo {
    flex-basis: min(230px, calc(100vw - 86px));
  }

  .siding-install-gallery__title {
    font-size: 24px;
  }

  .siding-install .photos-scroll-btn {
    display: none;
  }
}

.review-card {
  background-color: var(--color-bg-card);
  border-radius: 16px;
  box-shadow: var(--shadow-card-soft);
  border: 1px solid var(--color-border-subtle);
  padding: 8px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: zoom-in;
}

.review-card * {
  cursor: zoom-in;
}

.review-card__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background-color: var(--color-bg-placeholder);
  overflow: hidden;
}

.review-card__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background-color: #fff;
}

.review-card__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(25, 76, 96, 0.12), rgba(232, 190, 46, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 247, 249, 0.95));
  border: 1px dashed rgba(25, 76, 96, 0.18);
}

.review-card__placeholder-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-card-title);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(25, 76, 96, 0.08);
}

.review-card__name {
  font-weight: 700;
  color: var(--color-card-title);
  margin-bottom: 6px;
}

.review-card__text {
  margin: 0;
  font-size: 14px;
  color: var(--color-card-desc);
  line-height: 1.5;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card__meta {
  margin-top: auto;
  font-size: 12px;
  color: var(--color-text-secondary);
}

/* FAQ */

.faq {
  background-color: var(--color-bg-surface);
  padding: 48px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 16px;
}

.faq-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-main);
  text-wrap: balance;
}

.faq-subtitle {
  margin: 0 auto;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text-secondary);
  text-wrap: balance;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--color-border-subtle);
  border-radius: 16px;
  background-color: var(--color-bg-card);
  box-shadow: var(--shadow-card-soft);
  overflow: hidden;
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  min-height: 48px;
  font-weight: 600;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-wrap: balance;
}

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

.faq-question::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-text-secondary);
  border-bottom: 2px solid var(--color-text-secondary);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(-135deg);
}

.faq-answer {
  padding: 0 16px 14px;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.5;
  text-wrap: pretty;
}

.faq-answer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(231, 179, 0, 0.7);
  text-underline-offset: 2px;
}

.faq-answer a:hover,
.faq-answer a:focus-visible {
  color: var(--accent);
}

.faq-more {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.faq-toggle {
  min-height: 44px;
  border: 1px solid rgba(231, 179, 0, 0.45);
  border-radius: 999px;
  padding: 10px 22px;
  background: var(--color-bg-card);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-card-soft);
}

.faq-toggle:hover,
.faq-toggle:focus-visible {
  background: var(--accent);
  color: var(--primary);
}

.faq-cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.faq-cta .hero-cta,
.faq-cta .hero-cta:hover,
.faq-cta .hero-cta:focus-visible {
  color: var(--primary);
  min-height: 52px;
  padding-left: 22px;
  padding-right: 22px;
}

/* ФИНАЛЬНЫЙ CTA + КАРТА */

.final-cta {
  background-color: var(--primary);
  color: var(--hero-text-color);
  padding: 48px 0;
}

.final-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.final-cta-title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: var(--hero-text-color);
}

.final-cta-subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--hero-text-color);
  opacity: 0.9;
}

.final-actions {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.final-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 24px;
  border-radius: 24px;
  border: none;
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  width: 100%;
}

.final-cta-btn:hover {
  background-color: var(--accent-hover);
}

.final-cta-note {
  margin: 0;
  font-size: 12px;
  color: var(--hero-text-color);
  opacity: 0.9;
}

.map-section {
  background-color: var(--primary);
  padding: 0;
}

.map-section .final-map {
  margin-top: 0;
}

.final-map {
  width: 100%;
  margin-top: 18px;
  overflow: hidden;
  border-top: 0;
  border-bottom: 0;
  background-color: var(--color-bg-card);
  aspect-ratio: 32 / 9;
  position: relative;
}

.final-map__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  cursor: pointer;
}

.final-map__surface {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13, 36, 47, 0.92), rgba(25, 76, 96, 0.78)),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
}

.final-map__details {
  position: relative;
  z-index: 1;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: #ffffff;
}

.final-map__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.final-map__address {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  text-wrap: balance;
}

.final-map__load {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 240px);
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.final-map__load:hover,
.final-map__load:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.final-map__placeholder:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.final-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.final-map-actions {
  width: 100%;
  max-width: 420px;
  margin: 14px auto 0;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .final-map-actions {
    display: none;
  }
}

@media (max-width: 768px) {
  .map-section .final-map {
    aspect-ratio: 32 / 13.5;
  }

  .final-map__placeholder {
    padding: 18px;
  }

  .final-map__address {
    font-size: 16px;
  }

  .final-map-actions {
    max-width: 340px;
    margin: 32px auto;
    padding: 0;
  }

  .final-route-btn {
    width: 100%;
    height: 56px;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
  }

  .map-section .container {
    padding-bottom: 16px;
  }
}

@supports (content-visibility: auto) {
  main > section:not(.hero),
  .map-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }

  .map-section {
    contain-intrinsic-size: 1px 420px;
  }
}

.final-route-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 24px;
  border-radius: 24px;
  border: none;
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  width: 100%;
}

.final-route-btn:hover {
  background-color: var(--accent-hover);
}

/* БЛОК РАСЧЕТА КРОВЛИ */

.calc-guide {
  position: relative;
  padding: 40px 0 8px;
  background: transparent;
  color: var(--color-text-main);
}

.calc-guide::before {
  display: none;
}

.calc-guide .container {
  position: relative;
  z-index: 1;
}

.calc-guide-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px 34px 32px;
  border-radius: 32px;
  border: 1px solid rgba(25, 76, 96, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(25, 76, 96, 0.05), transparent 34%),
    linear-gradient(180deg, #f6fbfd 0%, #edf5f8 100%);
  box-shadow: 0 18px 40px rgba(25, 76, 96, 0.08);
}

.calc-guide-title {
  margin: 0 0 24px;
  max-width: 720px;
  color: var(--color-text-main);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.14;
  font-weight: 800;
  text-wrap: balance;
}

.calc-guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.calc-guide-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 0;
  min-width: 0;
}

.calc-guide-column__title {
  margin: 0;
  color: var(--color-text-main);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.16;
  font-weight: 700;
}

.calc-guide-list {
  display: grid;
  gap: 12px;
}

.calc-guide-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(25, 76, 96, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(25, 76, 96, 0.05);
}

.calc-guide-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 2px solid rgba(231, 179, 0, 0.78);
  color: var(--accent);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  background: rgba(231, 179, 0, 0.1);
}

.calc-guide-item__body {
  min-width: 0;
}

.calc-guide-item__title {
  margin: 0 0 6px;
  color: var(--color-text-main);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.22;
  font-weight: 700;
}

.calc-guide-item__text {
  color: var(--color-text-secondary);
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.45;
  font-weight: 500;
}

.calc-guide-actions {
  margin-top: 8px;
  display: flex;
  justify-content: flex-start;
}

.calc-guide-cta {
  width: auto;
  min-width: 250px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(231, 179, 0, 0.18);
}

@media (min-width: 992px) {
  .calc-guide-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
  }

  .calc-guide-column + .calc-guide-column {
    padding-left: 28px;
    border-left: 1px solid rgba(25, 76, 96, 0.12);
  }

  .calc-guide-column:last-child .calc-guide-actions {
    padding-top: 6px;
  }
}

@media (max-width: 991px) {
  .calc-guide {
    padding-top: 32px;
  }

  .calc-guide-shell {
    padding: 24px 22px 26px;
    border-radius: 28px;
  }
}

@media (max-width: 640px) {
  .calc-guide {
    padding-top: 24px;
  }

  .calc-guide-title {
    margin-bottom: 18px;
  }

  .calc-guide-shell {
    padding: 20px 16px 22px;
    border-radius: 24px;
  }

  .calc-guide-grid {
    gap: 20px;
  }

  .calc-guide-column {
    gap: 14px;
  }

  .calc-guide-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
  }

  .calc-guide-item__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 18px;
  }

  .calc-guide-cta {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    font-size: 17px;
  }
}

/* КВИЗ РАСЧЕТА ПРОФНАСТИЛА */

.quiz {
  background-color: var(--primary);
  padding: 48px 0;
}

.quiz-card {
  max-width: 960px;
  margin: 0 auto;
  background-color: var(--color-bg-card);
  border-radius: 16px;
  padding: 24px 20px 28px;
  box-shadow: var(--shadow-card-soft-strong);
}

.quiz-header {
  margin-bottom: 20px;
}

.quiz-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-main);
}

.quiz-subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.quiz-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.quiz-step {
  padding: 14px 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--color-border-subtle);
  min-width: 0;
}

.quiz-step-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}

.quiz-step-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-main);
}

.quiz-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quiz-option {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  color: var(--color-text-main);
}

.quiz-option input {
  display: none;
}

.quiz-option span {
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--color-border-subtle);
  background-color: var(--color-bg-field);
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.quiz-option input:checked + span,
.quiz-option:hover span {
  font-weight: 600;
}

.quiz-option input:checked + span,
.quiz-option:hover span {
  border-color: var(--accent);
  background-color: var(--chip-selected-bg);
}

.quiz-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quiz-field-label {
  font-size: 13px;
  color: var(--color-text-secondary);
}

.quiz-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--color-border-subtle);
  font-size: 14px;
  font-family: inherit;
  color: var(--color-text-main);
  background-color: var(--color-bg-field);
}

.quiz-input::placeholder {
  color: var(--color-text-secondary);
}

.quiz-input:focus {
  outline: none;
  border-color: var(--accent);
}

.quiz-input--error {
  border-color: #d32f2f !important;
  box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.18);
}

.quiz-input--error.quiz-input:focus {
  border-color: #d32f2f !important;
  box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.25);
}

.quiz-step.quiz-input--error {
  border-color: #d32f2f;
  box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.18);
}

.quiz-error-hint {
  font-size: 12px;
  color: #d32f2f;
  font-weight: 500;
  margin-bottom: 6px;
  animation: quizHintIn 0.3s ease;
}

@keyframes quizHintIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-footer {
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-footer-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  border-radius: 24px;
  border: none;
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.quiz-submit:hover {
  background-color: var(--accent-hover);
}

.quiz-note {
  margin: 0;
  font-size: 12px;
  color: var(--color-text-secondary);
}

.quiz--single-step .quiz-steps {
  grid-template-columns: 1fr;
}

.quiz--single-step .quiz-step {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .quiz-card {
    padding: 28px 32px 32px;
  }

  .quiz-steps {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }

  .quiz-footer-fields {
    flex-direction: row;
    gap: 16px;
  }

  .quiz-field {
    flex: 1;
  }

  .quiz--single-step .quiz-steps {
    grid-template-columns: 1fr;
  }

  .quiz--single-step .quiz-options {
    gap: 6px;
  }

  .quiz--single-step .quiz-option span {
    padding: 7px 10px;
    font-size: 12px;
  }
}

/* ВЫБОР ПРИМЕНЕНИЯ */

.usage {
  padding: 48px 0;
}

.usage-header {
  text-align: center;
  margin-bottom: 16px;
}

.usage-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-main);
}

.usage-subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-secondary);
}

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

.usage-card {
  background-color: var(--color-bg-card);
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: var(--shadow-card-usage);
  border: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
}

.usage-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent);
  flex-shrink: 0;
}

.usage-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-main);
}

/* ДЛЯНЦЕВЫЕ И МАТОВЫЕ ПОКРЫТИЯ */
.finish-catalog {
  background:
    radial-gradient(circle at 18% 10%, rgba(231, 179, 0, 0.08), transparent 34%),
    linear-gradient(180deg, var(--color-bg-surface), var(--color-bg-page));
  padding: 72px 0 64px;
}

.finish-catalog__header {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.finish-catalog__title {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 800;
  color: var(--color-text-main);
}

.finish-catalog__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background-color: var(--accent);
}

.finish-catalog__subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text-secondary);
}

.finish-catalog__tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: -4px auto 28px;
  padding: 4px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(25, 76, 96, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(25, 76, 96, 0.08);
}

.finish-catalog__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--color-text-secondary);
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.finish-catalog__tab:hover,
.finish-catalog__tab:focus-visible {
  color: var(--color-text-main);
  outline: none;
}

.finish-catalog__tab.is-active {
  background: var(--btn-gradient);
  color: var(--primary);
  box-shadow: var(--btn-glow);
}

.finish-catalog__panel[hidden] {
  display: none;
}

.finish-catalog__groups {
  display: grid;
  gap: 34px;
  min-width: 0;
}

.finish-catalog__group {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.finish-catalog__shell {
  min-width: 0;
  max-width: 100%;
}

.finish-catalog__group-header {
  display: grid;
  gap: 6px;
  max-width: 760px;
}

.finish-catalog__eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(231, 179, 0, 0.14);
  color: var(--color-text-main);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finish-catalog__group-title {
  margin: 0;
  font-size: 23px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--color-text-main);
}

.finish-catalog__group-subtitle {
  margin: 0;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.finish-catalog__track {
  display: flex;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 14px;
}

.finish-card {
  flex: 0 0 min(420px, calc(100vw - 72px));
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--color-border-subtle);
  border-radius: 22px;
  background: var(--color-bg-card);
  box-shadow: var(--shadow-card-soft);
  cursor: zoom-in;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.finish-card:hover,
.finish-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--color-border-accent);
  box-shadow: 0 14px 32px rgba(25, 76, 96, 0.16);
}

.finish-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.finish-card__sample {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  border-radius: 50%;
  background: var(--finish-sample);
  border: 7px solid rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.16), 0 10px 22px rgba(25, 76, 96, 0.14);
}

.finish-card__heading {
  min-width: 0;
}

.finish-card__type {
  display: block;
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finish-card__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 850;
  color: var(--color-text-main);
}

.finish-card__description {
  margin: 0;
  font-size: 14px;
  line-height: 1.48;
  color: var(--color-text-secondary);
}

.finish-card__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.finish-card__spec {
  min-width: 0;
  padding: 10px;
  border-radius: 12px;
  background: rgba(25, 76, 96, 0.06);
}

.finish-card__spec dt {
  margin: 0 0 3px;
  font-size: 11px;
  font-weight: 800;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.finish-card__spec dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 750;
  color: var(--color-text-main);
}

.finish-card__colors {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 0;
  align-content: start;
}

.finish-color {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 6px;
  width: 100%;
  min-width: 0;
  min-height: 78px;
  padding: 6px 5px;
  border: 1px solid var(--color-border-subtle);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--color-text-main);
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  text-align: center;
}

.finish-color--button {
  cursor: zoom-in;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.finish-color--button:hover,
.finish-color--button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--color-border-subtle);
  background: rgba(231, 179, 0, 0.12);
  box-shadow: 0 8px 18px rgba(25, 76, 96, 0.12);
  outline: none;
}

.finish-color--popular {
  border-color: var(--color-border-subtle);
  box-shadow: none;
}

.finish-color__thumb {
  display: block;
  width: 52px;
  height: 52px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: rgba(25, 76, 96, 0.06);
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.08);
}

.finish-color__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.finish-color__thumb--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
}

.finish-color__dot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: var(--finish-color);
}

.finish-color__label {
  min-width: 0;
  min-height: 2.3em;
  overflow: hidden;
  display: -webkit-box;
  line-height: 1.15;
  text-overflow: clip;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.finish-color__name,
.finish-color__code {
  display: block;
}

.finish-color__name {
  font-weight: 800;
}

.finish-color__code {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-muted);
}

.finish-catalog--rows .finish-catalog__groups {
  gap: 38px;
}

.finish-catalog__rows {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.finish-row-card {
  display: grid;
  grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--color-border-subtle);
  border-radius: 18px;
  background: var(--color-bg-card);
  box-shadow: var(--shadow-card-soft);
  cursor: zoom-in;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.finish-row-card:hover,
.finish-row-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--color-border-accent);
  box-shadow: 0 14px 32px rgba(25, 76, 96, 0.16);
}

.finish-row-card__summary {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: zoom-in;
}

.finish-row-card__summary .finish-card__sample {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
  border-width: 6px;
}

.finish-row-card__summary-text {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.finish-row-card__title {
  font-size: 22px;
  line-height: 1.12;
  font-weight: 850;
  color: var(--color-text-main);
}

.finish-row-card__description {
  font-size: 13px;
  line-height: 1.42;
  color: var(--color-text-secondary);
}

.finish-row-card__toggle {
  display: none;
}

.finish-row-card__body {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  align-items: start;
}

.finish-row-card__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
}

.finish-row-card__spec {
  min-width: 0;
  padding: 8px 9px;
  border-radius: 10px;
  background: rgba(25, 76, 96, 0.06);
}

.finish-row-card__spec dt {
  margin: 0 0 2px;
  font-size: 10px;
  font-weight: 800;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.finish-row-card__spec dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.22;
  font-weight: 750;
  color: var(--color-text-main);
}

.finish-row-card__palette {
  min-width: 0;
  position: relative;
}

.finish-row-card__palette.has-horizontal-overflow::after {
  display: none;
}

.finish-row-card__colors {
  display: flex;
  gap: 9px;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  padding: 2px 42px 8px 2px;
}

.has-drag-scroll {
  cursor: auto;
}

.has-drag-scroll.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  -webkit-user-select: none;
  user-select: none;
}

.has-drag-scroll.is-dragging * {
  pointer-events: none;
}

.has-drag-scroll .finish-color--button,
.has-drag-scroll .ral-card[data-finish-color-src],
.has-drag-scroll .ral-card[data-finish-color-src] * {
  cursor: zoom-in !important;
  cursor: -webkit-zoom-in !important;
}

.has-drag-scroll.is-dragging .finish-color--button,
.has-drag-scroll.is-dragging .ral-card[data-finish-color-src],
.has-drag-scroll.is-dragging .ral-card[data-finish-color-src] * {
  cursor: grabbing !important;
}

.finish-row-card__colors .finish-color {
  flex: 0 0 96px;
  width: 96px;
  min-height: 92px;
  font-size: 13px;
  scroll-snap-align: start;
}

.finish-row-card__colors .finish-color__thumb {
  width: 62px;
  height: 62px;
}

.finish-palette-dots {
  justify-content: flex-start;
  gap: 6px;
  min-height: 12px;
  margin: 2px 0 0;
  padding-left: 2px;
}

.finish-palette-dot {
  width: 7px;
  height: 7px;
  background: rgba(25, 76, 96, 0.18);
}

.finish-palette-dot.is-active {
  width: 20px;
  background: var(--accent);
}

/* SEO-БЛОК ПО ВИДАМ МЕТАЛЛИЧЕСКОГО САЙДИНГА */
.siding-profile-seo {
  background:
    radial-gradient(circle at 80% 6%, rgba(231, 179, 0, 0.08), transparent 28%),
    linear-gradient(180deg, var(--color-bg-page) 0%, var(--color-bg-surface) 100%);
  padding: 68px 0 76px;
}

.siding-profile-seo__header {
  max-width: 840px;
  margin: 0 auto 30px;
  text-align: center;
}

.siding-profile-seo__title {
  margin: 0 0 12px;
  color: var(--color-text-main);
  font-size: 28px;
  font-weight: 850;
  line-height: 1.18;
}

.siding-profile-seo__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background-color: var(--accent);
}

.siding-profile-seo__subtitle {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.55;
}

.siding-profile-seo__list {
  display: grid;
  gap: 18px;
}

.siding-profile-seo-card {
  display: grid;
  grid-template-columns: minmax(190px, 270px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--color-border-subtle);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(25, 76, 96, 0.08);
}

.siding-profile-seo-card--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 270px);
}

.siding-profile-seo-card--reverse .siding-profile-seo-card__media {
  order: 2;
}

.siding-profile-seo-card--reverse .siding-profile-seo-card__content {
  order: 1;
}

.siding-profile-seo-card__media {
  aspect-ratio: 1 / 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(25, 76, 96, 0.08), rgba(231, 179, 0, 0.08)),
    #f7fafb;
  box-shadow: inset 0 0 0 1px rgba(25, 76, 96, 0.08);
}

.siding-profile-seo-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.siding-profile-seo-card__placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 18px;
  color: var(--color-text-main);
  text-align: center;
}

.siding-profile-seo-card__placeholder span {
  font-size: 19px;
  font-weight: 900;
  line-height: 1.15;
}

.siding-profile-seo-card__placeholder small {
  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}

.siding-profile-seo-card__content {
  min-width: 0;
}

.siding-profile-seo-card__title {
  margin: 0;
  color: var(--color-text-main);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.12;
}

.siding-profile-seo-card__text {
  margin: 14px 0 0;
  color: var(--color-text-secondary);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.siding-profile-seo-card__points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.siding-profile-seo-card__points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(25, 76, 96, 0.10);
  border-radius: 999px;
  background: rgba(25, 76, 96, 0.05);
  color: var(--color-text-main);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.siding-profile-seo-card__points li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--accent);
}

@media (max-width: 960px) {
  .siding-profile-seo-card,
  .siding-profile-seo-card--reverse {
    grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
    gap: 18px;
  }

  .siding-profile-seo-card--reverse .siding-profile-seo-card__media,
  .siding-profile-seo-card--reverse .siding-profile-seo-card__content {
    order: initial;
  }
}

@media (max-width: 768px) {
  .siding-profile-seo {
    padding: 48px 0 54px;
  }

  .siding-profile-seo__header {
    margin-bottom: 22px;
  }

  .siding-profile-seo__title {
    font-size: clamp(22px, 6vw, 28px);
  }

  .siding-profile-seo-card,
  .siding-profile-seo-card--reverse {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 14px;
    border-radius: 20px;
  }

  .siding-profile-seo-card__media {
    max-height: none;
    border-radius: 16px;
  }

  .siding-profile-seo-card__title {
    font-size: 22px;
  }

  .siding-profile-seo-card__text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.48;
  }

  .siding-profile-seo-card__points {
    display: grid;
    gap: 8px;
    margin-top: 14px;
  }

  .siding-profile-seo-card__points li {
    justify-content: flex-start;
    border-radius: 14px;
  }
}

/* КОМПЛЕКТУЮЩИЕ ДЛЯ КРОВЛИ */
.roof-accessories {
  background: var(--color-bg-page);
  padding: 72px 0 64px;
}

.roof-accessories__header {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.roof-accessories__title {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 800;
  color: var(--color-text-main);
}

.roof-accessories__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background-color: var(--accent);
}

.roof-accessories__subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text-secondary);
}

.roof-accessories-visuals {
  display: grid;
  gap: 34px;
}

.roof-accessories-visual {
  max-width: 1080px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid var(--color-border-subtle);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(231, 179, 0, 0.12), transparent 32%),
    var(--color-bg-card);
  box-shadow: var(--shadow-card-soft);
}

.roof-accessories-visual__content {
  max-width: 780px;
  margin: 0 auto 18px;
  text-align: center;
}

.roof-accessories-visual__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(231, 179, 0, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roof-accessories-visual__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--color-text-main);
}

.roof-accessories-visual__subtitle {
  margin: 10px auto 0;
  max-width: 680px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text-secondary);
}

.roof-accessories-visual__media {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(25, 76, 96, 0.08);
  cursor: zoom-in;
  overflow: hidden;
}

.roof-accessories-visual__media img {
  display: block;
  width: 100%;
  height: auto;
}

.roof-accessories__groups {
  display: grid;
  gap: 32px;
}

.roof-accessories__group {
  display: grid;
  gap: 16px;
}

.roof-accessories__group-header {
  display: grid;
  gap: 6px;
  max-width: 760px;
}

.roof-accessories__group-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 800;
  color: var(--color-text-main);
}

.roof-accessories__group-subtitle {
  margin: 0;
  max-width: 740px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.roof-accessories__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 14px;
}

.accessory-card {
  flex: 0 0 min(320px, calc(100vw - 72px));
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 248px;
  padding: 18px;
  border: 1px solid var(--color-border-subtle);
  border-radius: 20px;
  background: var(--color-bg-card);
  box-shadow: var(--shadow-card-soft);
}

.accessory-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.accessory-card__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  background: rgba(231, 179, 0, 0.14);
  color: var(--primary);
}

.accessory-card__line {
  position: relative;
  display: block;
  width: 28px;
  height: 18px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: skewX(-22deg);
}

.accessory-card__line::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 16px;
  border-bottom: 3px solid currentColor;
}

.accessory-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(25, 76, 96, 0.08);
  color: var(--color-text-main);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.accessory-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.24;
  font-weight: 800;
  color: var(--color-text-main);
}

.accessory-card__purpose {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-text-secondary);
}

.accessory-card__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.accessory-card__size {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(231, 179, 0, 0.45);
  border-radius: 999px;
  background: rgba(231, 179, 0, 0.1);
  color: var(--color-text-main);
  font-size: 13px;
  font-weight: 800;
}


@media (max-width: 768px) {
  .finish-catalog {
    padding: 48px 0;
  }

  .finish-catalog__header {
    margin-bottom: 22px;
  }

  .finish-catalog__title {
    font-size: clamp(22px, 6vw, 28px);
  }

  .finish-catalog__tabs {
    width: 100%;
    gap: 6px;
    margin-bottom: 22px;
  }

  .finish-catalog__tab {
    flex: 1 1 0;
    min-height: 42px;
    padding: 0 12px;
    font-size: 13px;
  }

  .finish-catalog__group-title {
    font-size: 20px;
  }

  .finish-catalog__track {
    gap: 14px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 4px 0 10px;
    scroll-padding-left: 0;
    scroll-padding-right: 0;
    scroll-snap-type: x mandatory;
  }

  .finish-card {
    flex-basis: calc(100vw - 44px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 14px;
    border-radius: 18px;
  }

  .finish-catalog .photos-scroll-btn {
    display: none;
  }

  .finish-card__sample {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
    border-width: 6px;
  }

  .finish-card__title {
    font-size: 21px;
  }

  .finish-card__specs {
    grid-template-columns: 1fr;
  }

  .finish-card__colors {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .finish-color {
    min-height: 74px;
    padding: 5px;
    font-size: 11px;
  }

  .finish-color__thumb {
    width: 48px;
    height: 48px;
  }

  .finish-catalog--rows .finish-catalog__groups {
    gap: 30px;
  }

  .finish-catalog__rows {
    gap: 10px;
  }

  .finish-row-card {
    display: block;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
  }

  .finish-row-card__summary {
    align-items: center;
    gap: 11px;
    padding: 13px 14px;
    cursor: zoom-in;
  }

  .finish-row-card__summary .finish-card__sample {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    border-width: 5px;
  }

  .finish-row-card__title {
    font-size: 19px;
  }

  .finish-row-card__description {
    font-size: 12px;
    line-height: 1.35;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .finish-row-card__toggle {
    display: none;
  }

  .finish-row-card__toggle::before,
  .finish-row-card__toggle::after {
    content: none;
  }

  .finish-row-card__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .finish-row-card.is-open .finish-row-card__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .finish-row-card__body {
    display: none;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 14px 14px;
  }

  .finish-row-card.is-open .finish-row-card__body {
    display: grid;
  }

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

  .finish-row-card__colors {
    padding: 2px 38px 8px 2px;
  }

  .photos-scroll-shell.has-horizontal-overflow::after {
    width: 52px;
    bottom: 12px;
  }

  .finish-row-card__palette.has-horizontal-overflow::after {
    width: 46px;
    bottom: 8px;
  }

  .finish-row-card__colors .finish-color {
    flex-basis: 92px;
    width: 92px;
    min-height: 86px;
  }

  .finish-row-card__colors .finish-color__thumb {
    width: 56px;
    height: 56px;
  }

  .roof-accessories {
    padding: 48px 0;
  }

  .roof-accessories__header {
    margin-bottom: 22px;
  }

  .roof-accessories__title {
    font-size: clamp(22px, 6vw, 28px);
  }

  .roof-accessories-visuals {
    gap: 24px;
  }

  .roof-accessories-visual {
    padding: 14px;
    border-radius: 22px;
  }

  .roof-accessories-visual__content {
    margin-bottom: 14px;
  }

  .roof-accessories-visual__title {
    font-size: 20px;
  }

  .roof-accessories-visual__subtitle {
    font-size: 14px;
  }

  .roof-accessories-visual__media {
    border-radius: 18px;
  }

  .roof-accessories__group-title {
    font-size: 20px;
  }

  .roof-accessories__track {
    gap: 14px;
    padding-bottom: 10px;
  }

  .accessory-card {
    flex-basis: calc(100vw - 44px);
    min-height: 232px;
    padding: 16px;
    border-radius: 18px;
  }
}

/* ПОПУЛЯРНЫЕ ЦВЕТА */
.colors {
  background-color: var(--color-bg-surface);
  padding: 48px 0;
}

.colors .container {
  max-width: 1200px;
}

.colors-title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-main);
  text-align: center;
}

.colors-subtitle {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--color-text-secondary);
  text-align: center;
}

.colors .colors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.color-palette-card {
  margin: 0;
  border-radius: 12px;
  border: 1px solid var(--color-border-subtle);
  background-color: var(--color-bg-card);
  padding: 10px 10px 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.color-palette-image {
  width: 100%;
  display: block;
  height: auto;
  margin-bottom: 6px;
}

.color-palette-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-main);
}

.colors-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.colors-toggle {
}

.colors-all {
  margin-top: 20px;
}

.colors-all-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-main);
  text-align: center;
}

.colors .colors-all-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* =========================
   RAL GRID - FIXED 5 COLUMNS
   ========================= */

.ral-popular-grid,
.ral-all-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 200px));
  justify-content: center;
  gap: 24px;
  width: 100%;
  margin: 0 auto;
}

/* Карточка */
.ral-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: 22px;
  padding: 16px;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  box-shadow: var(--shadow-card-soft);
  cursor: default;
}

/* Изображение */
.ral-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 10px;
}

/* Подпись */
.ral-code {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-card-title);
  line-height: 1.2;
}

.ral-name {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-secondary);
  line-height: 1.3;
  margin-top: 2px;
}

.ral-card--catalog-color {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100%;
  overflow: hidden;
}

.ral-card--catalog-color img {
  box-shadow: inset 0 0 0 1px rgba(25, 76, 96, 0.08);
}

.ral-card--catalog-color .ral-code,
.ral-card--catalog-color .ral-name,
.ral-card--catalog-color .ral-meta {
  padding-left: 2px;
  padding-right: 2px;
}

.ral-badge {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 24px;
  margin: 0 0 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(231, 179, 0, 0.14);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.ral-meta {
  margin-top: 8px;
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.ral-card--ecosteel .ral-badge {
  background: rgba(25, 76, 96, 0.1);
  color: var(--color-text-main);
}

/* Hover (единый для заводов и цветов) */
.spec-conditions-logo:hover,
.ral-card:hover,
.spec-conditions-logo.ios-lift:hover,
.ral-card.ios-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--color-border-accent);
}

.ral-card,
.ral-card * {
  cursor: default !important;
}

.ral-card[data-finish-color-src],
.ral-card[data-finish-color-src] * {
  cursor: pointer !important;
}

.ral-card[data-finish-color-src]:focus-visible {
  outline: 3px solid rgba(231, 179, 0, 0.45);
  outline-offset: 4px;
}

.colors--horizontal-scroll .colors-grid,
.colors--horizontal-scroll .colors-all-grid {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.colors--horizontal-scroll .colors-scroll-shell {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.colors--horizontal-scroll .colors-header,
.colors--horizontal-scroll .colors-actions {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.colors--horizontal-scroll .ral-popular-grid,
.colors--horizontal-scroll .ral-all-grid {
  --ral-card-basis: calc((100% - 36px) / 4);
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 12px;
  width: 100%;
  margin: 0;
}

.colors--horizontal-scroll .ral-card {
  flex: 0 0 var(--ral-card-basis);
  width: var(--ral-card-basis);
  min-width: var(--ral-card-basis);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 14px;
  border-radius: 22px;
}

.colors--horizontal-scroll .ral-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 10px;
}

.ral-card--skeleton {
  pointer-events: none;
}

.ral-skeleton-box,
.ral-skeleton-line {
  border-radius: 12px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.24) 50%,
    rgba(255, 255, 255, 0.08) 100%
  );
  background-size: 200% 100%;
  animation: ral-skeleton-shimmer 1.1s linear infinite;
}

.ral-skeleton-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 10px;
}

.ral-skeleton-line {
  width: 78%;
  height: 15px;
  margin: 0 auto;
}

@keyframes ral-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Планшет */
@media (max-width: 1023px) {
  .ral-popular-grid,
  .ral-all-grid {
    grid-template-columns: repeat(auto-fit, minmax(155px, 185px));
    gap: 20px;
  }
}

/* Мобильный */
@media (max-width: 768px) {
  .ral-popular-grid,
  .ral-all-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 165px));
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .ral-popular-grid,
  .ral-all-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 14px;
  }
}

.decor-colors {
  background-color: var(--color-bg-section);
  padding: 48px 0;
}

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

/* ПРОСМОТР ИЗОБРАЖЕНИЙ */
.image-viewer[hidden] {
  display: none;
}

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 300;
}

.image-viewer__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
}

.image-viewer__dialog {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1100px);
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  border-radius: 12px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.image-viewer__title {
  width: 100%;
  padding: 16px 54px 12px 18px;
  color: var(--color-text-main);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 850;
  text-align: center;
}

.image-viewer__title[hidden],
.image-viewer__thumbs[hidden] {
  display: none;
}

.image-viewer__img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  display: block;
  background-color: #ffffff;
}

.image-viewer__dialog--gallery .image-viewer__img {
  max-height: calc(100vh - 180px);
}

.image-viewer__thumbs {
  display: flex;
  width: 100%;
  gap: 10px;
  padding: 12px;
  overflow-x: auto;
  background: rgba(25, 76, 96, 0.04);
}

.image-viewer__thumb {
  width: 86px;
  height: 64px;
  flex: 0 0 86px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}

.image-viewer__thumb.is-active {
  border-color: var(--accent);
}

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

.image-viewer__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--color-border-subtle);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

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

.quick-lead-modal {
  position: fixed;
  inset: 0;
  z-index: 320;
}

.quick-lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.64);
}

.quick-lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 540px);
  margin: 40px auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.quick-lead-modal__content {
  padding: 30px 28px 26px;
}

.quick-lead-modal__title {
  margin: 0 0 10px;
  padding-right: 44px;
  font-size: 24px;
  line-height: 1.15;
  color: var(--color-text-main);
}

.quick-lead-modal__subtitle {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.quick-lead-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border-subtle);
  background: rgba(25, 76, 96, 0.08);
  color: var(--color-text-main);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.lead-form--modal {
  box-shadow: none;
  background: transparent;
  border: none;
  padding: 0;
  gap: 14px;
}

.lead-form--modal .lead-input {
  height: 50px;
  padding: 0 14px;
}

.lead-form--modal .form-consent {
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(25, 76, 96, 0.04);
}

.lead-form--modal .form-consent__text {
  font-size: 13px;
  line-height: 1.45;
}

.lead-form--modal .lead-submit {
  margin-top: 2px;
}

.lead-form--modal .hot-lead-note {
  margin: 6px 0 4px;
  text-align: center;
}


/* АДАПТИВ */

@media (max-width: 767px) {
  .quick-lead-modal__dialog {
    width: min(100% - 20px, 540px);
    margin: 18px auto;
  }

  .quick-lead-modal__content {
    padding: 22px 16px 18px;
  }

  .quick-lead-modal__title {
    font-size: 21px;
    padding-right: 38px;
  }

  .quick-lead-modal__subtitle {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .hot-lead,
  .profiles,
  .profiles-cta,
  .coatings,
  .thickness,
  .quiz,
  .photos,
  .benefits,
  .workflow,
  .reviews,
  .faq,
  .final-cta,
  .usage,
  .all-profiles,
  .colors {
    padding: 32px 0;
  }
}

@media (min-width: 480px) {
}

@media (min-width: 768px) {

  .usage {
    padding: 48px 0;
  }

  .usage-grid {
    gap: 20px;
  }

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

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

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

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

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

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

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

  .workflow-steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

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

  .selection-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .colors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .decor-colors .colors-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .colors--horizontal-scroll .ral-popular-grid,
  .colors--horizontal-scroll .ral-all-grid {
    --ral-card-basis: calc((100% - 24px) / 3);
    gap: 12px;
    padding-bottom: 8px;
  }
}

@media (min-width: 1024px) {
  .usage-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .all-profiles-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .all-profiles--catalog .all-profiles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

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

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

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

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

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

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

  .colors-all-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .decor-colors .colors-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
}

/* СОДЛАСИЕ В ФОРМАХ */

.form-consent {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-consent__checkbox {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.form-consent__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  flex: 1;
}

.form-consent__text a {
  color: var(--color-text-main);
  text-decoration: underline;
}

.form-consent.quiz-input--error {
  border-color: #d32f2f;
  box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.18);
}

.form-consent .quiz-error-hint {
  width: 100%;
}

.quiz-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.quiz-form:has(:invalid) .quiz-submit {
  cursor: not-allowed;
}

/* COOKIE BANNER */

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
}

.cookie-banner__inner {
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: 16px;
  box-shadow: var(--shadow-card-soft-strong);
  padding: 14px 14px;
  display: grid;
  gap: 12px;
}

.cookie-banner__text {
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-text-main);
}

.cookie-banner__text a {
  color: var(--color-text-main);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-btn {
  height: 44px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--color-border-subtle);
  background-color: transparent;
  color: var(--color-text-main);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cookie-btn--primary {
  border: none;
  background-color: var(--accent);
  color: var(--primary);
}

.cookie-btn--primary:hover {
  background-color: var(--accent-hover);
}

.cookie-btn--ghost:hover {
  border-color: var(--accent);
}

@media (min-width: 768px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 16px 18px;
  }

  .cookie-banner__actions {
    flex-direction: row;
    gap: 10px;
  }

  .cookie-btn {
    height: 44px;
    padding: 0 16px;
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .cookie-banner__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-radius: 12px;
  }

  .cookie-banner__text {
    font-size: 11px;
    line-height: 1.3;
  }

  .cookie-banner__actions {
    flex-direction: row;
    gap: 0;
  }

  .cookie-btn {
    height: 36px;
    min-width: 76px;
    padding: 0 12px;
    border-radius: 10px;
    white-space: nowrap;
  }
}

/* SEO BLOCKS */

.breadcrumbs,
.seo-text,
.seo-links,
.catalog-links,
.related-products {
  background-color: #194C60;
  color: #FFFFFF;
}

.breadcrumbs--inline {
  background-color: transparent;
  margin: 0 0 8px;
}

.breadcrumbs__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0 0 20px !important;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: #E7B300 !important;
}

.seo-text {
  margin-top: 0;
  padding: 40px 0 48px;
}

.seo-text__intro {
  max-width: 760px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 17px;
  line-height: 1.55;
  text-align: center;
}

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

.seo-story-card {
  position: relative;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.seo-story-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.seo-story-card__index {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(231, 179, 0, 0.16);
  color: #F2D57A;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.seo-text .seo-story-card__title {
  color: #FFFFFF;
  margin: 0 0 12px !important;
  font-size: clamp(18px, 2vw, 23px) !important;
  font-weight: 800;
  line-height: 1.18 !important;
  text-align: left;
  text-wrap: balance;
}

.seo-story-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 14px;
  list-style: none;
}

.seo-story-card__facts li {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
}

.seo-text .seo-story-card__text {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 15px;
  line-height: 1.58;
}

.seo-text .seo-story-card__text + .seo-story-card__text {
  margin-top: 10px;
}

.related-products h2,
.seo-links h2,
.catalog-links__title,
.catalog-links h3 {
  color: #FFFFFF;
}

.related-products h2,
.seo-links h2 {
  text-align: center;
}

.related-products ul,
.seo-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.mobile-only-link {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only-link {
    display: list-item;
  }

  .seo-text {
    padding: 28px 0 34px;
  }

  .seo-text__intro {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
  }

  .seo-story-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
  }

  .seo-story-card {
    padding: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }

  .seo-story-card__topline {
    margin-bottom: 10px;
  }

  .seo-story-card__index {
    min-height: 26px;
    padding: 0 9px;
    font-size: 11px;
  }

  .seo-text .seo-story-card__title {
    font-size: 18px !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
  }

  .seo-story-card__facts {
    gap: 6px;
    margin-bottom: 12px;
  }

  .seo-story-card__facts li {
    min-height: 26px;
    padding: 5px 8px;
    font-size: 11px;
  }

  .seo-text .seo-story-card__text {
    font-size: 13px;
    line-height: 1.5;
  }

  .related-products a,
  .seo-links a {
    white-space: normal;
    text-align: center;
    overflow-wrap: anywhere;
  }
}

.seo-text a,
.catalog-links a {
  color: #F2F4F5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.seo-text a:hover,
.seo-text a:focus-visible,
.catalog-links a:hover,
.catalog-links a:focus-visible {
  color: #E7B300;
  text-decoration: none;
}

.related-products a,
.seo-links a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: #F2F4F5;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 4px 10px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.related-products a:hover,
.related-products a:focus-visible,
.seo-links a:hover,
.seo-links a:focus-visible {
  color: #E7B300;
  text-decoration: none;
  background-color: rgba(231, 179, 0, 0.14);
}

@media (min-width: 1024px) {
  .profile-title-break-desktop {
    display: block;
  }

  .related-products a,
  .seo-links a {
    font-size: 13px;
    line-height: 1.2;
  }
}

.catalog-links__grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px 32px !important;
}

.catalog-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 900px) {
  .catalog-links__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* ============================================
   VISUAL DEPTH SYSTEM - Section Backgrounds
   ============================================ */

/* Light (section-bg) sections: subtle warm glow from top */
.profiles,
.all-profiles,
.reviews,
.coatings,
.hot-lead {
  background-image:
    var(--section-glow),
    var(--section-ambient-1);
}

/* Surface sections: cool ambient from corner */
.thickness,
.faq,
.workflow,
.selection-guide {
  background-image:
    var(--section-ambient-2);
}

/* Dark sections: differentiated depth through radial overlays */
.benefits {
  background-image: none;
}

.photos {
  background-image: none;
}

.quiz {
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(231, 179, 0, 0.04), transparent),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(0, 0, 0, 0.08), transparent);
}

.spec-conditions {
  background-image:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255, 255, 255, 0.03), transparent);
}

/* ============================================
   SECTION TITLE ACCENT LINE
   ============================================ */

.profiles-title,
.all-profiles-title,
.thickness-title,
.coatings-title,
.reasons-title,
.photos-title,
.benefits-title,
.reviews-title,
.faq-title,
.workflow-title,
.selection-guide-title,
.colors-title,
.usage-title,
.installers-title {
  position: relative;
  padding-bottom: 14px;
}

.profiles-title::after,
.all-profiles-title::after,
.thickness-title::after,
.coatings-title::after,
.reasons-title::after,
.photos-title::after,
.benefits-title::after,
.reviews-title::after,
.faq-title::after,
.workflow-title::after,
.selection-guide-title::after,
.colors-title::after,
.usage-title::after,
.installers-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
}

/* ============================================
   SECTION DIVIDERS - Soft Transitions
   ============================================ */

/* Position relative for sections that need pseudo-elements */
.benefits,
.photos,
.quiz,
.spec-conditions,
.lead-short,
.final-cta,
.installers,
.profiles,
.all-profiles,
.thickness,
.faq,
.reviews,
.workflow,
.colors {
  position: relative;
}

/* Dark sections: top fade from previous light section */
.quiz::before,
.spec-conditions::before,
.lead-short::before,
.final-cta::before {
  content: none;
  display: none;
  background: none;
  pointer-events: none;
}

/* Dark sections: bottom fade to next light section */
.quiz::after,
.spec-conditions::after,
.lead-short::after {
  content: none;
  display: none;
  background: none;
  pointer-events: none;
}

.lead-short::after {
  content: none;
  display: none;
}

.lead-short + .related-products {
  margin-top: -1px;
}

/* Refined price tiles after the profnastil hero. */
.hero + .profnastil-price-strip {
  padding-top: clamp(44px, 4.8vw, 64px);
}

.profnastil-price-strip {
  padding-bottom: clamp(44px, 4.2vw, 58px);
}

.profnastil-price-strip__header {
  margin-bottom: 24px;
}

.profnastil-price-strip__title {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  padding-bottom: 14px;
  font-size: clamp(30px, 2.8vw, 40px);
}

.profnastil-price-strip__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateX(-50%);
}

.profnastil-price-strip__grid {
  gap: 18px;
}

.profnastil-price-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
}

.profnastil-price-card__media {
  aspect-ratio: 1.08 / 1;
  background: #ffffff;
}

.profnastil-price-card__media img {
  object-fit: cover;
}

.profnastil-price-card__body {
  flex: 1 1 auto;
  justify-content: flex-end;
  padding: 14px 12px 16px;
}

.profnastil-price-card__title {
  min-height: 42px;
  margin-bottom: 10px;
  font-size: 16px;
}

.profnastil-price-card__price {
  font-size: 17px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.65);
}

.profnastil-price-card__btn {
  width: min(160px, 100%);
  min-height: 38px;
  margin-top: 12px;
  font-size: 14px;
}

.profnastil-price-strip__note {
  width: fit-content;
  max-width: min(820px, calc(100% - 32px));
  margin-top: 28px;
  padding: 13px 22px;
  border: 1px solid rgba(25,76,96,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: var(--primary);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(25,76,96,0.08);
}

@media (max-width: 768px) {
  .hero + .profnastil-price-strip {
    padding-top: 38px !important;
  }

  .profnastil-price-strip__title {
    font-size: clamp(24px, 7vw, 30px) !important;
  }

  .profnastil-price-strip__note {
    width: auto;
    max-width: 100%;
    border-radius: 14px;
    font-size: 15px;
    line-height: 1.35;
  }
}

/* Final dark theme contrast audit overrides. Keep these at the end of the bundle. */

/* Final dark theme polish for shared catalog blocks. */

/* Coating samples: zoom affordance while keeping drag-scroll usable. */
.finish-color--button,
.finish-color--button *,
.finish-card,
.finish-card *,
.finish-row-card,
.finish-row-card *,
.has-drag-scroll .finish-color--button,
.has-drag-scroll .finish-color--button *,
.has-drag-scroll .ral-card[data-finish-color-src],
.has-drag-scroll .ral-card[data-finish-color-src] *,
.ral-card[data-finish-color-src],
.ral-card[data-finish-color-src] * {
  cursor: zoom-in !important;
}

.finish-color--button:hover,
.finish-color--button:focus-visible,
.ral-card[data-finish-color-src]:hover,
.ral-card[data-finish-color-src]:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(25, 76, 96, 0.16);
  border-color: var(--color-border-accent);
}

.has-drag-scroll.is-dragging .finish-color--button,
.has-drag-scroll.is-dragging .finish-color--button *,
.has-drag-scroll.is-dragging .finish-card,
.has-drag-scroll.is-dragging .finish-card *,
.has-drag-scroll.is-dragging .ral-card[data-finish-color-src],
.has-drag-scroll.is-dragging .ral-card[data-finish-color-src] * {
  cursor: grabbing !important;
}

/* Dark theme readability: keep light commercial cards truly readable on dark sections. */


/* Theme audit fixes: keep commercial price blocks and section titles readable in dark mode. */

/* Internal divider between stacked dark sections - removed for seamless look */
.installers::before {
  display: none;
}

/* Dark mode: softer dividers */

/* ============================================
   LIGHT THEME - Section Contrast Enhancement
   ============================================ */

@media (prefers-color-scheme: light) {
  .profiles,
  .reviews,
  .coatings,
  .hot-lead {
    background-color: #ffffff;
  }

  .thickness,
  .workflow,
  .selection-guide,
  .faq {
    background-color: #f6f8fa;
  }

  /* Light theme: disable transition overlays that create white bands */
  .benefits::before,
  .quiz::before,
  .spec-conditions::before,
  .lead-short::before,
  .final-cta::before,
  .photos::after,
  .quiz::after,
  .spec-conditions::after,
  .lead-short::after,
  .installers::before {
    content: none;
    background: none;
  }
}

/* ============================================
   MOBILE TYPOGRAPHY - Headings Readability
   ============================================ */

@media (max-width: 768px) {
  .hot-lead-title,
  .profiles-title,
  .all-profiles-title,
  .thickness-title,
  .coatings-title,
  .reasons-title,
  .photos-title,
  .benefits-title,
  .installers-title,
  .spec-conditions-title,
  .workflow-title,
  .selection-guide-title,
  .reviews-title,
  .faq-title,
  .usage-title,
  .colors-title,
  .quiz-title,
  .lead-short-title,
  .final-cta-title,
  .catalog-links__title,
  .seo-text h2,
  .related-products h2,
  .seo-links h2,
  .catalog-links h3,
  .profiles-cta-title,
  .colors-all-title,
  .spec-conditions-partners,
  .finish-catalog__title,
  .finish-catalog__group-title,
  .siding-profile-seo__title,
  .siding-profile-seo-card__title,
  .siding-install__title,
  .siding-install-gallery__title,
  .photo-lead-card__title,
  .roof-accessories__title,
  .roof-accessories__group-title {
    white-space: normal !important;
    text-wrap: balance;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
  }

  .hot-lead-title,
  .profiles-title,
  .all-profiles-title,
  .thickness-title,
  .coatings-title,
  .reasons-title,
  .photos-title,
  .benefits-title,
  .installers-title,
  .workflow-title,
  .selection-guide-title,
  .reviews-title,
  .faq-title,
  .usage-title,
  .colors-title,
  .lead-short-title,
  .quiz-title {
    font-size: clamp(22px, 6.1vw, 28px);
    line-height: 1.16;
    margin-bottom: 12px;
  }

  .spec-conditions-title,
  .final-cta-title,
  .catalog-links__title,
  .seo-text h2,
  .related-products h2,
  .seo-links h2 {
    font-size: clamp(20px, 5.7vw, 25px) !important;
    line-height: 1.18 !important;
    margin: 0 0 10px !important;
  }

  .catalog-links h3 {
    font-size: clamp(16px, 4.6vw, 20px) !important;
    line-height: 1.24 !important;
    margin: 0 0 10px !important;
  }

  .profiles-cta-title,
  .colors-all-title,
  .spec-conditions-partners {
    font-size: clamp(18px, 5.1vw, 22px);
    line-height: 1.2;
  }

  .all-profile-card h3,
  .profile-card__title,
  .photo-card__title,
  .coating-card__title,
  .reason-card__title,
  .benefit-card__title,
  .workflow-step__title,
  .selection-card h3,
  .usage-card__title,
  .quiz-step-title {
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
  }

  .all-profile-card h3,
  .profile-card__title,
  .reason-card__title,
  .benefit-card__title,
  .workflow-step__title,
  .selection-card h3,
  .usage-card__title,
  .quiz-step-title {
    font-size: clamp(15px, 4.3vw, 18px);
    line-height: 1.24;
  }

  .coating-card__title {
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.2;
  }

  .faq-question {
    align-items: flex-start;
    line-height: 1.34;
  }

  .quiz-options {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .quiz-option {
    display: flex;
    width: 100%;
  }

  .quiz-option span {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 40px;
    white-space: normal;
    line-height: 1.24;
  }

  .photos-filter {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
  }
}

@media (max-width: 340px), (max-height: 570px) {
  .hot-lead-title,
  .profiles-title,
  .all-profiles-title,
  .thickness-title,
  .coatings-title,
  .reasons-title,
  .photos-title,
  .benefits-title,
  .installers-title,
  .spec-conditions-title,
  .workflow-title,
  .selection-guide-title,
  .reviews-title,
  .faq-title,
  .usage-title,
  .colors-title,
  .quiz-title,
  .lead-short-title,
  .final-cta-title,
  .catalog-links__title,
  .seo-text h2,
  .related-products h2,
  .seo-links h2 {
    font-size: clamp(18px, 6.3vw, 22px) !important;
    line-height: 1.2 !important;
  }

  .catalog-links h3 {
    font-size: 14px !important;
    line-height: 1.24 !important;
  }
}

@media (max-width: 768px) {
  .product-mini-section {
    padding: 24px 0 32px !important;
  }

  .product-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .related-products a.product-mini-card,
  .seo-links a.product-mini-card {
    padding: 10px;
    gap: 8px;
  }

  .product-mini-card__title {
    font-size: 12px;
  }

  .colors--horizontal-scroll .ral-popular-grid,
  .colors--horizontal-scroll .ral-all-grid {
    --ral-card-basis: calc((100% - 10px) / 2);
    gap: 10px;
  }
}
/* ========================================
   iOS 26 - GLASSMORPHISM & UNIFIED ANIMATIONS
   ======================================== */

.profile-card,
.all-profile-card,
.color-palette-card,
.review-card,
.photo-card,
.faq-item,
.quiz-card,
.lead-form,
.spec-conditions-logo,
.cookie-banner__inner,
.doc-content,
.thickness-card,
.coating-card,
.reason-card,
.usage-card,
.selection-card,
.workflow-step,
.hot-lead-card {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}


.profile-card,
.all-profile-card,
.color-palette-card,
.review-card,
.photo-card,
.faq-item,
.thickness-card,
.coating-card,
.reason-card,
.usage-card,
.selection-card,
.workflow-step,
.hot-lead-card,
.quiz-card,
.lead-form,
.spec-conditions-logo,
.doc-content {
  border-radius: 20px;
}

@media (prefers-color-scheme: light) {
  .profile-card,
  .review-card,
  .photo-card,
  .all-profile-card {
    box-shadow:
      0 8px 28px rgba(0, 0, 0, 0.08),
      0 2px 6px rgba(0, 0, 0, 0.04);
  }
}

.hero-cta,
.profile-card__btn,
.photos-cta__btn,
.final-cta-btn,
.final-route-btn,
.profiles-cta-btn,
.hot-lead-submit,
.lead-submit,
.quiz-submit,
.cookie-btn {
  border-radius: 999px;
}

.lead-input,
.quiz-input {
  border-radius: 14px;
}

.site-header__social,
.site-header__brand,
.site-header__phone,
.footer a {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

@supports (content-visibility: auto) {
  .deferred-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
  }
}

/* ===== iOS PREMIUM REVEAL ===== */

.ios-reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity .6s ease,
    transform .6s cubic-bezier(.22,1,.36,1);
  will-change: transform, opacity;
}

.ios-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ===== iOS CARD LIFT ===== */

.ios-lift {
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.ios-lift:hover {
  transform: translate3d(0, -3px, 0);
  box-shadow: var(--shadow-card-strong);
  border-color: var(--color-border-accent);
}

/* ===== iOS BUTTON FEEDBACK ===== */

.ios-button {
  transition:
    transform 0.12s ease,
    box-shadow 0.2s ease;
}

.ios-button:hover {
  transform: translate3d(0, -1px, 0);
}

.ios-button:active {
  transform: scale(0.97);
}

/* ===== iOS TEXT FADE ===== */

.ios-text {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ios-text.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ===== INPUT FOCUS ===== */

.lead-input:focus,
.quiz-input:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(231, 179, 0, 0.35);
  border-color: var(--color-border-accent);
}

/* ===== FAQ HOVER ===== */

.faq-item {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: var(--color-border-accent);
  box-shadow: var(--shadow-card-soft-strong);
}

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

  .ios-reveal,
  .ios-text {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.all-profile-card,
.review-card,
.photo-card {
  position: relative;
  cursor: zoom-in;
  cursor: -webkit-zoom-in;
  overflow: hidden;
  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s cubic-bezier(.22,1,.36,1),
    border-color .3s ease;
  will-change: transform;
}

.all-profile-card img,
.review-card img,
.photo-card img {
  cursor: zoom-in;
  cursor: -webkit-zoom-in;
  pointer-events: none;
}

.all-profile-card::after,
.review-card::after,
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.all-profile-card::before,
.review-card::before,
.photo-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.85);
  font-size: 26px;
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  pointer-events: none;
  z-index: 2;
}

.all-profile-card *,
.review-card *,
.photo-card * {
  cursor: zoom-in;
  cursor: -webkit-zoom-in;
}

.all-profile-card:hover,
.review-card:hover,
.photo-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: var(--color-border-accent);
  box-shadow:
    0 18px 50px rgba(0,0,0,0.16),
    0 8px 20px rgba(0,0,0,0.08);
}

.all-profile-card:hover::after,
.review-card:hover::after,
.photo-card:hover::after {
  opacity: .15;
  background: rgba(0,0,0,.15);
}

.all-profile-card:hover::before,
.review-card:hover::before,
.photo-card:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.all-profile-card img,
.review-card img,
.photo-card img {
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}

.all-profile-card:hover img,
.review-card:hover img,
.photo-card:hover img {
  transform: scale(1.05);
}

.photos--horizontal-scroll .photo-card::before,
.photos--horizontal-scroll .photo-card::after,
.photos--utp-scroll .photo-card::before,
.photos--utp-scroll .photo-card::after {
  content: none;
  display: none;
}

.photos--horizontal-scroll .photo-card,
.photos--horizontal-scroll .photo-card *,
.photos--utp-scroll .photo-card,
.photos--utp-scroll .photo-card * {
  cursor: default !important;
}

.photos--profile-schemes .photo-card,
.photos--profile-schemes .photo-card * {
  cursor: zoom-in !important;
  cursor: -webkit-zoom-in !important;
}

.photos--profile-schemes .photo-card::after {
  content: "";
  display: flex;
}

.photos--profile-schemes .photo-card::before {
  content: "";
  display: block;
}

.photos--profile-schemes .photo-card [data-quick-lead-open],
.photos--profile-schemes .photo-card [data-quick-lead-open] * {
  cursor: pointer !important;
}

.photo-card--lead,
.photo-card--lead * {
  cursor: default !important;
  cursor: default !important;
}

.photo-card--lead::before,
.photo-card--lead::after,
.photo-card--lead:hover::before,
.photo-card--lead:hover::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
}

.photo-card--lead:hover {
  transform: none !important;
  border-color: var(--color-border-subtle) !important;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04) !important;
}

.photo-card--lead input,
.photo-card--lead input * {
  cursor: text !important;
}

.photo-card--lead button,
.photo-card--lead button *,
.photo-card--lead a,
.photo-card--lead a *,
.photo-card--lead .form-consent__checkbox {
  cursor: pointer !important;
}

@keyframes zoomHintPulse {
  0% {
    transform: translate(-50%, -50%) scale(.85);
    opacity: .35;
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .7;
  }
  100% {
    transform: translate(-50%, -50%) scale(.85);
    opacity: .35;
  }
}

.sticky-cta {
  position: fixed;
  right: 28px;
  bottom: 28px;
  height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all .35s ease;
  z-index: 500;
}

.sticky-cta-stack {
  position: fixed;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  z-index: 500;
}

.sticky-cta-stack .sticky-cta {
  position: relative;
  right: auto;
  bottom: auto;
  width: 244px;
  white-space: nowrap;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.sticky-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.22);
}

.sticky-cta--secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  border: 1.5px solid rgba(25, 76, 96, 0.28);
  box-shadow: 0 12px 28px rgba(25, 76, 96, 0.12);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
}

.sticky-cta--secondary:hover {
  background: rgba(244, 248, 250, 0.98);
  color: var(--primary);
  border-color: rgba(25, 76, 96, 0.42);
  box-shadow: 0 16px 34px rgba(25, 76, 96, 0.16);
}

/* ============================================
   PREMIUM BUTTON SYSTEM - Gradient + Glow
   ============================================ */

.hero-cta:not(.hero-cta--outline),
.profile-card__btn,
.hot-lead-submit,
.lead-submit,
.quiz-submit,
.final-cta-btn,
.profiles-cta-btn,
.photos-cta__btn,
.final-route-btn,
.sticky-cta,
.profiles-toggle,
[data-all-profiles-toggle],
[data-colors-toggle] {
  background: var(--btn-gradient);
  box-shadow: var(--btn-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(231, 179, 0, 0.3);
}

.sticky-cta--secondary {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(25, 76, 96, 0.12);
  border: 1.5px solid rgba(25, 76, 96, 0.28);
}

.hero-cta:not(.hero-cta--outline):hover,
.profile-card__btn:hover,
.hot-lead-submit:hover,
.lead-submit:hover,
.quiz-submit:hover,
.final-cta-btn:hover,
.profiles-cta-btn:hover,
.photos-cta__btn:hover,
.final-route-btn:hover,
.sticky-cta:hover,
.profiles-toggle:hover,
[data-all-profiles-toggle]:hover,
[data-colors-toggle]:hover {
  background: linear-gradient(180deg, #F5CA30 0%, #E0AD00 100%);
  box-shadow: var(--btn-glow-hover), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.sticky-cta--secondary:hover {
  background: rgba(244, 248, 250, 0.98);
  box-shadow: 0 16px 34px rgba(25, 76, 96, 0.16);
}


.hero-cta:not(.hero-cta--outline),
.profile-card__btn,
.photos-cta__btn,
.final-cta-btn {
  background: linear-gradient(
    180deg,
    #F0C020 0%,
    #D9A400 100%
  );
  box-shadow:
    0 4px 16px rgba(231, 179, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-cta:not(.hero-cta--outline):hover,
.profile-card__btn:hover,
.photos-cta__btn:hover,
.final-cta-btn:hover {
  background: linear-gradient(
    180deg,
    #F6CA30 0%,
    #E0AD00 100%
  );
  box-shadow:
    0 8px 28px rgba(231, 179, 0, 0.45);
}

/* Outline button: glow on hover */
.hero-cta--outline:hover {
  box-shadow: 0 0 20px rgba(231, 179, 0, 0.15);
}

/* ============================================
   CARD DIFFERENTIATION - Subtle Depth
   ============================================ */

/* Profile cards: inner glow on hover */
.profile-card {
  position: relative;
  overflow: hidden;
}

.profile-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(231, 179, 0, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.profile-card:hover::after {
  opacity: 1;
}

/* Cards on dark backgrounds: subtle top-light edge */
.reason-card {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Quiz card: premium elevated shadow */
.quiz-card {
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}


/* ============================================
   MOBILE: Disable all animations
   ============================================ */
@media (max-width: 768px) {
  section{
    padding:48px 20px;
  }

  section:first-of-type{
    padding-top:20px;
  }

  .products-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
  }

  .product-card{
    padding:12px;
  }

  .product-card img{
    width:100%;
    height:auto;
  }

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

  .product-card .price{
    font-size:16px;
  }

  .product-card .btn{
    width:100%;
    font-size:14px;
    padding:10px;
  }

  /* Match current project catalog cards */
  .profiles-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .profile-card {
    padding: 12px;
  }

  .profile-card__title {
    font-size: 14px;
  }

  .profile-card__price {
    font-size: 16px;
  }

  .profile-card__btn {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    height: auto;
  }

  .colors-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
  }

  .color-item{
    padding:8px;
    font-size:12px;
  }

  /* Match current project color cards */
  .color-palette-card {
    padding: 8px;
  }

  .color-palette-label {
    font-size: 12px;
  }

  .quiz-container{
    padding:20px;
  }

  .quiz-step{
    gap:14px;
  }

  .quiz input,
  .quiz select{
    height:44px;
    font-size:16px;
  }

  .quiz button{
    width:100%;
    height:46px;
  }

  /* Match current project quiz wrapper/input/button classes */
  .quiz-card {
    padding: 20px;
  }

  .quiz input[type="text"],
  .quiz input[type="tel"] {
    height: 44px;
    font-size: 16px;
  }

  .quiz .quiz-submit {
    width: 100%;
    height: 46px;
  }

  section + section{
    margin-top:0;
  }

  .cta[aria-label="Быстрый расчет"],
  .cta[aria-label="Быстрые действия"] {
    padding: 0;
    margin: 0;
    min-height: 0;
  }

  .sticky-cta-stack,
  .sticky-cta,
  .sticky-cta.visible {
    display: none !important;
  }

  .related-products ul,
  .seo-links ul {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    align-items: stretch;
  }

  .related-products li,
  .seo-links li {
    min-width: 0;
  }

  .related-products a,
  .seo-links a {
    width: 100%;
    justify-content: center;
    padding: 6px 8px;
    font-size: 12px;
    line-height: 1.2;
  }

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

  .container{
    padding-left:16px;
    padding-right:16px;
  }

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

  .ios-reveal,
  .ios-reveal.is-visible,
  .ios-text,
  .ios-text.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .ios-lift,
  .ios-lift:hover,
  .ios-button,
  .ios-button:hover,
  .ios-button:active {
    transform: none !important;
    transition: none !important;
  }

  .all-profile-card,
  .review-card,
  .photo-card,
  .profile-card,
  .benefit-card,
  .ral-card {
    transition: none !important;
    transform: none !important;
  }

  .all-profile-card:hover,
  .review-card:hover,
  .photo-card:hover,
  .profile-card:hover,
  .benefit-card:hover,
  .ral-card:hover {
    transform: none !important;
  }

  .all-profile-card img,
  .review-card img,
  .photo-card img {
    transition: none !important;
  }

  .all-profile-card:hover img,
  .review-card:hover img,
  .photo-card:hover img {
    transform: none !important;
  }

  .sticky-cta,
  .sticky-cta.visible,
  .sticky-cta:hover {
    transition: none !important;
  }

  .sticky-cta-stack {
    transition: none !important;
  }

  .profile-card::after {
    transition: none !important;
  }

  .faq-item {
    transition: none !important;
  }

}
/* ДЛАВНАЯ СТРАНИЦА */
.home-section-title {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: var(--color-text-main);
  text-wrap: balance;
}

.home-catalog {
  padding: 64px 0;
  background-color: var(--color-bg-page);
}

.home-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.home-cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-card-title);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.home-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--color-border-accent);
  background: rgba(255, 255, 255, 0.96);
}

.home-cat-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
}

.home-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.home-cat-card:hover .home-cat-img img {
  transform: scale(1.05);
}

.home-cat-title {
  margin: 0;
  padding: 0 4px 2px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-card-title);
  text-align: center;
  line-height: 1.2;
  text-wrap: balance;
  transition: color 0.2s ease;
}

.home-cat-card:hover .home-cat-title {
  color: var(--color-card-title);
}

.home-benefits {
  padding: 48px 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(231, 179, 0, 0.08), transparent 26%),
    linear-gradient(180deg, #2c6076 0%, #27586d 100%);
}

.home-benefits-grid,
.home-installers .installers-grid {
  gap: 16px;
  align-items: stretch;
}

.home-installers {
  padding: 48px 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #2a5870 0%, #234e63 100%);
  box-shadow: none;
}

.home-benefits .benefit-card,
.home-installers .benefit-card {
  min-height: 126px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.siding-ux-flow {
  padding: 44px 0 68px;
  background:
    radial-gradient(circle at 12% 18%, rgba(231, 179, 0, 0.08), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.07), transparent 28%),
    linear-gradient(180deg, #285c72 0%, #1f4d60 54%, #1c4659 100%);
  color: #ffffff;
}

.siding-ux-unified {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(231, 179, 0, 0.08), transparent 30%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.07), transparent 28%),
    linear-gradient(180deg, #285c72 0%, #214f62 46%, #1c4659 100%);
  color: #ffffff;
}

#how-we-calculate.siding-ux-flow {
  padding-bottom: 30px;
  background:
    radial-gradient(circle at 12% 18%, rgba(231, 179, 0, 0.08), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.07), transparent 28%),
    linear-gradient(180deg, #285c72 0%, #1f4d60 54%, #1c4659 100%);
}

#facade-workflow.siding-ux-flow {
  margin-top: -1px;
  padding-top: 18px;
  background:
    radial-gradient(circle at 12% -28%, rgba(231, 179, 0, 0.08), transparent 30%),
    radial-gradient(circle at 86% -26%, rgba(255, 255, 255, 0.07), transparent 28%),
    linear-gradient(180deg, #1c4659 0%, #1f4d60 46%, #1c4659 100%);
}

.siding-ux-unified #how-we-calculate.siding-ux-flow,
.siding-ux-unified #facade-workflow.siding-ux-flow {
  background: transparent;
}

.siding-ux-flow__shell {
  max-width: 1180px;
  margin: 0 auto;
}

.siding-ux-flow__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 26px;
}

.siding-ux-flow__eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 -12px;
  color: var(--accent);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.siding-ux-flow__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.12;
  font-weight: 850;
  text-wrap: balance;
}

.siding-ux-flow__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.48;
  font-weight: 600;
}

.siding-ux-flow__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.siding-ux-flow__cards:last-child {
  margin-bottom: 0;
}

.siding-ux-flow--steps-after-quiz {
  padding-top: 40px;
}

.siding-ux-card {
  min-height: 306px;
  padding: 26px 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.siding-ux-card--factories {
  background:
    radial-gradient(circle at 88% 10%, rgba(231, 179, 0, 0.13), transparent 30%),
    rgba(255, 255, 255, 0.1);
}

.siding-ux-card__title {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.12;
  font-weight: 850;
}

.siding-ux-card__text {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

.siding-ux-card__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.siding-ux-card__list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.38;
  font-weight: 700;
}

.siding-ux-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.siding-ux-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 16px;
}

.siding-ux-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
}

.siding-ux-logo img {
  display: block;
  width: 100%;
  max-width: 108px;
  height: 38px;
  object-fit: contain;
}

.siding-ux-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  counter-reset: siding-steps;
}

.siding-ux-step {
  min-height: 188px;
  padding: 20px 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 29, 39, 0.22);
}

.siding-ux-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--accent);
  color: #173948;
  font-size: 15px;
  line-height: 1;
  font-weight: 850;
}

.siding-ux-step__number--arrow {
  font-size: 24px;
  font-weight: 800;
}

.siding-ux-step__title {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 850;
}

.siding-ux-step__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.42;
  font-weight: 600;
}

.catalog-insights {
  padding: 56px 0 66px;
  background: #1d4a5d;
  color: #ffffff;
}

.catalog-insight {
  max-width: 1180px;
  margin: 0 auto;
}

.catalog-insight + .catalog-insight {
  margin-top: 22px;
}

.catalog-insight__header {
  max-width: 820px;
  margin: 0 auto 22px;
  text-align: center;
}

.catalog-insight__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 850;
}

.catalog-insight__title::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--accent);
}

.catalog-insight__subtitle {
  max-width: 760px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600;
}

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

.catalog-insight-card {
  min-width: 0;
  padding: 22px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.catalog-insight-card__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 14px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(231, 179, 0, 0.16);
  color: #f2d57a;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.catalog-insight-card__title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.18;
  font-weight: 850;
  text-wrap: balance;
}

.catalog-insight-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.catalog-insight-card__list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.catalog-insight-card__list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 650;
}

.catalog-insight-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.seo-text--mid {
  background: #f4f7f8;
  color: var(--color-text);
}

.seo-text--mid .seo-text__intro {
  color: var(--color-text-muted) !important;
}

.seo-text--mid .seo-story-card {
  border-color: rgba(25, 76, 96, 0.1);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(25, 76, 96, 0.1);
}

.seo-text--mid .seo-story-card__index {
  background: rgba(231, 179, 0, 0.16);
  color: #8a6900;
}

.seo-text--mid .seo-story-card__title {
  color: var(--color-text) !important;
}

.seo-text--mid .seo-story-card__facts li {
  border-color: rgba(25, 76, 96, 0.12);
  background: rgba(25, 76, 96, 0.05);
  color: var(--color-text);
}

.seo-text--mid .seo-story-card__text {
  color: var(--color-text-muted) !important;
}

@media (max-width: 1023px) {
  .siding-ux-flow__intro {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .siding-ux-flow__eyebrow {
    margin-bottom: 0;
  }

  .siding-ux-flow__cards {
    grid-template-columns: 1fr;
  }

  .siding-ux-card {
    min-height: auto;
  }

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

  .catalog-insight__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .siding-ux-flow {
    padding: 32px 0 48px;
  }

  #how-we-calculate.siding-ux-flow {
    padding-bottom: 18px;
  }

  #facade-workflow.siding-ux-flow {
    padding-top: 0;
    padding-bottom: 44px;
  }

  .siding-ux-flow__intro {
    margin-bottom: 18px;
  }

  .siding-ux-flow__subtitle {
    font-size: 15px;
  }

  .siding-ux-card {
    padding: 20px 16px;
    border-radius: 22px;
  }

  .siding-ux-card__text {
    font-size: 15px;
  }

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

  .siding-ux-steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .siding-ux-step {
    min-height: auto;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .siding-ux-step__number {
    margin-bottom: 0;
  }

  .catalog-insights {
    padding: 40px 0 48px;
  }

  .catalog-insight__header {
    margin-bottom: 16px;
  }

  .catalog-insight + .catalog-insight {
    margin-top: 18px;
  }

  .catalog-insight-card {
    padding: 18px 16px;
  }
}

.home-spec-conditions {
  background:
    radial-gradient(circle at 20% 50%, rgba(231, 179, 0, 0.07), transparent 28%),
    linear-gradient(180deg, #234e63 0%, #1c4254 100%);
  box-shadow: none;
}

.home-installers + .home-spec-conditions {
  margin-top: -2px;
  padding-top: calc(var(--section-space-y) + 2px);
}

.home-installers + .home-spec-conditions::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: -2px;
  height: 2px;
  background: #234e63;
  pointer-events: none;
}

/* Final product-card cursor rules: loupe on image only, pointer on CTA only. */
.photos--two-column .photo-card,
.photos--three-column .photo-card,
.profnastil-price-card {
  cursor: default !important;
}

.photos--two-column .photo-card *,
.photos--three-column .photo-card *,
.profnastil-price-card * {
  cursor: default !important;
}

.photos--two-column .photo-card::before,
.photos--two-column .photo-card::after,
.photos--two-column .photo-card:hover::before,
.photos--two-column .photo-card:hover::after,
.photos--three-column .photo-card::before,
.photos--three-column .photo-card::after,
.photos--three-column .photo-card:hover::before,
.photos--three-column .photo-card:hover::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  background: transparent !important;
}

.photos--two-column .photo-card__image--button,
.photos--two-column .photo-card__image--button *,
.photos--three-column .photo-card__image--button,
.photos--three-column .photo-card__image--button *,
.profnastil-price-card__media--button,
.profnastil-price-card__media--button * {
  cursor: zoom-in !important;
  cursor: -webkit-zoom-in !important;
}

.photos--two-column .photo-card__image--button,
.photos--three-column .photo-card__image--button,
.profnastil-price-card__media--button {
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  color: inherit;
  font: inherit;
  text-align: inherit;
  overflow: hidden;
  transition: box-shadow .22s ease;
}

.photos--two-column .photo-card__image--button img,
.photos--three-column .photo-card__image--button img,
.profnastil-price-card__media--button img {
  pointer-events: none;
  transition: transform .32s ease;
}

.photos--two-column .photo-card__image--button:hover,
.photos--two-column .photo-card__image--button:focus-visible,
.photos--three-column .photo-card__image--button:hover,
.photos--three-column .photo-card__image--button:focus-visible,
.profnastil-price-card__media--button:hover,
.profnastil-price-card__media--button:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(231, 179, 0, .82);
  outline: none;
}

.photos--two-column .photo-card__image--button:hover img,
.photos--two-column .photo-card__image--button:focus-visible img,
.photos--three-column .photo-card__image--button:hover img,
.photos--three-column .photo-card__image--button:focus-visible img,
.profnastil-price-card__media--button:hover img,
.profnastil-price-card__media--button:focus-visible img {
  transform: scale(1.035);
}

.photos--two-column .profile-card__btn,
.photos--two-column .profile-card__btn *,
.photos--two-column .photo-card__quiz-btn,
.photos--two-column .photo-card__quiz-btn *,
.photos--three-column .profile-card__btn,
.photos--three-column .profile-card__btn *,
.photos--three-column .photo-card__quiz-btn,
.photos--three-column .photo-card__quiz-btn *,
.profnastil-price-card__btn,
.profnastil-price-card__btn * {
  cursor: pointer !important;
}

.photos--two-column .profile-card__btn,
.photos--two-column .photo-card__quiz-btn,
.photos--three-column .profile-card__btn,
.photos--three-column .photo-card__quiz-btn,
.profnastil-price-card__btn {
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.photos--two-column .profile-card__btn:hover,
.photos--two-column .photo-card__quiz-btn:hover,
.photos--three-column .profile-card__btn:hover,
.photos--three-column .photo-card__quiz-btn:hover,
.profnastil-price-card__btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
}

.photos--two-column .photo-card--lead input[type="text"],
.photos--two-column .photo-card--lead input[type="tel"],
.photos--three-column .photo-card--lead input[type="text"],
.photos--three-column .photo-card--lead input[type="tel"] {
  cursor: text !important;
}

.photos--two-column .photo-card--lead button,
.photos--two-column .photo-card--lead button *,
.photos--two-column .photo-card--lead a,
.photos--two-column .photo-card--lead a *,
.photos--two-column .photo-card--lead label,
.photos--two-column .photo-card--lead .form-consent__checkbox,
.photos--three-column .photo-card--lead button,
.photos--three-column .photo-card--lead button *,
.photos--three-column .photo-card--lead a,
.photos--three-column .photo-card--lead a *,
.photos--three-column .photo-card--lead label,
.photos--three-column .photo-card--lead .form-consent__checkbox {
  cursor: pointer !important;
}

.photos--two-column .photo-card--lead button:disabled,
.photos--three-column .photo-card--lead button:disabled {
  cursor: not-allowed !important;
}

/* Page-specific product grids have stronger legacy rules, so keep their affordances explicit. */
.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead) .photo-card__image--button,
.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead) .photo-card__image--button *,
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) .photo-card__image--button,
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) .photo-card__image--button * {
  cursor: zoom-in !important;
  cursor: -webkit-zoom-in !important;
}

.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead) .profile-card__btn,
.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead) .profile-card__btn *,
.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead) .photo-card__quiz-btn,
.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead) .photo-card__quiz-btn *,
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) .profile-card__btn,
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) .profile-card__btn *,
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) .photo-card__quiz-btn,
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) .photo-card__quiz-btn * {
  cursor: pointer !important;
}

/* Product cards: the loupe belongs only to the image, CTA buttons stay normal clickable controls. */
.photos--two-column .photo-card,
.photos--three-column .photo-card,
.profnastil-price-card {
  cursor: default !important;
}

.photos--two-column .photo-card *,
.photos--three-column .photo-card *,
.profnastil-price-card * {
  cursor: default !important;
}

.photos--two-column .photo-card::before,
.photos--two-column .photo-card::after,
.photos--two-column .photo-card:hover::before,
.photos--two-column .photo-card:hover::after,
.photos--three-column .photo-card::before,
.photos--three-column .photo-card::after,
.photos--three-column .photo-card:hover::before,
.photos--three-column .photo-card:hover::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  background: transparent !important;
}

.photos--two-column .photo-card__image--button,
.photos--two-column .photo-card__image--button *,
.photos--three-column .photo-card__image--button,
.photos--three-column .photo-card__image--button *,
.profnastil-price-card__media--button,
.profnastil-price-card__media--button * {
  cursor: zoom-in !important;
  cursor: -webkit-zoom-in !important;
}

.photos--two-column .photo-card__image--button,
.photos--three-column .photo-card__image--button,
.profnastil-price-card__media--button {
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  color: inherit;
  font: inherit;
  text-align: inherit;
  overflow: hidden;
  transition: box-shadow .22s ease;
}

.photos--two-column .photo-card__image--button img,
.photos--three-column .photo-card__image--button img,
.profnastil-price-card__media--button img {
  pointer-events: none;
  transition: transform .32s ease;
}

.photos--two-column .photo-card__image--button:hover,
.photos--two-column .photo-card__image--button:focus-visible,
.photos--three-column .photo-card__image--button:hover,
.photos--three-column .photo-card__image--button:focus-visible,
.profnastil-price-card__media--button:hover,
.profnastil-price-card__media--button:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(231, 179, 0, .82);
  outline: none;
}

.photos--two-column .photo-card__image--button:hover img,
.photos--two-column .photo-card__image--button:focus-visible img,
.photos--three-column .photo-card__image--button:hover img,
.photos--three-column .photo-card__image--button:focus-visible img,
.profnastil-price-card__media--button:hover img,
.profnastil-price-card__media--button:focus-visible img {
  transform: scale(1.035);
}

.photos--two-column .profile-card__btn,
.photos--two-column .profile-card__btn *,
.photos--two-column .photo-card__quiz-btn,
.photos--two-column .photo-card__quiz-btn *,
.photos--three-column .profile-card__btn,
.photos--three-column .profile-card__btn *,
.photos--three-column .photo-card__quiz-btn,
.photos--three-column .photo-card__quiz-btn *,
.profnastil-price-card__btn,
.profnastil-price-card__btn * {
  cursor: pointer !important;
}

.photos--two-column .profile-card__btn,
.photos--two-column .photo-card__quiz-btn,
.photos--three-column .profile-card__btn,
.photos--three-column .photo-card__quiz-btn,
.profnastil-price-card__btn {
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.photos--two-column .profile-card__btn:hover,
.photos--two-column .photo-card__quiz-btn:hover,
.photos--three-column .profile-card__btn:hover,
.photos--three-column .photo-card__quiz-btn:hover,
.profnastil-price-card__btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
}

.home-trust {
  padding-top: clamp(52px, 6vw, 82px) !important;
  padding-bottom: clamp(52px, 6vw, 82px) !important;
}

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

@media (max-width: 768px) {
  .home-trust {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }

  .home-trust__grid,
  .home-trust__partners {
    grid-template-columns: 1fr;
  }
}

/* Home trust block: unified replacement for benefits, installer terms, and partner logos. */
.home-trust {
  padding: clamp(52px, 6vw, 82px) 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 12%, rgba(231, 179, 0, 0.1), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #2b6076 0%, #214f63 50%, #1d4659 100%);
  overflow: hidden;
}

.home-trust__header {
  max-width: 860px;
  margin: 0 auto 26px;
  text-align: center;
}

.home-trust__eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-trust__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 850;
  line-height: 1.12;
  text-wrap: balance;
}

.home-trust__subtitle {
  max-width: 760px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  line-height: 1.48;
  text-wrap: pretty;
}

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

.home-trust-panel {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.07));
  box-shadow: 0 18px 44px rgba(7, 28, 38, 0.18);
}

.home-trust-panel--pro {
  background:
    radial-gradient(circle at 92% 10%, rgba(231, 179, 0, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
}

.home-trust-panel__top {
  margin-bottom: 14px;
}

.home-trust-panel__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 11px;
  border: 1px solid rgba(231, 179, 0, 0.42);
  border-radius: 999px;
  color: #f3cf55;
  background: rgba(231, 179, 0, 0.08);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.home-trust-panel__title {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 850;
  line-height: 1.14;
  text-wrap: balance;
}

.home-trust-panel__text {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.55;
  text-wrap: pretty;
}

.home-trust-list {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.home-trust-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.38;
}

.home-trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(231, 179, 0, 0.12);
  transform: translateY(-50%);
}

.home-trust__partners {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 20px;
  align-items: center;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(7, 28, 38, 0.12);
}

.home-trust__partners-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 850;
  line-height: 1.16;
  text-wrap: balance;
}

.home-trust__partners-text {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 560;
  line-height: 1.45;
  text-wrap: pretty;
}

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

.home-trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(7, 28, 38, 0.08);
}

.home-trust-logo img {
  display: block;
  width: 100%;
  max-width: 128px;
  max-height: 42px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .home-trust__grid,
  .home-trust__partners {
    grid-template-columns: 1fr;
  }

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

  .home-trust-panel {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .home-trust {
    padding: 44px 0;
  }

  .home-trust__header {
    margin-bottom: 20px;
    text-align: left;
  }

  .home-trust-panel,
  .home-trust__partners {
    border-radius: 14px;
  }

  .home-trust__partners {
    padding: 16px;
  }

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

  .home-trust-logo {
    min-height: 54px;
    padding: 8px 10px;
  }
}

.quiz--single-step {
  background:
    radial-gradient(circle at 82% 16%, rgba(231, 179, 0, 0.08), transparent 26%),
    linear-gradient(180deg, #1f4a5e 0%, #183e4f 100%);
  box-shadow: none;
}

.home-cta-section {
  padding: 64px 0;
  background-color: var(--color-bg-section);
}

.home-cta-box {
  background: var(--hero-bg);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  color: var(--hero-text-color);
  box-shadow: var(--shadow-card-strong);
  position: relative;
  overflow: hidden;
}

.home-cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.home-cta-content h2 {
  font-size: 28px;
  margin: 0 0 16px;
  font-weight: 700;
  color: #fff;
}

.home-cta-content p {
  font-size: 16px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.home-photos-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.home-seo {
  padding-top: 56px;
  padding-bottom: 64px;
}

.home-seo .doc-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 24px 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.94));
  border: 1px solid rgba(25, 76, 96, 0.08);
  box-shadow:
    0 18px 42px rgba(25, 76, 96, 0.08),
    0 2px 8px rgba(25, 76, 96, 0.04);
}

.home-seo h2 {
  font-size: 22px;
  margin: 0 0 16px;
  color: var(--color-text-main);
  text-wrap: balance;
}

.home-seo p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
  text-wrap: pretty;
}

.home-seo p + p {
  margin-top: 14px;
}

.home-seo a {
  color: var(--color-text-main);
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-color: rgba(231, 179, 0, 0.85);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.home-seo a:hover,
.home-seo a:focus-visible {
  color: var(--primary);
  text-decoration-color: var(--accent);
}


@media (max-width: 768px) {
  .home-catalog {
    padding: 48px 0;
  }

  .home-seo {
    padding-top: 48px;
  }

  .home-seo .doc-content {
    padding: 20px 16px 22px;
  }

  .home-cta-section {
    padding: 48px 0;
  }
  .home-cta-box {
    padding: 32px 20px;
  }
  .home-cta-content h2 {
    font-size: 22px;
  }
  .home-section-title {
    font-size: 24px;
  }
  .home-cat-card {
    padding: 12px;
    gap: 10px;
  }
  .home-cat-title {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .home-benefits-grid,
  .home-installers .installers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .home-benefits-grid,
  .home-installers .installers-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Current project state: disabled placeholders and restored SEO title. */
.site-header__dropdown-col .site-header__dropdown-link--disabled {
  display: block;
  margin: 4px 16px;
  padding: 4px 8px;
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  flex-shrink: 0;
  color: var(--color-text-muted);
  text-decoration: none;
  border-radius: 20px;
  opacity: 0.46;
  cursor: not-allowed;
}

.home-cat-card--disabled,
.home-cat-card--disabled:hover {
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.05);
}

.home-cat-card--disabled .home-cat-img img,
.home-cat-card--disabled:hover .home-cat-img img {
  opacity: 0.48;
  filter: grayscale(0.18) saturate(0.72);
  transform: none;
}

.home-cat-card--disabled .home-cat-title {
  color: rgba(25, 76, 96, 0.56);
}

.dev-ribbon {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: calc(100% - 28px);
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  color: #17384a;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: saturate(125%) blur(10px);
  backdrop-filter: saturate(125%) blur(10px);
  border: 1px solid rgba(231, 179, 0, 0.44);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(15, 45, 60, 0.12);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.related-products .product-mini-card--disabled,
.seo-links .product-mini-card--disabled {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 100%;
  width: 100%;
  padding: 14px;
  text-align: center;
  text-decoration: none;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.58);
  -webkit-backdrop-filter: saturate(120%) blur(14px);
  backdrop-filter: saturate(120%) blur(14px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  cursor: not-allowed;
  white-space: normal;
}

.related-products .product-mini-card--disabled .product-mini-card__title,
.seo-links .product-mini-card--disabled .product-mini-card__title {
  opacity: 0.48;
}

.related-products .product-mini-card--disabled .product-mini-card__img,
.seo-links .product-mini-card--disabled .product-mini-card__img {
  opacity: 0.48;
  filter: grayscale(0.18) saturate(0.72);
}

.product-mini-card__ribbon {
  width: calc(100% - 14px);
  min-height: 28px;
  padding: 6px 8px;
  font-size: 9px;
}

@media (max-width: 640px) {
  .dev-ribbon {
    width: calc(100% - 18px);
    min-height: 30px;
    font-size: 10px;
  }

  .product-mini-card__ribbon {
    width: calc(100% - 12px);
    min-height: 24px;
    font-size: 8px;
  }
}

.site-disabled-inline {
  color: inherit;
  opacity: 0.58;
  cursor: not-allowed;
}

.seo-text__title {
  color: #ffffff;
  font-size: clamp(24px, 3vw, 34px) !important;
  font-weight: 800;
  line-height: 1.18 !important;
  margin: 0 0 14px !important;
  text-align: center;
  text-wrap: balance;
}

.product-mini-section + .product-mini-section {
  padding-top: 0 !important;
}


/* CTA card inside product grid: keep it as a form, not as an image zoom card. */
.photos--two-column .photo-card--lead,
.photos--two-column .photo-card--lead:hover {
  cursor: default !important;
  transform: none !important;
  border-color: var(--color-border-subtle) !important;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04) !important;
}

.photos--two-column .photo-card--lead::before,
.photos--two-column .photo-card--lead::after,
.photos--two-column .photo-card--lead:hover::before,
.photos--two-column .photo-card--lead:hover::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  background: transparent !important;
}

.photos--two-column .photo-card--lead .photo-lead-card__content {
  height: 100% !important;
  padding-bottom: 8px !important;
}

.photos--two-column .photo-card--lead .photo-lead-card__form {
  margin-top: auto !important;
  padding: 16px 16px 8px !important;
}

.photos--two-column .photo-card--lead *,
.photos--two-column .photo-card--lead:hover * {
  cursor: default !important;
}

.photos--two-column .photo-card--lead input[type="text"],
.photos--two-column .photo-card--lead input[type="tel"] {
  cursor: text !important;
}

.photos--two-column .photo-card--lead button,
.photos--two-column .photo-card--lead button *,
.photos--two-column .photo-card--lead a,
.photos--two-column .photo-card--lead a *,
.photos--two-column .photo-card--lead label,
.photos--two-column .photo-card--lead .form-consent__checkbox {
  cursor: pointer !important;
}

.photos--two-column .photo-card--lead button:disabled {
  cursor: not-allowed !important;
}

/* Product cards in the siding grid keep hover motion, but without zoom loupe hints. */
.photos--two-column .photo-card,
.photos--two-column .photo-card:hover,
.photos--two-column .photo-card *,
.photos--two-column .photo-card:hover * {
  cursor: default !important;
}

.photos--two-column .photo-card::before,
.photos--two-column .photo-card::after,
.photos--two-column .photo-card:hover::before,
.photos--two-column .photo-card:hover::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  background: transparent !important;
}

.photos--two-column .photo-card [data-quick-lead-open],
.photos--two-column .photo-card [data-quick-lead-open] *,
.photos--two-column .photo-card button,
.photos--two-column .photo-card button *,
.photos--two-column .photo-card a,
.photos--two-column .photo-card a *,
.photos--two-column .photo-card label,
.photos--two-column .photo-card .form-consent__checkbox {
  cursor: pointer !important;
}

.photos--two-column .photo-card__image--button,
.photos--two-column .photo-card__image--button * {
  cursor: zoom-in !important;
}

.photos--two-column .photo-card input[type="text"],
.photos--two-column .photo-card input[type="tel"] {
  cursor: text !important;
}

.photos--two-column .photo-card button:disabled {
  cursor: not-allowed !important;
}

.photos--two-column .photo-card__body .photo-card__quiz-btn {
  justify-self: center;
  width: min(100%, 560px);
  height: 56px;
  min-height: 56px;
  margin-top: 8px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 750;
}

.photos--two-column .photo-lead-card__features {
  margin-top: 2px;
}

.photos--three-column .photos-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.photos--three-column .photo-card {
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
}

.photos--three-column .photo-card__top-title {
  top: 18px;
  left: 12px;
  right: 12px;
  font-size: clamp(16px, 1.15vw, 20px);
}

.photos--three-column .photo-card__body {
  padding: 12px 8px 8px;
}

.photos--three-column .photo-card__spec {
  padding: 7px 9px;
  gap: 8px;
}

.photos--three-column .photo-card--lead,
.photos--three-column .photo-card--lead:hover {
  align-self: stretch;
  height: 100% !important;
  min-height: 0 !important;
  cursor: default !important;
  transform: none !important;
  border-color: var(--color-border-subtle) !important;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04) !important;
}

.photos--three-column .photo-card--lead::before,
.photos--three-column .photo-card--lead::after,
.photos--three-column .photo-card--lead:hover::before,
.photos--three-column .photo-card--lead:hover::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  background: transparent !important;
}

.photos--three-column .photo-card--lead,
.photos--three-column .photo-card--lead *,
.photos--three-column .photo-card--lead:hover,
.photos--three-column .photo-card--lead:hover * {
  cursor: default !important;
}

.photos--three-column .photo-card--lead input[type="text"],
.photos--three-column .photo-card--lead input[type="tel"] {
  cursor: text !important;
}

.photos--three-column .photo-card--lead button,
.photos--three-column .photo-card--lead button *,
.photos--three-column .photo-card--lead a,
.photos--three-column .photo-card--lead a *,
.photos--three-column .photo-card--lead label,
.photos--three-column .photo-card--lead .form-consent__checkbox {
  cursor: pointer !important;
}

.photos--three-column .photo-card--lead button:disabled {
  cursor: not-allowed !important;
}

.photos--three-column .photo-card--lead .photo-lead-card__content {
  height: 100% !important;
  min-height: 0 !important;
  padding: 20px 20px 16px;
}

.photos--three-column .photo-card--lead .photo-lead-card__form {
  margin-top: auto !important;
  padding: 0 !important;
  background: transparent;
  border: 0;
  box-shadow: none;
  gap: 10px;
}

.photos--three-column .photo-card--lead .photo-lead-card__text {
  margin: 14px 0 14px;
  font-size: 16px;
  line-height: 1.32;
  font-weight: 760;
}

.photos--three-column .photo-card--lead .photo-lead-card__features {
  gap: 8px;
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
}

.photos--three-column .photo-card--lead .photo-lead-card__features li {
  grid-template-columns: 8px 1fr;
  gap: 8px;
}

.photos--three-column .photo-card--lead .photo-lead-card__features li::before {
  width: 6px;
  height: 6px;
  box-shadow: 0 0 0 3px rgba(231, 179, 0, 0.14);
}

.photos--three-column .photo-card--lead .lead-input {
  height: 50px;
  padding-inline: 16px;
  border-radius: 14px;
  font-size: 15px;
}

.photos--three-column .photo-card--lead .form-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
}

.photos--three-column .photo-card--lead .form-consent__checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.photos--three-column .photo-card--lead .form-consent__text {
  font-size: 10.5px;
  line-height: 1.28;
}

.photos--three-column .photo-card--lead .lead-submit {
  min-height: 52px;
  margin-top: 2px;
}

.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead),
.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead):hover,
.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead) *,
.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead):hover * {
  cursor: default !important;
}

.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead)::before,
.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead)::after,
.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead):hover::before,
.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead):hover::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  background: transparent !important;
}

.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead) [data-quick-lead-open],
.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead) [data-quick-lead-open] *,
.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead) a,
.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead) a * {
  cursor: pointer !important;
}

.photos--metallocherepitsa.photos--three-column .photo-card--lead .photo-lead-card__content {
  overflow: hidden;
}

.photos--metallocherepitsa.photos--three-column .photo-card--lead .photo-lead-card__form {
  border: 1px solid rgba(25, 76, 96, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(25, 76, 96, 0.08);
}

.photos--metallocherepitsa.photos--three-column .photo-card--lead .photo-lead-card__features li {
  grid-template-columns: 8px 1fr;
  gap: 11px;
}

@media (min-width: 769px) and (max-width: 899px) {
  .photos--metallocherepitsa.photos--three-column .photo-card--lead {
    grid-column: span 2;
  }

  .photos--metallocherepitsa.photos--three-column .photo-card--lead .photo-lead-card__content {
    padding: 28px;
  }

  .photos--metallocherepitsa.photos--three-column .photo-card--lead .photo-lead-card__form {
    margin-top: 18px !important;
    padding: 20px !important;
  }
}

@media (min-width: 900px) and (max-width: 1100px) {
  .photos--metallocherepitsa.photos--three-column .photo-card--lead {
    grid-column: span 2;
  }

  .photos--metallocherepitsa.photos--three-column .photo-card--lead .photo-lead-card__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    align-items: center;
    gap: 28px;
    padding: 30px;
  }

  .photos--metallocherepitsa.photos--three-column .photo-card--lead .photo-lead-card__title,
  .photos--metallocherepitsa.photos--three-column .photo-card--lead .photo-lead-card__text,
  .photos--metallocherepitsa.photos--three-column .photo-card--lead .photo-lead-card__features {
    grid-column: 1;
  }

  .photos--metallocherepitsa.photos--three-column .photo-card--lead .photo-lead-card__form {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    margin-top: 0 !important;
    padding: 22px !important;
  }

  .photos--metallocherepitsa.photos--three-column .photo-card--lead .photo-lead-card__title {
    font-size: clamp(26px, 3vw, 34px);
  }

  .photos--metallocherepitsa.photos--three-column .photo-card--lead .photo-lead-card__text {
    font-size: 16px;
  }

  .photos--metallocherepitsa.photos--three-column .photo-card--lead .photo-lead-card__features {
    font-size: 15px;
  }
}

@media (min-width: 1101px) {
  .photos--metallocherepitsa.photos--three-column .photo-card--lead {
    grid-column: span 2;
  }

  .photos--metallocherepitsa.photos--three-column .photo-card--lead .photo-lead-card__content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
    grid-template-rows: auto auto 1fr;
    align-content: center;
    column-gap: 42px;
    row-gap: 14px;
    min-height: 420px;
    padding: 36px 38px;
    background:
      radial-gradient(circle at 86% 18%, rgba(231, 179, 0, 0.13), transparent 34%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 252, 253, 0.98) 58%, rgba(255, 250, 234, 0.72) 100%);
  }

  .photos--metallocherepitsa.photos--three-column .photo-card--lead .photo-lead-card__title {
    grid-column: 1;
    grid-row: 1;
    max-width: 590px;
    font-size: clamp(27px, 1.85vw, 34px);
    line-height: 1.13;
  }

  .photos--metallocherepitsa.photos--three-column .photo-card--lead .photo-lead-card__text {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    margin: 0;
    max-width: 620px;
    color: var(--color-text-secondary);
    font-size: 16px;
    font-weight: 650;
    line-height: 1.42;
  }

  .photos--metallocherepitsa.photos--three-column .photo-card--lead .photo-lead-card__features {
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    width: 100%;
    max-width: 620px;
    gap: 9px;
    margin: 6px 0 0;
    padding-top: 0;
    font-size: 15px;
    line-height: 1.3;
  }

  .photos--metallocherepitsa.photos--three-column .photo-card--lead .photo-lead-card__form {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    justify-self: stretch;
    width: 100%;
    max-width: 480px;
    padding: 24px !important;
    border: 1px solid rgba(25, 76, 96, 0.11);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 50px rgba(25, 76, 96, 0.12);
  }

  .photos--metallocherepitsa.photos--three-column .photo-card--lead .lead-input {
    height: 56px;
    font-size: 16px;
  }

  .photos--metallocherepitsa.photos--three-column .photo-card--lead .form-consent__text {
    font-size: 11.5px;
    line-height: 1.34;
  }

  .photos--metallocherepitsa.photos--three-column .photo-card--lead .lead-submit {
    min-height: 58px;
    font-size: 16px;
  }

  .photos--metallocherepitsa.photos--three-column .photo-card--lead .photo-lead-card__form::before {
    content: none;
    display: none;
  }
}

.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) .photo-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) .photo-card__specs {
  margin-top: auto;
}

.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) [data-quick-lead-open] {
  margin-top: 8px;
}

.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead),
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead):hover,
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) *,
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead):hover * {
  cursor: default !important;
}

.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead)::before,
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead)::after,
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead):hover::before,
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead):hover::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  background: transparent !important;
}

.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) [data-quick-lead-open],
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) [data-quick-lead-open] *,
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) a,
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) a * {
  cursor: pointer !important;
}

.photos--siding-metall.photos--three-column .photo-card--lead .photo-lead-card__content {
  padding: 24px 22px 8px;
}

.photos--siding-metall.photos--three-column .photo-card--lead .photo-lead-card__title {
  max-width: 320px;
  font-size: clamp(24px, 1.65vw, 31px);
  line-height: 1.08;
}

.photos--siding-metall.photos--three-column .photo-card--lead .photo-lead-card__text {
  margin: 12px 0 12px;
  font-size: 15px;
  line-height: 1.34;
}

.photos--siding-metall.photos--three-column .photo-card--lead .photo-lead-card__features {
  gap: 7px;
  font-size: 13.5px;
  line-height: 1.24;
}

.photos--siding-metall.photos--three-column .photo-card--lead .photo-lead-card__form {
  gap: 9px;
}

.photos--siding-metall.photos--three-column .photo-card--lead .lead-input {
  height: 48px;
}

.photos--siding-metall.photos--three-column .photo-card--lead .form-consent__text {
  font-size: 10px;
}

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

@media (max-width: 768px) {
  .photos--three-column .photos-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .photos--three-column .photo-card__top-title {
    font-size: 20px;
  }
}

.profnastil-price-strip {
  background: linear-gradient(180deg, #f5f8fa 0%, #eef4f6 100%);
  padding: 62px 0 46px;
}

.hero + .profnastil-price-strip {
  margin-top: -96px;
  padding-top: 136px;
}

.profnastil-price-strip__header {
  max-width: 760px;
  margin: 0 auto 22px;
  text-align: center;
}

.profnastil-price-strip__title {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.16;
  font-weight: 800;
  color: var(--primary);
}

.profnastil-price-strip__subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--color-text-secondary);
}

.profnastil-price-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.profnastil-price-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 68, 86, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 57, 71, 0.10);
  transition: transform .2s ease, box-shadow .2s ease;
}

.profnastil-price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(23, 57, 71, 0.14);
}

.profnastil-price-card__media {
  aspect-ratio: 1 / 1;
  background: #edf3f5;
}

.profnastil-price-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profnastil-price-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 13px 10px 15px;
  text-align: center;
}

.profnastil-price-card__title {
  margin: 0 0 9px;
  min-height: 38px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--primary);
}

.profnastil-price-card__price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin: 0;
  padding: 5px 10px;
  border: 1px solid rgba(185, 48, 42, 0.22);
  border-radius: 999px;
  background: #fff3ef;
  color: #bd2f29;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.profnastil-price-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 34px;
  margin-top: 10px;
  padding: 7px 15px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f4ca45 0%, var(--accent) 100%);
  color: var(--primary);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(196, 145, 0, 0.18);
}

.profnastil-price-strip__note {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--color-text-secondary);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 1024px) {
  .profnastil-price-strip__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero + .profnastil-price-strip {
    margin-top: 0;
    padding-top: 46px;
  }

  .profnastil-price-strip {
    padding-bottom: 38px;
  }

  .profnastil-price-strip__title {
    font-size: 22px;
  }

  .profnastil-price-strip__subtitle {
    font-size: 14px;
  }

  .profnastil-price-strip__note {
    margin-top: 18px;
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .profnastil-price-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .profnastil-price-card__title {
    font-size: 13px;
  }

  .profnastil-price-card__price {
    font-size: 14px;
    padding-inline: 8px;
  }
}

/* Template mobile normalization for catalog landing pages. */
@media (max-width: 768px) {
  .hero,
  .profnastil-price-strip,
  .photos,
  .finish-catalog,
  .siding-profile-seo,
  .siding-ux-unified,
  .quiz,
  .reviews,
  .faq,
  .lead-short,
  .related-products,
  .seo-links {
    overflow-x: hidden;
  }

  .hero__content,
  .hero-title,
  .hero-title * {
    min-width: 0;
    max-width: 100%;
  }

  .hero-title-line {
    display: block;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .hero-title-main,
  .hero-title-city {
    display: inline;
  }

  .hero-title-note,
  .hero-subtitle {
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .photos--two-column .photos-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: stretch;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
  }

  .photos--two-column .photo-card {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
  }

  .photos--two-column .photo-card__spec {
    grid-template-columns: minmax(72px, auto) minmax(0, 1fr);
  }

  .photos--two-column .photo-card__spec--price {
    grid-template-columns: minmax(54px, auto) minmax(0, auto);
    justify-content: space-between;
  }

  .photos--two-column .photo-card__spec--price dd {
    justify-self: end;
    width: auto;
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: anywhere;
    text-align: right;
  }
}

/* UX/UI audit polish: unified rhythm, typography and responsive consistency. */
:root {
  --ux-section-y: 72px;
  --ux-section-y-tight: 56px;
  --ux-section-gap: 22px;
  --ux-grid-gap: 18px;
  --ux-card-radius: 14px;
  --ux-inner-radius: 10px;
  --ux-control-radius: 999px;
  --ux-card-padding: 18px;
  --ux-card-shadow: 0 10px 30px rgba(25, 76, 96, 0.08), 0 2px 8px rgba(25, 76, 96, 0.04);
  --ux-card-shadow-hover: 0 16px 38px rgba(25, 76, 96, 0.12), 0 4px 12px rgba(25, 76, 96, 0.06);
}

body {
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

.hero-title,
.hero-subtitle {
  max-width: min(720px, 100%);
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-title-line {
  display: inline;
  white-space: normal;
}

.hero-title-note,
.hero-subtitle__line {
  max-width: 100%;
  overflow-wrap: break-word;
}

main > section:not(.hero):not(.cta) {
  padding-top: var(--ux-section-y);
  padding-bottom: var(--ux-section-y);
}

.hero + section,
.hero + .profnastil-price-strip,
.hero + .all-profiles--catalog {
  margin-top: 0;
  padding-top: var(--ux-section-y);
}

.benefits + .installers,
.spec-conditions + .quiz,
.quiz + .reviews,
.lead-short + .related-products,
.related-products + .seo-links {
  padding-top: var(--ux-section-y-tight);
}

.photos-header,
.profiles-header,
.all-profiles-header,
.benefits-header,
.installers-header,
.workflow-header,
.selection-guide-header,
.reviews-header,
.faq-header,
.colors-header,
.finish-catalog__header,
.siding-profile-seo__header,
.roof-accessories__header,
.profnastil-price-strip__header {
  max-width: 760px;
  margin: 0 auto var(--ux-section-gap);
  text-align: center;
}

.photos-title,
.profiles-title,
.all-profiles-title,
.benefits-title,
.installers-title,
.workflow-title,
.selection-guide-title,
.reviews-title,
.faq-title,
.colors-title,
.finish-catalog__title,
.siding-profile-seo__title,
.roof-accessories__title,
.profnastil-price-strip__title,
.home-section-title,
.lead-short-title,
.quiz-title,
.doc-title,
.doc h2,
.related-products h2,
.seo-links h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.15vw, 32px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: none;
}

.photos-subtitle,
.profiles-subtitle,
.all-profiles-subtitle,
.benefits-subtitle,
.installers-subtitle,
.workflow-subtitle,
.selection-guide-subtitle,
.reviews-subtitle,
.faq-subtitle,
.colors-subtitle,
.finish-catalog__subtitle,
.siding-profile-seo__subtitle,
.roof-accessories__subtitle,
.profnastil-price-strip__subtitle,
.quiz-subtitle,
.doc-content p,
.seo-text p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.55;
  letter-spacing: 0;
  text-wrap: pretty;
  overflow-wrap: break-word;
}

.photos-grid,
.profiles-grid,
.all-profiles-grid,
.benefits-grid,
.installers-grid,
.workflow-steps,
.selection-guide-grid,
.reviews-grid,
.finish-catalog__groups,
.finish-catalog__rows,
.siding-profile-seo__grid,
.roof-accessories__groups,
.profnastil-price-strip__grid {
  gap: var(--ux-grid-gap);
  align-items: stretch;
}

.photo-card,
.profile-card,
.all-profile-card,
.benefit-card,
.review-card,
.workflow-step,
.selection-card,
.faq-item,
.quiz-card,
.lead-form,
.doc-content,
.finish-card,
.finish-row-card,
.siding-profile-seo-card,
.roof-accessories-card,
.accessory-card,
.profnastil-price-card,
.product-mini-card,
.home-cat-card {
  border-radius: var(--ux-card-radius);
  box-shadow: var(--ux-card-shadow);
}

.photo-card:hover,
.profile-card:hover,
.all-profile-card:hover,
.benefit-card:hover,
.review-card:hover,
.profnastil-price-card:hover,
.home-cat-card:hover {
  box-shadow: var(--ux-card-shadow-hover);
}

.photo-card__image,
.profile-card__image,
.all-profile-card__image,
.review-card__photo,
.home-cat-img,
.profnastil-price-card__media,
.siding-profile-seo-card__media,
.roof-accessories-visual {
  border-radius: var(--ux-inner-radius);
}

.photo-card,
.photos--three-column .photo-card,
.photos--two-column .photo-card {
  height: 100%;
}

.photo-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
}

.photo-card__title,
.profile-card__title,
.all-profile-card h3,
.benefit-card__title,
.workflow-step__title,
.selection-card h3,
.faq-question,
.finish-card__title,
.finish-row-card__title,
.siding-profile-seo-card__title,
.roof-accessories-card__title,
.profnastil-price-card__title,
.home-cat-title,
.product-mini-card__title {
  line-height: 1.22;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: none;
}

.photo-card__meta,
.profile-card__desc,
.profile-card__meta,
.benefit-card__text,
.workflow-step__text,
.selection-card li,
.faq-answer,
.finish-card__description,
.finish-row-card__description,
.siding-profile-seo-card__text,
.roof-accessories-card__text,
.home-cat-desc {
  line-height: 1.48;
  text-wrap: pretty;
  overflow-wrap: break-word;
}

.photo-card__specs,
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) .photo-card__specs {
  margin-top: auto;
}

.photo-card__spec {
  min-height: 34px;
  border-radius: 10px;
}

.photo-card__spec dd,
.finish-card__spec dd,
.finish-row-card__spec dd,
.profnastil-price-card__price {
  overflow-wrap: anywhere;
}

.hero-cta,
.profile-card__btn,
.photos-cta__btn,
.profiles-cta-btn,
.lead-submit,
.quiz-submit,
.final-cta-btn,
.final-route-btn,
.sticky-cta,
.profiles-toggle,
[data-all-profiles-toggle],
[data-colors-toggle],
.profnastil-price-card__btn,
.finish-catalog__tab,
.photos-filter {
  min-height: 46px;
  border-radius: var(--ux-control-radius);
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  text-wrap: balance;
}

.lead-input,
.quiz-input,
input,
textarea,
select {
  border-radius: 12px;
  line-height: 1.35;
}

.benefit-card__text {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.footer,
.footer-disclaimer,
.footer-owner,
.footer-links {
  line-height: 1.55;
}

@media (min-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

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

@media (min-width: 1024px) {
  .photos--three-column .photos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefits-grid,
  .installers-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --ux-section-y: 52px;
    --ux-section-y-tight: 44px;
    --ux-section-gap: 18px;
    --ux-grid-gap: 14px;
    --ux-card-radius: 12px;
    --ux-card-padding: 14px;
  }

  section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  main > section:not(.hero):not(.cta) {
    padding-top: var(--ux-section-y) !important;
    padding-bottom: var(--ux-section-y) !important;
  }

  .hero {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .hero + section,
  .hero + .profnastil-price-strip,
  .hero + .all-profiles--catalog {
    padding-top: var(--ux-section-y) !important;
  }

  .container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .photos-header,
  .profiles-header,
  .all-profiles-header,
  .benefits-header,
  .installers-header,
  .workflow-header,
  .selection-guide-header,
  .reviews-header,
  .faq-header,
  .colors-header,
  .finish-catalog__header,
  .siding-profile-seo__header,
  .roof-accessories__header,
  .profnastil-price-strip__header {
    margin-bottom: var(--ux-section-gap);
  }

  .photos-title,
  .profiles-title,
  .all-profiles-title,
  .benefits-title,
  .installers-title,
  .workflow-title,
  .selection-guide-title,
  .reviews-title,
  .faq-title,
  .colors-title,
  .finish-catalog__title,
  .siding-profile-seo__title,
  .roof-accessories__title,
  .profnastil-price-strip__title,
  .home-section-title,
  .lead-short-title,
  .quiz-title,
  .doc-title,
  .doc h2,
  .related-products h2,
  .seo-links h2 {
    font-size: clamp(21px, 6vw, 27px) !important;
    line-height: 1.18 !important;
  }

  .photos-subtitle,
  .profiles-subtitle,
  .all-profiles-subtitle,
  .benefits-subtitle,
  .installers-subtitle,
  .workflow-subtitle,
  .selection-guide-subtitle,
  .reviews-subtitle,
  .faq-subtitle,
  .colors-subtitle,
  .finish-catalog__subtitle,
  .siding-profile-seo__subtitle,
  .roof-accessories__subtitle,
  .profnastil-price-strip__subtitle,
  .quiz-subtitle,
  .doc-content p,
  .seo-text p {
    font-size: 14px;
    line-height: 1.5;
  }

  .photo-card,
  .profile-card,
  .all-profile-card,
  .benefit-card,
  .review-card,
  .workflow-step,
  .selection-card,
  .faq-item,
  .quiz-card,
  .lead-form,
  .doc-content,
  .finish-card,
  .finish-row-card,
  .siding-profile-seo-card,
  .roof-accessories-card,
  .accessory-card,
  .profnastil-price-card,
  .home-cat-card {
    border-radius: var(--ux-card-radius);
  }

  .photo-card__body,
  .photos--three-column .photo-card__body {
    padding: 12px 8px 8px;
  }

  .photo-card__title,
  .profile-card__title,
  .benefit-card__title,
  .workflow-step__title,
  .selection-card h3,
  .faq-question {
    font-size: clamp(15px, 4.4vw, 18px);
  }

  .hero-cta,
  .profile-card__btn,
  .photos-cta__btn,
  .profiles-cta-btn,
  .lead-submit,
  .quiz-submit,
  .profnastil-price-card__btn {
    min-height: 48px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  :root {
    --ux-section-y: 44px;
    --ux-section-y-tight: 36px;
  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .photos-title,
  .profiles-title,
  .all-profiles-title,
  .benefits-title,
  .installers-title,
  .workflow-title,
  .selection-guide-title,
  .reviews-title,
  .faq-title,
  .colors-title,
  .finish-catalog__title,
  .siding-profile-seo__title,
  .roof-accessories__title,
  .profnastil-price-strip__title,
  .home-section-title,
  .lead-short-title,
  .quiz-title {
    font-size: clamp(19px, 6.2vw, 23px) !important;
  }
}

/* Final override: profnastil price strip composition. */
.hero + .profnastil-price-strip {
  padding-top: clamp(44px, 4.8vw, 64px);
}

.profnastil-price-strip {
  padding-bottom: clamp(44px, 4.2vw, 58px);
}

.profnastil-price-strip__header {
  margin-bottom: 24px;
}

.profnastil-price-strip__title {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  padding-bottom: 14px;
  font-size: clamp(30px, 2.8vw, 40px);
}

.profnastil-price-strip__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateX(-50%);
}

.profnastil-price-strip__grid {
  gap: 18px;
}

.profnastil-price-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
}

.profnastil-price-card__media {
  aspect-ratio: 1.08 / 1;
  background: #ffffff;
}

.profnastil-price-card__media img {
  object-fit: cover;
}

.profnastil-price-card__body {
  flex: 1 1 auto;
  justify-content: flex-end;
  padding: 14px 12px 16px;
}

.profnastil-price-card__title {
  min-height: 42px;
  margin-bottom: 10px;
  font-size: 16px;
}

.profnastil-price-card__price {
  font-size: 17px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.65);
}

.profnastil-price-card__btn {
  width: min(160px, 100%);
  min-height: 38px;
  margin-top: 12px;
  font-size: 14px;
}

.profnastil-price-strip__note {
  width: fit-content;
  max-width: min(820px, calc(100% - 32px));
  margin-top: 28px;
  padding: 13px 22px;
  border: 1px solid rgba(25,76,96,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: var(--primary);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(25,76,96,0.08);
}

@media (max-width: 768px) {
  .hero + .profnastil-price-strip {
    padding-top: 38px !important;
  }

  .profnastil-price-strip__title {
    font-size: clamp(24px, 7vw, 30px) !important;
  }

  .profnastil-price-strip__note {
    width: auto;
    max-width: 100%;
    border-radius: 14px;
    font-size: 15px;
    line-height: 1.35;
  }
}

/* Final dark theme contrast audit overrides. Keep these at the end of the bundle. */

/* Force the site to stay in the light theme and remove horizontal scroll edge fades. */
:root {
  color-scheme: light;
}

.photos-scroll-shell.has-horizontal-overflow::after,
.finish-row-card__palette.has-horizontal-overflow::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

/* Hide subpixel seams between stacked dark home sections. */
.home-installers + .home-spec-conditions {
  margin-top: -2px;
  padding-top: calc(var(--section-space-y) + 2px);
}

.home-installers + .home-spec-conditions::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: -2px;
  height: 2px;
  background: #234e63;
  pointer-events: none;
}

/* Final product-card cursor rules: loupe on image only, pointer on CTA only. */
.photos--two-column .photo-card,
.photos--three-column .photo-card,
.profnastil-price-card {
  cursor: default !important;
}

.photos--two-column .photo-card *,
.photos--three-column .photo-card *,
.profnastil-price-card * {
  cursor: default !important;
}

.photos--two-column .photo-card::before,
.photos--two-column .photo-card::after,
.photos--two-column .photo-card:hover::before,
.photos--two-column .photo-card:hover::after,
.photos--three-column .photo-card::before,
.photos--three-column .photo-card::after,
.photos--three-column .photo-card:hover::before,
.photos--three-column .photo-card:hover::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  background: transparent !important;
}

.photos--two-column .photo-card__image--button,
.photos--two-column .photo-card__image--button *,
.photos--three-column .photo-card__image--button,
.photos--three-column .photo-card__image--button *,
.profnastil-price-card__media--button,
.profnastil-price-card__media--button * {
  cursor: zoom-in !important;
  cursor: -webkit-zoom-in !important;
}

.photos--two-column .photo-card__image--button,
.photos--three-column .photo-card__image--button,
.profnastil-price-card__media--button {
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  color: inherit;
  font: inherit;
  text-align: inherit;
  overflow: hidden;
  transition: box-shadow .22s ease;
}

.photos--two-column .photo-card__image--button img,
.photos--three-column .photo-card__image--button img,
.profnastil-price-card__media--button img {
  pointer-events: none;
  transition: transform .32s ease;
}

.photos--two-column .photo-card__image--button:hover,
.photos--two-column .photo-card__image--button:focus-visible,
.photos--three-column .photo-card__image--button:hover,
.photos--three-column .photo-card__image--button:focus-visible,
.profnastil-price-card__media--button:hover,
.profnastil-price-card__media--button:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(231, 179, 0, .82);
  outline: none;
}

.photos--two-column .photo-card__image--button:hover img,
.photos--two-column .photo-card__image--button:focus-visible img,
.photos--three-column .photo-card__image--button:hover img,
.photos--three-column .photo-card__image--button:focus-visible img,
.profnastil-price-card__media--button:hover img,
.profnastil-price-card__media--button:focus-visible img {
  transform: scale(1.035);
}

.photos--two-column .profile-card__btn,
.photos--two-column .profile-card__btn *,
.photos--two-column .photo-card__quiz-btn,
.photos--two-column .photo-card__quiz-btn *,
.photos--three-column .profile-card__btn,
.photos--three-column .profile-card__btn *,
.photos--three-column .photo-card__quiz-btn,
.photos--three-column .photo-card__quiz-btn *,
.profnastil-price-card__btn,
.profnastil-price-card__btn * {
  cursor: pointer !important;
}

.photos--two-column .profile-card__btn,
.photos--two-column .photo-card__quiz-btn,
.photos--three-column .profile-card__btn,
.photos--three-column .photo-card__quiz-btn,
.profnastil-price-card__btn {
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.photos--two-column .profile-card__btn:hover,
.photos--two-column .photo-card__quiz-btn:hover,
.photos--three-column .profile-card__btn:hover,
.photos--three-column .photo-card__quiz-btn:hover,
.profnastil-price-card__btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
}

.photos--two-column .photo-card--lead input[type="text"],
.photos--two-column .photo-card--lead input[type="tel"],
.photos--three-column .photo-card--lead input[type="text"],
.photos--three-column .photo-card--lead input[type="tel"] {
  cursor: text !important;
}

.photos--two-column .photo-card--lead button,
.photos--two-column .photo-card--lead button *,
.photos--two-column .photo-card--lead a,
.photos--two-column .photo-card--lead a *,
.photos--two-column .photo-card--lead label,
.photos--two-column .photo-card--lead .form-consent__checkbox,
.photos--three-column .photo-card--lead button,
.photos--three-column .photo-card--lead button *,
.photos--three-column .photo-card--lead a,
.photos--three-column .photo-card--lead a *,
.photos--three-column .photo-card--lead label,
.photos--three-column .photo-card--lead .form-consent__checkbox {
  cursor: pointer !important;
}

.photos--two-column .photo-card--lead button:disabled,
.photos--three-column .photo-card--lead button:disabled {
  cursor: not-allowed !important;
}
/* Page-specific product grids have stronger legacy rules, so keep their affordances explicit. */
.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead) .photo-card__image--button,
.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead) .photo-card__image--button *,
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) .photo-card__image--button,
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) .photo-card__image--button * {
  cursor: zoom-in !important;
  cursor: -webkit-zoom-in !important;
}

.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead) .profile-card__btn,
.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead) .profile-card__btn *,
.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead) .photo-card__quiz-btn,
.photos--metallocherepitsa.photos--three-column .photo-card:not(.photo-card--lead) .photo-card__quiz-btn *,
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) .profile-card__btn,
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) .profile-card__btn *,
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) .photo-card__quiz-btn,
.photos--siding-metall.photos--three-column .photo-card:not(.photo-card--lead) .photo-card__quiz-btn * {
  cursor: pointer !important;
}
