@font-face {
  font-family: 'Product Sans Light';
  src: url('../fonts/ProductSans-Light.woff2') format('woff2'),
       url('../fonts/ProductSans-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Product Sans';
  src: url('../fonts/ProductSans-Regular.woff2') format('woff2'),
       url('../fonts/ProductSans-Regular.woff') format('woff');
  font-weight: 400; 
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Product Sans Medium';
  src: url('../fonts/ProductSans-Medium.woff2') format('woff2'),
       url('../fonts/ProductSans-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #EE4100;
  --color-primary-dark: #AA3A22;
  --color-primary-light: #FC8B1E;
  --color-text: #1C1C1C;
  --color-text-muted: #6B6B6B;
  --color-text-light: #FFFFFF;
  --color-bg: #FFFFFF;
  --color-bg-dark: #1A1A1A;
  --color-bg-card: #FFFFFF;
  --color-border: rgba(255,255,255,0.15);
  --font-light: 'Product Sans Light', sans-serif;
  --font-primary: 'Product Sans', sans-serif;
  --font-medium: 'Product Sans Medium', sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-md: 18px;
  --font-size-lg: 24px;
  --font-size-xl: 32px;
  --font-size-2xl: 48px;
  --font-size-3xl: 56px;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --line-height-tight: 1.15;
  --line-height-base: 1.5;
  --line-height-loose: 1.7;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 34px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 4px 4px 20px rgba(0,0,0,0.20);
  --z-header: 100;
  --z-popup: 200;
  --z-toast: 300;
  --gradient-primary: linear-gradient(135deg, #EE4100 0%, #FC8B1E 100%);
  --gradient-dark: linear-gradient(135deg, #AA3A22 0%, #E14A2C 100%);
}

/* ========== GLOBAL ========== */

html {
  height: 100%;
  margin: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

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

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

li {
  list-style: none;
}

img {
  height: auto;
  display: inline-block;
}

textarea {
  resize: none;
}

button {
  border: none;
  background-color: transparent;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
  font-family: inherit;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: var(--line-height-base);
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

/* ========== CONTAINER ========== */

.container {
  width: 100%;
  max-width: 1534px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ========== BUTTONS ========== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--font-medium);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s, background-image 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
  -webkit-text-fill-color: currentColor;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--color-text-light);
  box-shadow: var(--shadow-lg);
}

.btn--primary:hover {
  color: var(--color-text-light);
  background-image: linear-gradient(#FFFFFF, #FFFFFF), var(--gradient-primary);
  background-repeat: no-repeat;
  background-clip: padding-box, text;
  -webkit-background-clip: padding-box, text;
  -webkit-text-fill-color: transparent;
}

.btn--primary:active {
  color: var(--color-primary);
  background-image: linear-gradient(#E8E8E8, #E8E8E8), var(--gradient-primary);
  background-repeat: no-repeat;
  background-clip: padding-box, text;
  -webkit-background-clip: padding-box, text;
  -webkit-text-fill-color: transparent;
}

.btn--outline {
  background: rgba(255,255,255,0.12);
  color: var(--color-text-light);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

.btn--secondary {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.btn--white {
  background: #FFFFFF;
  color: #141211;
  border: none;
  padding: 6px 6px 6px 32px;
  box-shadow: var(--shadow-lg);
}

.btn--white:hover {
  background: var(--gradient-primary);
  color: #FEFEFE;
}

.btn--white:active {
  background: #E8E8E8;
  color: #141211;
}

.btn--white .btn__icon {
  background: var(--gradient-primary);
  color: var(--color-text-light);
}

.btn--white:hover .btn__icon {
  background: #FFFFFF;
  color: var(--color-primary);
}

.btn--white:active .btn__icon {
  background: var(--gradient-primary);
  color: var(--color-text-light);
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 61px;
  height: 61px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  color: var(--color-text-light);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  -webkit-text-fill-color: currentColor;
}

.btn--primary .btn__icon {
  background: #FFFFFF;
  color: var(--color-primary);
}

.btn--primary:hover .btn__icon,
.btn--primary:active .btn__icon {
  background: var(--gradient-primary);
  color: var(--color-text-light);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(252, 139, 30, 0.22), var(--shadow-lg);
}
.btn__request{
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
    font-size: 20px;
    border-radius: 50px;
      width: 221px;
      height: 74px;
      box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.2);
        background: linear-gradient(90deg, #ee4100 0%, #fc8b1e 100%);
    color: #fff;
    justify-content: center;
    align-items: center;
}

.header__cta {
  transition: color 0.2s ease, box-shadow 0.2s ease;
}

.header__cta.btn--primary,
.header__cta.btn--primary:hover,
.header__cta.btn--primary:active {
  background-clip: border-box;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: currentColor !important;
}

.header__cta.btn--primary {
  background: linear-gradient(90deg, #EE4100 0%, #FC8B1E 100%);
  color: var(--color-text-light);
}

.header__cta.btn--primary:hover {
  background: #FFFFFF;
  background-image: none !important;
  color: var(--color-primary);
}

.header__cta.btn--primary:active {
  background: #E8E8E8;
  background-image: none !important;
  color: var(--color-primary);
}

/* ========== FORM MESSAGES ========== */

.btn--loading {
  opacity: 0.7;
  pointer-events: none;
}

.form-message {
  padding: 12px 16px;
  margin-top: 12px;
  border-radius: 12px;
  font-size: 16px;
  text-align: center;
  transition: opacity 0.3s;
}

.form-message--success {
  background: #e8f5e9;
  color: #2e7d32;
}

.form-message--error {
  background: #ffebee;
  color: #c62828;
}

.form-message--hidden {
  opacity: 0;
}

/* ========== HEADER ========== */

.header {
  position: absolute;
  top: 33px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1534px, calc(100% - 48px));
  max-width: 1534px;
  height: 86px;
border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255,255,255,0.14);
  z-index: var(--z-header);
  overflow: hidden;
}


.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: 0 10px 0 40px;
}

.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.header__logo-main {
  font-family: var(--font-medium);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-light);
  letter-spacing: -0.02em;
}

.header__logo-sub {
  font-family: var(--font-medium);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header__nav {
  display: block;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.header__nav-link {
  font-family: var(--font-medium);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-light);
  transition: all ease-in .2s;
}

.header__nav-link:hover {
  color: var(--color-primary-light);
}

.header__nav-link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header__nav-link--dropdown svg {
  opacity: 0.7;
  flex-shrink: 0;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-shrink: 0;
}

.header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-light);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.header__mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(20, 20, 20, 0.97);
  backdrop-filter: blur(23px);
  -webkit-backdrop-filter: blur(23px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.35s, visibility 0.35s, transform 0.35s;
  pointer-events: none;
}

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

.header__mobile-nav .header__nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__mobile-nav .header__nav-link {
  color: var(--color-text-light);
  font-family: var(--font-primary);
  font-size: 24px;
  text-decoration: none;
  transition: color 0.2s;
}

.header__mobile-nav .header__nav-link:hover {
  color: var(--color-primary);
}

.header__mobile-cta {
  margin-top: 40px;
  padding: 14px 40px;
  font-size: 16px;
  border-radius: var(--radius-full);
}

/* ========== HERO ========== */

.hero {
  position: relative;
  background: url('../img/hero-bg.webp') center / cover no-repeat;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 1080px;
}

.hero__inner {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  padding-top: 220px;
}

.hero__tag {
  display: inline-block;
  font-family: var(--font-medium);
  font-size: 25px;
  font-weight: var(--font-weight-medium);
  color: var(--color-bg);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-8);
}
.hero__tag span{
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
    font-size: 25px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ee4100 0%, #fc8b1e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__title {
  font-family: var(--font-medium);
  font-size: 70px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-light);
  line-height: var(--line-height-tight);
  max-width: 1034px;
  margin-bottom: 36px;
}

.hero__desc {
  font-family: var(--font-light);
  font-size: 25px;
  font-weight: var(--font-weight-light);
  color: var(--color-text-light);
  max-width: 819px;
}

.hero__bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  width: 100%;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero__experience {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(23px);
  -webkit-backdrop-filter: blur(23px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 32px 35px;
  overflow: hidden;
}

.hero__experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 25% 50%, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero__experience-number {
  font-family: var(--font-medium);
  font-size: 70px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-light);
  line-height: 1;
}

.hero__experience-badges {
  display: flex;
  gap: 4px;
}

.hero__experience-img {
  width: 62px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.hero__experience-label {
  position: relative;
  width: 168px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(23px);
  -webkit-backdrop-filter: blur(23px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  color: var(--color-text-light);
  font-family: var(--font-medium);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  overflow: hidden;
}

.hero__experience-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 25% 50%, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero__features {
  position: relative;
}

.hero__features-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: var(--space-6);
  padding-bottom: 76px;
}

.hero__feature {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-light);
  font-family: var(--font-medium);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(23px);
  -webkit-backdrop-filter: blur(23px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 20px 40px;
  overflow: hidden;
}

.hero__feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  flex-shrink: 0;
}

/* ========== BENEFITS ========== */

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

.benefits__partners .container {
  width: min(1536px, calc(100% - 80px));
  max-width: 1536px;
  padding: 0;
}

.benefits__section-label {
  font-family: var(--font-medium);
  font-size: 25px;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: 48px;
}

.benefits__section-brace {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits__logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 78px;
  width: 100%;
  padding-bottom: 10px;
}

.benefits__logos-track {
  display: contents;
}

.benefits__logo-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 166px;
  min-height: 166px;
  padding: 20px 16px;
  background-color: transparent;
  background-image:
    linear-gradient(#C5C5C5, #C5C5C5),
    linear-gradient(#C5C5C5, #C5C5C5),
    linear-gradient(#C5C5C5, #C5C5C5),
    linear-gradient(#C5C5C5, #C5C5C5),
    linear-gradient(#C5C5C5, #C5C5C5),
    linear-gradient(#C5C5C5, #C5C5C5),
    linear-gradient(#C5C5C5, #C5C5C5),
    linear-gradient(#C5C5C5, #C5C5C5);
  background-size:
    30px 1px, 1px 30px,
    30px 1px, 1px 30px,
    30px 1px, 1px 30px,
    30px 1px, 1px 30px;
  background-position:
    left top, left top,
    right top, right top,
    left bottom, left bottom,
    right bottom, right bottom;
  background-repeat: no-repeat;
  transition: transform 0.3s;
}

.benefits__logo-card:hover {
  transform: scale(1.05);
}

.benefits__logo {
  max-height: 120px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.benefits__compare {
  padding: 90px 0;;
  background: #fff;
  position: relative;
}

.benefits__compare::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: 0%;
  bottom: -100px;
  background: url('../img/partners-bg.webp') top center / cover no-repeat;
}

.benefits__compare .container {
  position: relative;
  z-index: 1;
  width: min(1536px, calc(100% - 80px));
  max-width: 1536px;
  padding: 0;
}

.benefits__compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 78px;
}

.benefits__compare-card {
  background: #e8e8e8;
  border-radius: 50px;
  min-height: 609px;
  padding: 59px 53px 40px;
  display: flex;
  flex-direction: column;
}

.benefits__compare-card--accent {
  background: #fe5531;
  color: var(--color-text-light);
}

.benefits__compare-title {
  font-family: var(--font-medium);
  font-size: 46px;
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-tight);
  margin-bottom: 40px;
}

.benefits__compare-list {
  display: flex;
  flex-direction: column;
}

.benefits__compare-item {
  display: flex;
  align-items: flex-start;
  gap: 21px;
  font-family: var(--font-light);
  font-size: 20px;
  line-height: 1.2;
  padding: 19px 0 22px;
  border-top: 1px solid #dedcdc;
}

.benefits__compare-item:last-child {
  padding-bottom: 0;
}

.benefits__compare-card--accent .benefits__compare-item {
  border-color: rgba(222,220,220,0.3);
}

.benefits__compare-item strong {
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
}

.benefits__compare-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ========== ADVANTAGES ========== */

.benefits__advantages {
  background: #2B2F33;
  color: var(--color-text-light);
  padding: 96px 0;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}

.benefits__advantages-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 38px;
  margin-bottom: 77px;
  max-width: 1034px;
}

.benefits__advantages-title {
  font-family: var(--font-medium);
  font-size: 70px;
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-tight);
}

.benefits__advantages-desc {
  font-family: var(--font-light);
  font-size: 25px;
  color: rgba(255,255,255,0.55);
  line-height: 1.2;
  max-width: 819px;
}

.benefits__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin-bottom: 80px;
  width: fit-content;
  max-width: 100%;
}

.benefits__tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 73px;
  padding: 0 28px;
  border: 1px solid #FFFFFF;
  border-radius: 100px;
  background: linear-gradient(90deg, rgba(217,217,217,0.12) 0%, rgba(115,115,115,0.12) 100%);
  font-family: var(--font-medium);
  font-size: 25px;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  color: #FFFFFF;
  white-space: nowrap;
  transition: background 0.25s, border-color 0.25s, color 0.25s, opacity 0.25s;
  cursor: pointer;
}

.benefits__tab[data-tab="business"] {
  width: 247px;
}

.benefits__tab[data-tab="engineers"] {
  width: 513px;
}

.benefits__tab[data-tab="private"] {
  width: 453px;
}

.benefits__tab:hover {
  opacity: 0.9;
}

.benefits__tab--active {
  border-color: transparent;
  background: linear-gradient(90deg, #EE4100 0%, #FC8B1E 100%);
  color: #FFFFFF;
}

.benefits__tab--active:hover {
  opacity: 1;
}
.benefits__slider {
  overflow: hidden;
  margin-bottom: 32px;
}

.benefits__slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits__panel {
  flex: 0 0 100%;
  min-width: 0;
}

.benefits__panel[data-panel="default"] {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 478px));
  justify-content: center;
  gap: 40px;
}

.benefits__panel[data-panel="default"] .benefit:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.benefits__panel[data-panel="default"] .benefit:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.benefits__panel[data-panel="default"] .benefit--large {
  grid-column: 2;
  grid-row: 1 / 3;
}

.benefits__panel[data-panel="default"] .benefit:nth-child(4) {
  grid-column: 3;
  grid-row: 1;
}

.benefits__panel[data-panel="default"] .benefit:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.benefits__panel[data-panel="business"],
.benefits__panel[data-panel="engineers"],
.benefits__panel[data-panel="private"] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 742px));
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  justify-content: center;
  gap: 48px;
}

.benefits__panel[data-panel="business"] .benefit,
.benefits__panel[data-panel="engineers"] .benefit,
.benefits__panel[data-panel="private"] .benefit {
  height: 299px;
}

.benefit {
  position: relative;
  padding: 120px 50px 32px 50px;
  color: var(--color-text);
  height: 299px;
  overflow: hidden;
  border-radius: 0 50px 50px 50px;
}

.benefit--large {
  height: 649px;
}

.benefit__shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  pointer-events: none;
}

.benefit__badge {
  position: absolute;
top: 0px;
  left: 13px;
  display: flex;
  align-items: center;
}

.benefit__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--gradient-primary);
  flex-shrink: 0;
}

.benefit__icon img {
  width: 33px;
  height: 33px;
}

.benefit__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #FFFFFF;
  margin-left: -6px;
  font-family: var(--font-medium);
  font-size: 30px;
  font-weight: var(--font-weight-medium);
  color: #141211;
}

.benefit__body {
  position: relative;
  z-index: 1;
}

.benefit:has(.benefit__title) {
  padding-top: 96px;
}

.benefit__title {
  position: absolute;
  top: -48px;
  left: 150px;
  z-index: 1;
  font-family: var(--font-medium);
  font-size: 22px;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text);
}

.benefit__brace {
  color: var(--color-primary);
}

.benefit__text {
  font-family: var(--font-light);
  font-size: 25px;
  font-weight: var(--font-weight-light);
  line-height: 1.2;
  color: #141211;
}

.benefit__text + .benefit__text {
  margin-top: 24px;
}

.benefit__text strong {
  color: #141211;
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
}

.benefits__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.benefits__deco-large {
  position: absolute;
  left: 40%;
  top: 475px;
  width: 337px;
}

.benefits__deco-small {
  position: absolute;
  left: 12%;
  top: 478px;
  width: 104px;
  height: 104px;
}

.benefits__cta {
  display: flex;
  justify-content: flex-start;
}

.benefits__cta .btn {
  width: 356px;
  max-width: 100%;
  min-height: 73px;
  padding: 6px 6px 6px 0;
  gap: 0;
  justify-content: space-between;
  font-size: 25px;
  line-height: 1.2;
  background: #FFFFFF;
  color: #141211;
}

.benefits__cta-label {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.benefits__cta .btn__icon {
  background: linear-gradient(90deg, #EE4100 0%, #FC8B1E 100%);
  box-shadow: 4px 4px 20px rgba(0,0,0,0.2);
}

/* ========== HOW WORK ========== */

.how-work {
  position: relative;
  padding: 98px 0 102px;
  background: #ffffff;
  color: #141211;
  font-family: var(--font-primary);
  overflow: hidden;
}

.how-work .container {
  max-width: 1632px;
}

.how-work__title {
  margin: 0;
  text-align: center;
  font-size: 70px;
  line-height: 1.06;
  letter-spacing: -0.01em;
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
}

.how-work__subtitle {
  margin: 38px auto 0;
  max-width: 1034px;
  text-align: center;
  font-size: 25px;
  line-height: 1.2;
  color: rgba(20, 18, 17, 0.9);
}

.how-work__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 74px;
}

.how-work__step-link {
  position: absolute;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(238, 65, 0, 0.45) 0 12px,
    transparent 12px 20px
  );
  pointer-events: none;
}

.how-work__step-link--left {
  left: 10%;
    top: 157px;
    width: 40%;
    transform: rotate(-15deg);
  transform-origin: left center;
}

.how-work__step-link--right {
    right: 12%;
      top: 107px;
      width: 39%;
      transform: rotate(10deg);
  transform-origin: right center;
}

.how-work__step {
  position: relative;
}

.how-work__step--left {
  padding-top: 103px;
}

.how-work__step--center {
  max-width: 352px;
  margin: 0 auto;
  text-align: center;
  transform: translateY(-26px);
}

.how-work__step--right {
  text-align: right;
  padding-top: 71px;
}

.how-work__step-head {
  position: relative;
  text-align: center;
}

.how-work__step--left .how-work__step-head {
  width: fit-content;
  margin-left: 110px;
}

.how-work__step-head--center {
  position: relative;
  display: inline-flex;
}

.how-work__step--right .how-work__step-head {
  width: fit-content;
  margin-left: auto;
  margin-right: 110px;
}

.how-work__step-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 30px;
  line-height: 1;
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
  background: var(--gradient-primary);
  box-shadow: 0 0 0 1px rgba(238, 65, 0, 0.5), 0 0 32px 4px rgba(238, 65, 0, 0.7);
}

.how-work__step-badge--outer {
  width: 84px;
  height: 84px;
}

.how-work__step-badge--small {
  width: 64px;
  height: 64px;
}

.how-work__step-badge::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(238, 65, 0, 0.32);
}

.how-work__step-title {
  margin: 50px 0 0;
  font-size: 25px;
  line-height: 1.24;
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
}

.how-work__brace {
  color: var(--color-primary);
}

.how-work__step-text {
  margin: 26px 0 0;
  font-size: 25px;
  line-height: 1.25;
  color: #141211;
}

.how-work__step-text strong {
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
}

.how-work__step-media {
  position: absolute;
    top: -21px;
      left: 29px;
      width: 101px;
      height: 101px;
  object-fit: contain;
}

.how-work__stats {
  position: relative;
  margin-top: 55px;
  padding-top: 5px;
}

.how-work__rings {
  position: absolute;
  left: 50%;
  top: -14px;
  width: 1036px;
  height: 1036px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.how-work__rings::before,
.how-work__rings::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.how-work__rings::before {
  width: 1036px;
  height: 1036px;
  background: linear-gradient(90deg, #EE4100, #FC8B1E);
  filter: blur(100px);
}

.how-work__rings::after {
  width: 975px;
  height: 975px;
  border: 1px solid transparent;
  background: linear-gradient(90deg, #EE4100, #FC8B1E) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.how-work__reliability {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 348px;
  max-width: 100%;
  min-height: 73px;
  margin: 0 auto;
  border-radius: 100px;
  background: #FFFFFF;
  color: #141211;
  font-size: 25px;
  line-height: 1;
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
  box-shadow: 0 8px 24px rgba(20, 18, 17, 0.1);
}

.how-work__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 51px;
  margin-top: 83px;
}

.how-work__card {
  min-height: 478px;
  padding: 52px 50px;
  border-radius: 50px;
  background: #FFFFFF;
  box-shadow: 0 8px 26px rgba(20, 18, 17, 0.08);
}

.how-work__card-title {
  margin: 0;
  font-size: 46px;
  line-height: 0.98;
  letter-spacing: -0.01em;
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
}

.how-work__accent {
  color: var(--color-primary);
}

.how-work__card-text {
  margin: 42px 0 0;
  font-size: 25px;
  line-height: 1.2;
  color: #141211;
}

.how-work__card-text strong {
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
}

.how-work__cta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 590px);
  gap: 40px;
  align-items: center;
  margin-top: 99px;
  padding: 40px 40px 40px 50px;
  border-radius: 50px;
  background: #2B2F33;
  color: #FFFFFF;
}

.how-work__cta-title {
  margin: 0;
  font-size: 70px;
  line-height: 1.06;
  letter-spacing: -0.01em;
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
}

.how-work__cta-text {
  max-width:600px;
  margin: 25px 0 0;
  font-size: 25px;
  line-height: normal;
  font-family: var(--font-light);
    font-weight: var(--font-weight-light);
  color: #fff;
}

.how-work__cta-btn {
  justify-content: space-between;
  width: 446px;
  max-width: 100%;
  min-height: 73px;
  margin-top: 57px;
  font-size: 25px;
}

.how-work__cta-media-wrap {
  position: relative;
}

.how-work__cta-media {
  width: 100%;
  height: 381px;
  border-radius: 50px;
  object-fit: cover;
}

.how-work__cta-plus {
  position: absolute;
  top: 50%;
  left: -51px;
  transform: translateY(-50%);
  width: 102px;
  height: 102px;
  border-radius: 37px;
  background: #141211;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.36);
  pointer-events: none;
}

.how-work__cta-plus::before,
.how-work__cta-plus::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1px;
  background: linear-gradient(90deg, #EE4100, #FC8B1E);
}

.how-work__cta-plus::before {
  width: 39px;
  height: 8px;
}

.how-work__cta-plus::after {
  width: 8px;
  height: 39px;
}

/* ========== PRODUCTS ========== */

.products {
  background: var(--gradient-primary);
  padding: 99px 0;
}

.products__inner {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0;
}

.products__title {
  font-family: var(--font-medium);
  font-size: 70px;
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-tight);
  color: var(--color-text-light);
  text-align: center;
}

.products__subtitle {
  font-family: var(--font-medium);
  font-size: 25px;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 38px;
  max-width: 1383px;
  margin-left: auto;
  margin-right: auto;
}

.products__tabs-wrap {
  margin-top: 78px;
  position: relative;
  min-height: 1068px;
}

.products__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.products__tabs {
  display: flex;
  gap: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.products__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 73px;
  padding: 0 32px;
  border-radius: 100px;
  font-family: var(--font-medium);
  font-size: 25px;
  font-weight: var(--font-weight-medium);
  line-height: 1;
  cursor: pointer;
  border: none;
  background: var(--color-bg);
  color: #141211;
  transition: background 0.2s, color 0.2s;
}

.products__tab[data-tab="stationary"] {
  width: 342px;
}

.products__tab[data-tab="bmk"] {
  width: 513px;
}

.products__tab--active {
  background: #141211;
  color: var(--color-text-light);
}

.products__tab--disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.products__content {
  height: auto;
  margin-top: 0;
  position: relative;
  z-index: 1;
  padding: 20px 29px 20px 51px;
}

.products__panel {
  display: none;
  min-height: 100%;
  height: auto;
}

.products__panel--active {
  display: flex;
  gap: 76px;
  align-items: flex-start;
}

.products__info {
  flex: 0 0 787px;
  min-width: 0;
  max-width: 787px;
  padding-top: 114px;
}

.products__product-title {
  font-family: var(--font-medium);
  font-size: 70px;
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-tight);
  color: #141211;
  max-width: 832px;
}

.products__product-desc {
  font-family: var(--font-primary);
  font-size: 25px;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  color: #141211;
  margin-top: 25px;
  max-width: 832px;
}

.products__product-desc strong {
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
}

.products__specs {
  list-style: none;
  margin-top: 44px;
  padding: 0;
  max-width: 787px;
}

.products__spec {
  display: flex;
  align-items: center;
  gap: 21px;
  padding: 18px 0 20px;
  border-bottom: 1px solid #dedcdc;
}

.products__spec--last {
  display: flex;
  gap: 210px;
  padding-top: 18px;
  border-bottom: none;
}

.products__spec-pair {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.products__spec-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.products__spec-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.products__spec-label {
  font-family: var(--font-medium);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  color: #141211;
}

.products__spec-value {
  font-family: var(--font-light);
  font-size: 20px;
  font-weight: var(--font-weight-light);
  color: #141211;
}

.products__spec-list {
  list-style: none;
  display: grid;
  gap: 2px;
  padding-left: 0;
  margin: 6px 0 0;
  font-family: var(--font-light);
  font-size: 20px;
  font-weight: var(--font-weight-light);
  line-height: 1.18;
  color: #141211;
}

.products__spec-list li {
  position: relative;
  padding-left: 18px;
}

.products__spec-list li::before {
  content: '•';
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-light);
  font-weight: var(--font-weight-light);
  font-size: 0.9em;
  line-height: 1.18;
  color: #141211;
}

.products__media {
  flex-shrink: 0;
  width: 602px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 0;
}

.products__image-wrap {
  width: 602px;
  height: 934px;
  background: #e8e8e8;
  border-radius: 50px;
  overflow: hidden;
}

.products__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  color: transparent;
}

.products__cta-btn {
  position: relative;
  width: 100%;
  height: 73px;
  justify-content: center;
  font-size: 25px;
  padding: 6px 80px 6px 32px;
  overflow: hidden;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}

.products__cta-btn .btn__icon {
  position: absolute;
  top: 6px;
  right: 6px;
  box-shadow: 0 4px 16px rgba(238, 65, 0, 0.18);
}

.products__cta-btn:hover {
  background: #FFFFFF;
  background-image: none;
  color: var(--color-primary);
  -webkit-text-fill-color: currentColor;
}

.products__cta-btn:active {
  background: #E8E8E8;
  background-image: none;
  color: var(--color-primary);
  -webkit-text-fill-color: currentColor;
}

/* ========== REQUEST ========== */

.request {
  position: relative;
  padding: 100px 0 112px;
  overflow: hidden;
}

.request__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/economy-bg.png') center/cover no-repeat;
  z-index: 0;
}

.request__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.58);
}

.request__inner {
  position: relative;
  z-index: 1;
  max-width: 1536px;
  margin: 0 auto;
  padding: 0;
}

.request__wrap {
  position: relative;
  min-height: 668px;
}

.request__shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 668px;
  pointer-events: none;
}

.request__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 795px;
  align-items: start;
  column-gap: 36px;
  min-height: 668px;
  padding: 71px 53px 77px 51px;
}

.request__text {
  max-width: 601px;
  min-width: 0;
}

.request__title {
  font-family: var(--font-medium);
  font-size: 70px;
  font-weight: var(--font-weight-medium);
  line-height: 1.14286;
  color: #141211;
}

.request__subtitle {
  font-family: var(--font-light);
  font-size: 25px;
  font-weight: var(--font-weight-light);
  line-height: 1.18;
  color: #141211;
  max-width: 473px;
  margin-top: 25px;
}

.request__form {
  width: 795px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 95px;
}

.request__field {
  position: relative;
  display: block;
  width: 100%;
}

.request__input {
  width: 100%;
  height: 61.773px;
  padding: 24px 39px 8px;
  background: #e8e8e8;
  border: 1px solid #cccccc;
  border-radius: 20px;
  font-family: var(--font-light);
  font-size: 25px;
  font-weight: var(--font-weight-light);
  color: #141211;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.request__label {
  position: absolute;
  top: 50%;
  left: 39px;
  transform: translateY(-50%);
  font-family: var(--font-light);
  font-size: 25px;
  font-weight: var(--font-weight-light);
  line-height: 1;
  color: #565353;
  pointer-events: none;
  transform-origin: left top;
  transition: top 0.22s ease, transform 0.22s ease, font-size 0.22s ease, color 0.22s ease;
}

.request__input::placeholder {
  color: transparent;
  opacity: 1;
}

.request__input:focus + .request__label,
.request__input:not(:placeholder-shown) + .request__label,
.request__input:-webkit-autofill + .request__label {
  top: 12px;
  transform: none;
  font-size: 14px;
  color: #7a7775;
}

.request__input:hover {
  border-color: #bfbfbf;
  background: #ececec;
}

.request__input:focus {
  border-color: var(--color-primary);
  background: #f3f3f3;
  box-shadow: 0 0 0 4px rgba(252, 139, 30, 0.16);
}

.request__privacy {
  font-family: var(--font-medium);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  line-height: 1.42;
  color: #cccccc;
  margin-top: 14px;
}

.request__privacy-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.request__privacy-link:hover {
  color: #b7b7b7;
  border-color: #b7b7b7;
}

.request__buttons {
  display: flex;
  gap: 27px;
  margin-top: 14px;
}

.request__btn {
  position: relative;
  width: 287.821px;
  height: 73px;
  justify-content: center;
  font-size: 20px;
  padding: 6px 80px 6px 34px;
  overflow: hidden;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}

.request__btn .btn__icon {
  position: absolute;
  top: 6px;
  right: 6px;
  box-shadow: 0 4px 16px rgba(238, 65, 0, 0.18);
}

.request__btn:hover {
  background: #FFFFFF;
  background-image: none;
  color: var(--color-primary);
  -webkit-text-fill-color: currentColor;
}

.request__btn:active {
  background: #E8E8E8;
  background-image: none;
  color: var(--color-primary);
  -webkit-text-fill-color: currentColor;
}

.request__btn--wide {
  width: 466.227px;
  padding-right: 92px;
}

.request__btn:focus-visible,
.popup__submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(252, 139, 30, 0.22), 4px 4px 20px rgba(0, 0, 0, 0.2);
}

/* ========== POPUP ========== */

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-popup);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

.popup--active {
  display: flex;
}

.popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.popup__body {
  position: relative;
  width: 100%;
  max-width: 901.45px;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--color-bg);
  border-radius: 50px;
  padding: 47px 53px 46px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(20, 18, 17, 0.28) transparent;
  overscroll-behavior: contain;
}

.popup__body::-webkit-scrollbar {
  width: 8px;
}

.popup__body::-webkit-scrollbar-track {
  background: transparent;
  margin: 18px 8px 18px 0;
  border-radius: 999px;
}

.popup__body::-webkit-scrollbar-thumb {
  background: rgba(20, 18, 17, 0.28);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.popup__body::-webkit-scrollbar-thumb:hover {
  background: rgba(20, 18, 17, 0.42);
  border: 2px solid transparent;
  background-clip: padding-box;
}

.popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #c0bab8;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.75;
}

.popup__close:hover {
  color: var(--color-primary);
  opacity: 1;
}

.popup__tabs {
  display: flex;
  gap: 25px;
  margin-bottom: 37px;
}

.popup__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 73px;
  padding: 0 32px;
  border-radius: 100px;
  font-family: var(--font-medium);
  font-size: 25px;
  font-weight: var(--font-weight-medium);
  line-height: 1;
  cursor: pointer;
  border: none;
  background: #e8e8e8;
  color: #141211;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.popup__tab[data-tab="business"] {
  width: 273.568px;
  flex: 0 0 273.568px;
}

.popup__tab[data-tab="private"] {
  width: 496.472px;
  flex: 0 0 496.472px;
}

.popup__tab:hover {
  background: #dddddd;
}

.popup__tab--active {
  background: #141211;
  color: var(--color-text-light);
  box-shadow: 0 10px 24px rgba(20, 18, 17, 0.16);
}

.popup__tab--active:hover {
  background: #201d1c;
}

.popup__form {
  display: none;
  flex-direction: column;
  gap: 20px;
}

.popup__form--active {
  display: flex;
}

.popup__field {
  position: relative;
  display: block;
  width: 100%;
}

.popup__input {
  width: 100%;
  height: 61.773px;
  padding: 24px 39px 8px;
  background: #e8e8e8;
  border: 1px solid #cccccc;
  border-radius: 20px;
  font-family: var(--font-light);
  font-size: 25px;
  font-weight: var(--font-weight-light);
  color: #141211;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.popup__label {
  position: absolute;
  top: 50%;
  left: 39px;
  transform: translateY(-50%);
  font-family: var(--font-light);
  font-size: 25px;
  font-weight: var(--font-weight-light);
  line-height: 1;
  color: #565353;
  pointer-events: none;
  transform-origin: left top;
  transition: top 0.22s ease, transform 0.22s ease, font-size 0.22s ease, color 0.22s ease;
}

.popup__input::placeholder {
  color: transparent;
  opacity: 1;
}

.popup__input:focus + .popup__label,
.popup__input:not(:placeholder-shown) + .popup__label,
.popup__input:-webkit-autofill + .popup__label {
  top: 12px;
  transform: none;
  font-size: 14px;
  color: #7a7775;
}

.popup__input:hover {
  border-color: #bfbfbf;
  background: #ececec;
}

.popup__input:focus {
  border-color: var(--color-primary);
  background: #f3f3f3;
  box-shadow: 0 0 0 4px rgba(252, 139, 30, 0.16);
}

.popup__submit {
  position: relative;
  width: 287.821px;
  height: 73px;
  justify-content: center;
  font-size: 20px;
  padding: 6px 82px 6px 34px;
  margin-top: 11px;
  align-self: center;
  overflow: hidden;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}

.popup__submit .btn__icon {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--color-bg);
  color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(238, 65, 0, 0.18);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.popup__submit:hover {
  background: #FFFFFF;
  background-image: none;
  color: var(--color-primary);
  -webkit-text-fill-color: currentColor;
}

.popup__submit:active {
  background: #E8E8E8;
  background-image: none;
  color: var(--color-primary);
  -webkit-text-fill-color: currentColor;
}

/* ========== PORTFOLIO ========== */

.portfolio {
  padding: 100px 0 125px;
  background: #2B2F33;
}

.portfolio__header {
  text-align: center;
  margin-bottom: 78px;
}

.portfolio__title {
  font-family: var(--font-medium);
  font-size: 70px;
  font-weight: var(--font-weight-medium);
  line-height: 1.14;
  color: var(--color-text-light);
}

.portfolio__subtitle {
  font-family: var(--font-light);
  font-size: 25px;
  font-weight: var(--font-weight-light);
  line-height: 1.21;
  color: var(--color-text-light);
  margin-top: 38px;
  max-width: 1536px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio__subtitle strong {
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 478px);
  gap: 50px;
  justify-content: center;
}

.portfolio__card {
  position: relative;
  background: #FFFFFF;
  border-radius: 50px;
  overflow: hidden;
  min-height: 769.446px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.portfolio__card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.portfolio__card-img {
  position: absolute;
  left: 50%;
  top: var(--portfolio-media-top, 410px);
  width: var(--portfolio-media-width, 520px);
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center top;
  transform: translateX(-50%);
  display: block;
}

.portfolio__card-body {
  position: relative;
  z-index: 1; 
  padding: 165px 35px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio__card-icon {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 30px rgba(252, 139, 30, 0.36), 0 0 12px rgba(252, 139, 30, 0.28);
}

.portfolio__card-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.portfolio__card-icon--glow {
  top: 24px;
  width: 144px;
  height: 144px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.portfolio__card-icon--glow svg {
  display: block;
  width: 100%;
  height: 100%;
}

.portfolio__card-title {
  font-family: var(--font-medium);
  font-size: 46px;
  font-weight: var(--font-weight-medium);
  line-height: 0.98;
  color: #141211;
  margin-bottom: 28px;
  text-align: center;
}

.portfolio__card-text {
  font-family: var(--font-light);
  font-size: 25px;
  font-weight: var(--font-weight-light);
  line-height: 1.21;
  color: #141211;
  text-align: center;
  max-width: 378px;
}

.portfolio__card-text strong {
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
}

.portfolio__card-text em {
  font-style: italic;
}

.portfolio__card--private {
    --portfolio-media-width: 490px;
      --portfolio-media-top: 398px;
}

.portfolio__card--mkd {
    --portfolio-media-width: 676px;
      --portfolio-media-top: 414px;
}

.portfolio__card--commercial {
      --portfolio-media-width: 515px;
        --portfolio-media-top: 380px;
}

.portfolio__card--industrial {
    --portfolio-media-width: 548px;
      --portfolio-media-top: 509px;
}

.portfolio__card--special {
      --portfolio-media-width: 510px;
        --portfolio-media-top: 290px;
}

.portfolio__card--greenhouse {
    --portfolio-media-width: 675px;
      --portfolio-media-top: 341px;
}

.portfolio__card--sport {
    --portfolio-media-width: 548px;
      --portfolio-media-top: 415px;
}

.portfolio__card--culture {
      --portfolio-media-width: 505px;
        --portfolio-media-top: 335px;
}

.portfolio__card--temporary {
      --portfolio-media-width: 873px;
        --portfolio-media-top: 515px;
}

/* ========== TRUST ========== */

.trust {
  padding: 99px 0 125px;
  background: var(--color-bg);
}

.trust__header {
  text-align: center;
  margin-bottom: 78px;
}

.trust__title {
  margin: 0 auto;
  max-width: 1166px;
  font-family: var(--font-medium);
  font-size: 70px;
  font-weight: var(--font-weight-medium);
  line-height: 80px;
  color: #141211;
}

.trust__subtitle {
  margin: 38px auto 0;
  max-width: 1286px;
  font-family: var(--font-light);
  font-size: 25px;
  font-weight: var(--font-weight-light);
  line-height: 30px;
  color: #141211;
}

.trust__slider {
  position: relative;
}


.trust__arrow {
  position: absolute;
  top: 507px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: #141211;
  box-shadow: 0 0 30px rgba(252, 139, 30, 0.35);
  z-index: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.trust__arrow--prev {
  left: -176px;
}

.trust__arrow--next {
  right: -176px;
}

.trust__arrow:hover {
  background: var(--gradient-dark);
  color: #FFFFFF;
}

.trust__arrow:active {
  background: var(--gradient-dark);
  color: #FFFFFF;
  transform: scale(0.98);
}

.trust__arrow:disabled {
  background: #32373C;
  box-shadow: none;
  color: #FFFFFF;
  cursor: default;
}

.trust__arrow.is-limit,
.trust__arrow.is-limit:hover,
.trust__arrow.is-limit:active {
  background: #32373C;
  box-shadow: none;
  color: #FFFFFF;
  transform: none;
}

.trust__arrow:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(252, 139, 30, 0.22), 0 0 30px rgba(252, 139, 30, 0.35);
}

.trust__arrow svg {
  width: 26px;
  height: 26px;
  display: block;
}

.trust__arrow path {
  stroke: #141211 !important;
  transition: stroke 0.2s ease;
}

.trust__arrow:hover path,
.trust__arrow:active path,
.trust__arrow:disabled path,
.trust__arrow.is-limit path {
  stroke: #FFFFFF !important;
}

.trust__viewport.swiper {
  overflow: hidden;
}

.trust__card {
  box-sizing: border-box;
  background: #2B2F33;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 1062px;
  height: auto;
}

.trust__card-media {
  width: 440.755px;
  height: 333.387px;
  overflow: hidden;
  position: relative;
  margin: 19px auto 0;
  border-radius: 50px;
}

.trust__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50px;
}

.trust__card--apartments .trust__card-img {
  position: relative;
  left: -1.12%;
  width: 102.25%;
  max-width: none;
}

.trust__card--hotel .trust__card-img {
  position: relative;
  left: -16.94%;
  width: 133.88%;
  max-width: none;
}

.trust__card-body {
  padding: 30px 50px 60px 50px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust__card-name {
  margin: 0;
  font-family: var(--font-medium);
  font-size: 46px;
  font-weight: var(--font-weight-medium);
  line-height: 45px;
  color: var(--color-text-light);
  text-align: center;
}

.trust__card-city {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 21px;
  background: #FFFFFF;
  border-radius: 999px;
  font-family: var(--font-medium);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  color: #141211;
  margin-top: 20px;
  margin-bottom: 32px;
  text-align: center;
}

.trust__card--mall .trust__card-city {
  padding: 0 24px;
}

.trust__card--hotel .trust__card-city {
  padding: 0 18px;
}

.trust__card-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 23px;
  width: 100%;
}

.trust__card-detail {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 11px;
  align-items: start;
}

.trust__card-detail-icon {
  width: 42px;
  height: 42.103px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust__card-detail-icon img {
  width: 22px;
  height: 22px;
}

.trust__card-detail-content {
  display: flex;
  flex-direction: column;
}

.trust__card-detail-label {
  font-family: var(--font-medium);
  font-size: 25px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-light);
  line-height: 30px;
}

.trust__card-detail-value {
  font-family: var(--font-light);
  font-size: 25px;
  font-weight: var(--font-weight-light);
  color: var(--color-text-light);
  line-height: 30px;
}

.trust__card-detail-value strong {
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
}

.trust__cta {
  margin-top: 99px;
  width: calc(100% + 82px);
  margin-left: -41px;
  margin-right: -41px;
  background: #2B2F33;
  border: none;
  border-radius: 50px;
  display: flex;
  align-items: center;
  min-height: 454px;
  overflow: visible;
  padding-right: 40px;
}

.trust__cta-content {
  flex: 1;
  padding: 56px 48px 59px 50px;
}

.trust__cta-title {
  margin: 0;
  font-family: var(--font-medium);
  font-size: 70px;
  font-weight: var(--font-weight-medium);
  line-height: 80px;
  color: var(--color-text-light);
}

.trust__cta-text {
  font-family: var(--font-light);
  font-size: 25px;
  font-weight: var(--font-weight-light);
  line-height: 30px;
  color: var(--color-text-light);
  margin-top: 25px;
  max-width: 707px;
}

.trust__cta-btn {
  margin-top: 49px;
  width: 446px;
  min-height: 73px;
  justify-content: space-between;
  padding: 6px 6px 6px 31px;
  font-size: 25px;
}

.trust__cta-media-wrap {
  position: relative;
  flex-shrink: 0;
  width: 590px;
  height: 381px;
  overflow: visible;
}

.trust__cta-plus {
  position: absolute;
  top: 55.7%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 102px;
  height: 102px;
  border-radius: 37.226px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background: #141211;
}

.trust__cta-plus-icon {
  width: 39px;
  height: 40px;
  display: block;
}

.trust__cta-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 38px;
}

/* ========== ABOUT ========== */

.about {
  background: #2B2F33;
}

.about__letters {
  padding: 99px 0 125px;
}

.about__letters .container {
  max-width: 1574px;
}

.about__title {
  max-width: 1034px;
  font-family: var(--font-medium);
  font-size: 70px;
  font-weight: var(--font-weight-medium);
  line-height: 80px;
  color: var(--color-text-light);
  text-align: center;
  margin: 0 auto 74px;
}

.about__letters-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}

.about__letters-viewport.swiper {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.about__arrow {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: none;
  background: #FFFFFF;
  color: #2B2F33;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.about__arrow svg {
  width: 26px;
  height: 15px;
}

.about__arrow--prev svg {
  transform: rotate(180deg);
}

.about__arrow:hover {
  background: var(--gradient-primary);
  color: #FFFFFF;
}

.about__arrow:active {
  background: var(--gradient-dark);
  color: #FFFFFF;
  transform: scale(0.98);
}

.about__arrow:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(252, 139, 30, 0.24);
}

.about__letter {
  height: auto;
  box-sizing: border-box;
  background: #FFFFFF;
  border-radius: 30px;
  padding: 20px 20px 40px;
  display: flex;
  flex-direction: column;
}

.about__letter-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  background: #F5F2EB;
}

.about__letter-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.about__letter-image {
  position: relative;
  cursor: pointer;
}

.about__letter-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(20, 18, 17, 0.45) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24' fill='none' stroke='%23FC8B1E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E") center / 48px 48px no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.about__letter-image:hover::after {
  opacity: 1;
}

.about__letter-image:hover .about__letter-img {
  transform: scale(1.05);
}

/* ========== LIGHTBOX ========== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-popup);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 18, 17, 0.97);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox--active {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 2;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__close svg {
  width: 20px;
  height: 20px;
  color: #FFFFFF;
}

.lightbox__counter {
  position: absolute;
  top: 32px;
  left: 32px;
  font-family: var(--font-medium);
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.7);
  z-index: 2;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  user-select: none;
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #141211;
  box-shadow: 0 0 20px rgba(252, 139, 30, 0.3);
  transition: background 0.2s ease, transform 0.15s ease;
  z-index: 2;
}

.lightbox__arrow:hover {
  background: var(--gradient-dark);
  color: #FFFFFF;
}

.lightbox__arrow:hover svg path {
  stroke: #FFFFFF;
}

.lightbox__arrow--prev {
  left: 24px;
}

.lightbox__arrow--next {
  right: 24px;
}

.lightbox__arrow svg {
  width: 20px;
  height: 20px;
}

.lightbox__caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-medium);
  font-size: 18px;
  font-weight: var(--font-weight-medium);
  color: #FFFFFF;
  text-align: center;
  max-width: 600px;
  z-index: 2;
}

.about__letter-caption {
  font-family: var(--font-medium);
  font-size: 25px;
  font-weight: var(--font-weight-medium);
  color: #141211;
  max-width: 438px;
  margin: 30px 0 0 0;
  text-align: center;
  padding: 0;
}

.about__trust {
  margin-top: 0;
  padding: 99px 0 125px;
  position: relative;
  background: #141211;
  border-radius: 100px 100px 0 0;
  overflow: hidden;
}

.about__trust::before {
  display: none;
}

.about__trust .container {
  position: relative;
  z-index: 1;
  max-width: 1616px;
}

.about__trust-title {
  max-width: 1536px;
  font-family: var(--font-medium);
  font-size: 70px;
  font-weight: var(--font-weight-medium);
  line-height: 80px;
  color: var(--color-text-light);
  text-align: center;
  margin: 0 auto;
}

.about__trust-subtitle {
  max-width: 1286px;
  font-family: var(--font-light);
  font-size: 25px;
  font-weight: var(--font-weight-light);
  line-height: 30px;
  color: var(--color-text-light);
  text-align: center;
  margin: 38px auto 78px;
}

.about__trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 478px);
  gap: 51px;
  justify-content: center;
}

.about__trust-card {
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  width: 478px;
  height: 478px;
  display: flex;
  align-items: stretch;
}

.about__trust-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.about__trust-card--innovation .about__trust-card-bg {
  width: 175%;
  height: 100%;
  top: 0;
  left: 0;
}

.about__trust-card--geography .about__trust-card-bg {
  width: 171%;
  height: 114%;
  top: 0;
  left: -33%;
}

.about__trust-card--certification .about__trust-card-bg {
  width: 100%;
  height: 146%;
  top: -25%;
  left: 0;
}

.about__trust-card--service .about__trust-card-bg {
  width: 100%;
  height: 143%;
  top: -53%;
  left: 0;
  transform: scaleX(-1);
}

.about__trust-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.about__trust-card-content {
  position: relative;
  z-index: 1;
  padding: 52px 50px 50px;
  width: 100%;
}

.about__trust-card-title {
  font-family: var(--font-light);
  font-size: 46px;
  font-weight: var(--font-weight-light);
  line-height: 45px;
  color: var(--color-text-light);
  margin-bottom: 43px;
}

.about__trust-card-title strong {
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
}

.about__trust-card-text {
  font-family: var(--font-light);
  font-size: 25px;
  font-weight: var(--font-weight-light);
  line-height: 30px;
  color: var(--color-text-light);
  max-width: 378px;
}

.about__trust-card-text strong {
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
}

.about__trust-cta {
  margin-top: 85px;
  display: flex;
  justify-content: center;
}

.about__trust-cta .btn {
  width: 492px;
  max-width: 100%;
  min-height: 73px;
  padding: 6px 6px 6px 0;
  display: inline-grid;
  grid-template-columns: minmax(0, 1fr) 61px;
  align-items: center;
  gap: 0;
  background: #FFFFFF;
  color: #141211;
  box-shadow: none;
  font-size: 20px;
  line-height: 1;
  transition: background 0.2s ease, color 0s, box-shadow 0.2s ease, transform 0.15s ease;
}

.about__trust-cta .btn__label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px 0 32px;
  text-align: center;
}

.about__trust-cta .btn__icon {
  background: #141211;
  color: #FFFFFF;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
}

.about__trust-cta .btn:hover {
  background: var(--gradient-primary);
  color: #141211;
}

.about__trust-cta .btn:active {
  background: var(--gradient-dark);
  color: #FFFFFF;
}

.about__trust-cta .btn:hover .btn__icon,
.about__trust-cta .btn:active .btn__icon {
  background: #141211;
  color: #FFFFFF;
}

.about__trust-cta .btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(252, 139, 30, 0.24);
}

/* ========== CERTIFICATION ========== */

.certification {
  position: relative;
  padding: 99px 0 125px;  
  background: #FFFFFF;
  overflow: hidden;
}

.certification::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 305px;
  width: 2418px;
  height: 1611px;
  transform: translateX(-50%);
  background: url('../img/certification-rocks.png') center bottom / contain no-repeat;
  pointer-events: none;
}

.certification .container {
  position: relative;
  z-index: 1;
  max-width: 1617px;
}

.certification__title {
  max-width: 1165px;
  margin: 0 auto 78px;
  font-family: var(--font-medium);
  font-size: 70px;
  font-weight: var(--font-weight-medium);
  line-height: 80px;
  color: #141211;
  text-align: center;
}

.faq__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  font-family: var(--font-medium);
  font-size: 25px;
  font-weight: var(--font-weight-medium);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #141211;
}

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

.faq__title {
  font-family: var(--font-medium);
  font-size: 70px;
  font-weight: var(--font-weight-medium);
  line-height: 1.04;
  color: #141211;
}

.faq__subtitle {
  margin-top: 38px;
  font-family: var(--font-light);
  font-size: 25px;
  font-weight: var(--font-weight-light);
  line-height: 1.2;
}

.certification__shell {
  display: grid;
  grid-template-columns: 753px 664px;
  gap: 40px;
  min-height: 916px;
  padding: 40px;
  background: #2B2F33;
  border-radius: 50px;
}

.certification__tabs {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.certification__tab {
  position: relative;
  overflow: hidden;
  min-height: 143px;
  width: 100%;
  border: none;
  border-radius: 30px;
  padding: 35px 31px;
  background: #FFFFFF;
  color: #141211;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.certification__tab::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0.34) 50%, rgba(255, 255, 255, 0) 85%);
  opacity: 0;
  transform: translateX(-135%);
  pointer-events: none;
}

.certification__tab:hover {
  background: #F4F1EE;
}

.certification__tab:active {
  background: #E7E2DE;
  transform: scale(0.995);
}

.certification__tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(252, 139, 30, 0.22);
}

.certification__tab--active,
.certification__tab--active:hover,
.certification__tab--active:active {
  background: var(--gradient-primary);
  color: #FFFFFF;
  transform: none;
}

.certification__tab--switching {
  animation: certificationTabPulse 0.42s ease;
}

.certification__tab--switching::after {
  opacity: 1;
  animation: certificationTabSheen 0.42s ease;
}

.certification__tab--single {
  justify-content: center;
}

.certification__tab-title,
.certification__tab-meta {
  max-width: 678px;
}

.certification__tab-title {
  font-family: var(--font-medium);
  font-size: 25px;
  font-weight: var(--font-weight-medium);
  line-height: 30px;
}

.certification__tab-meta {
  margin-top: 7px;
  font-family: var(--font-light);
  font-size: 25px;
  font-weight: var(--font-weight-light);
  line-height: 30px;
}

.certification__viewer {
  position: relative;
  width: 664px;
  height: 836px;
  align-self: start;
  transform-origin: center center;
}

.certification__viewer--switching {
  animation: certificationViewerSwitch 0.38s ease;
}

.certification__viewer-img {
  display: block;
  border-radius: 30px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

.certification__viewer--switching .certification__viewer-img {
  animation: certificationViewerImageSwitch 0.38s ease;
}


/* ========== FAQ ========== */

.faq {
  position: relative;
  z-index: 1;
  padding: 99px 0 125px 0;
  background: #E8E8E8;
  overflow: hidden;
}

.faq__wrap {
  position: relative;
  padding-bottom: 72px;
}

.faq__wrap::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -836px;
  width: 1036px;
  height: 1036px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(90deg, #EE4100 0%, #FC8B1E 100%);
  filter: blur(100px);
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}

.faq__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq .container {
  position: relative;
  max-width: 1537px;
  padding: 0;
}

.faq__item {
  position: relative;
      background: #141211;
        border-radius: 50px;
}

.faq__title {
  width: min(1165px, 100%);
  margin: 0 auto 78px;
  font-family: var(--font-medium);
  font-size: 70px;
  font-weight: var(--font-weight-medium);
  line-height: 80px;
  color: #2B2F33;
  text-align: center;
}

.faq__question {
  width: 100%;
  min-height: 113px;
  padding: 10px 13px 10px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  text-align: left;
  background: #2B2F33;
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq__question:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(20, 18, 17, 0.08);
}

.faq__question:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(252, 139, 30, 0.18);
}

.faq__question-copy {
  display: block;
  max-width: 1237px;
  font-family: var(--font-medium);
  font-size: 25px;
  font-weight: var(--font-weight-medium);
  line-height: 30px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.faq__brace {
  background: linear-gradient(90deg, #EE4100 0%, #FC8B1E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.faq__icon {
  position: relative;
  margin-left: auto;
  flex-shrink: 0;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #FFFFFF;
  transition: background 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 39px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(90deg, #EE4100 0%, #FC8B1E 100%);
  transform: translate(-50%, -50%);
  transition: background 0.2s ease, opacity 0.2s ease;
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__question:hover .faq__icon {
  background: linear-gradient(90deg, #EE4100 0%, #FC8B1E 100%);
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
}

.faq__question:hover .faq__icon::before,
.faq__question:hover .faq__icon::after,
.faq__question:active .faq__icon::before,
.faq__question:active .faq__icon::after {
  background: #FFFFFF;
}

.faq__question:active .faq__icon {
  background: linear-gradient(90deg, #C94E2C 0%, #D95A2B 48%, #B24735 100%);
  box-shadow: none;
}

.faq__item--active .faq__icon {
  width: 0;
  opacity: 0;
  transform: scale(0.6);
}

.faq__answer {
  min-height: 283px;
  margin-top: 20px;
  padding: 44px 40px 41px 38px;
  background: #2B2F33;
  border-radius: 50px;
}

.faq__answer p {
  max-width: 1435px;
  font-family: var(--font-light);
  font-size: 25px;
  font-weight: var(--font-weight-light);
  line-height: 35px;
  color: #FFFFFF;
}

.faq__answer strong {
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
}

.faq__promo {
  position: relative;
  width: 1536px;
  max-width: 100%;
  min-height: 507px;
  margin-top: 102px;
  background: #141211;
  border-radius: 50px;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}

.faq__promo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 18, 17, 0.86) 0%, rgba(20, 18, 17, 0.78) 52%, rgba(20, 18, 17, 0.86) 100%);
  pointer-events: none;
}

.faq__promo-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.faq__promo-content {
  position: relative;
  z-index: 1;
  padding: 59px 45px 71px;
}

.faq__promo-title {
  width: 1446px;
  max-width: 100%;
  margin: 0 auto;
  font-family: var(--font-medium);
  font-size: 70px;
  font-weight: var(--font-weight-medium);
  line-height: 80px;
  text-align: center;
  color: #FFFFFF;
}

.faq__promo-title span {
  background: linear-gradient(90deg, #EE4100 0%, #FC8B1E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.faq__promo-text {
  width: 1441px;
  max-width: 100%;
  margin: 25px auto 0;
  font-family: var(--font-light);
  font-size: 25px;
  font-weight: var(--font-weight-light);
  line-height: 30px;
  text-align: center;
  color: #FFFFFF;
}

.faq__promo-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 446px;
  max-width: 100%;
  height: 73px;
  min-height: 73px;
  margin: 59px auto 0;
  padding: 6px 82px 6px 32px;
  background: #FFFFFF;
  box-shadow: none;
  font-size: 25px;
  line-height: 30px;
  color: #141211;
  text-align: center;
}

.faq__promo-btn-label {
  display: block;
  width: 100%;
}

.faq__promo-btn .btn__icon {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 61px;
  height: 61px;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
}

.faq__promo-btn:hover,
.faq__promo-btn:focus-visible {
  -webkit-text-fill-color: currentColor;
}

.faq__promo-btn:hover {
  background: var(--gradient-primary);
  color: #FEFEFE;
  box-shadow: var(--shadow-lg);
}

.faq__promo-btn:active {
  background: #E8E8E8;
  color: #141211;
  box-shadow: var(--shadow-lg);
}

.faq__promo-btn:hover .btn__icon {
  background: #FFFFFF;
  color: var(--color-primary);
}

.faq__promo-btn:active .btn__icon {
  background: var(--gradient-primary);
  color: #FFFFFF;
}

/* ========== PRICING ========== */

.pricing {
  padding: 100px 0 125px 0;
  background: #FFFFFF;
  border-radius: 100px;
}

.pricing > .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 186px;
  background: #FFFFFF;
  border-radius: 50px;
}

.pricing__title {
  font-family: var(--font-medium);
  font-size: 70px;
  font-weight: var(--font-weight-medium);
  line-height: 1.14286;
  color: #141211;
  text-align: center;
  margin: 0 auto 68px;
  white-space: nowrap;
}

.pricing__table {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.pricing__row--header {
  background: transparent;
}

.pricing__row--header .pricing__cell {
  font-family: var(--font-medium);
  font-size: 25px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-light);
  min-height: 62px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(90deg, #090909 0%, #141211 57%, #090909 100%);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
  position: relative;
}

.pricing__row--header .pricing__cell::before,
.pricing__row--header .pricing__cell::after {
  color: var(--color-primary);
}

.pricing__row--header .pricing__cell::before {
  content: "{ ";
}

.pricing__row--header .pricing__cell::after {
  content: " }";
}

.pricing__row--header .pricing__cell--param {
  color: var(--color-text-light);
}



.pricing__row--dark {
  background: transparent;
}

.pricing__cell {
  min-height: 163px;
  padding: 34px 30px;
  font-family: var(--font-light);
  font-size: 20px;
  font-weight: var(--font-weight-light);
  line-height: 1.16;
  color: #141211;
  border-radius: 12px;
  background: #D9D9D9;
}

.pricing__cell strong {
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
}

.pricing__cell--param {
  font-family: var(--font-medium);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-light);
  background: linear-gradient(90deg, #090909 0%, #141211 57%, #090909 100%);
  text-transform: uppercase;
}

.pricing__cell--termaron {
  background: linear-gradient(90deg, #EE4100 0%, #FC8B1E 100%);
  color: var(--color-text-light);
  font-family: var(--font-light);
  font-weight: var(--font-weight-light);
}

.pricing__cell--termaron strong {
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
}

.pricing__action {
  margin-top: 85px;
  text-align: center;
}

.pricing__action .btn {
  width: 332px;
  max-width: 100%;
  min-height: 73px;
  padding: 6px 6px 6px 32px;
  justify-content: space-between;
  gap: 18px;
  font-size: 24px;
  line-height: 1;
}

.pricing__action .btn__icon {
  margin-left: auto;
}

.pricing__action .btn:hover {
  background: #FFFFFF;
  background-image: none;
  color: var(--color-primary);
  -webkit-text-fill-color: currentColor;
}

.pricing__action .btn:active {
  background: #E8E8E8;
  background-image: none;
  color: var(--color-primary);
  -webkit-text-fill-color: currentColor;
}

/* ========== FOOTER ========== */

.footer {
  position: relative;
  z-index: 0;
  background: #2B2F33;
  padding: 132px 0 120px;
}

.footer::before {
  display: none;
}

.footer .container {
  position: relative;
  z-index: 1;
  padding: 0;
  max-width: 1536.21px;
}

.footer__card {
  position: relative;
  width: 1536.21px;
  max-width: 100%;
  min-height: 947.303px;
  margin: 0 auto;
  background: transparent;
  border-radius: 50px;
  display: grid;
  grid-template-columns: minmax(0, 694.158px) minmax(0, 521px);
  column-gap: 107px;
  padding: 70.842px 98.456px 108px;
}

.footer__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("../img/footer-shape.svg") center / 100% 100% no-repeat;
  pointer-events: none;
}

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

.footer__left {
  width: 694px;
  max-width: 100%;
}

.footer__logo {
  margin-bottom: 17px;
  line-height: 0;
}

.footer__logo-eco,
.footer__logo-terma {
  display: block;
  font-family: var(--font-medium);
  font-weight: var(--font-weight-medium);
  letter-spacing: -0.03em;
}

.footer__logo-eco {
  font-size: 75.522px;
  line-height: 57.875px;
  color: #141211;
}

.footer__logo-terma {
  margin-top: 6px;
  font-size: 58.964px;
  line-height: 57.875px;
  background: linear-gradient(90deg, #EE4100 0%, #FC8B1E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.footer__copyright {
  width: 678.308px;
  max-width: 100%;
  margin: 0 0 59.508px;
  font-family: var(--font-medium);
  font-size: 25px;
  font-weight: var(--font-weight-medium);
  line-height: 30px;
  color: #2B2F33;
}

.footer__map {
  width: 694px;
  max-width: 100%;
  height: 372px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 30px;
  background: #F3F5F7;
}

.footer__map-img,
.footer__map-frame {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.footer__map-img {
  object-fit: cover;
}

.footer__map-frame {
  background: #F3F5F7;
}

.footer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 694px;
  max-width: 100%;
  height: 74px;
  border-radius: 50px;
  background: linear-gradient(90deg, #EE4100 0%, #FC8B1E 100%);
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
  font-family: var(--font-medium);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  line-height: 24px;
  color: #FFFFFF;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.footer__cta:hover {
  background: #FFFFFF;
  color: var(--color-primary);
  transform: translateY(-1px);
}

.footer__cta:active {
  background: #E8E8E8;
  color: var(--color-primary);
  transform: translateY(0);
  box-shadow: none;
}

.footer__right {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-top: 142.928px;
}

.footer__nav {
  display: grid;
  grid-template-columns: max-content max-content;
  column-gap: 136px;
  justify-content: start;
  margin-bottom: 50px;
}

.footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-medium);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  line-height: 24px;
  color: #141211;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__nav-link:hover {
  color: var(--color-primary);
}

.footer__nav-link--dropdown svg {
  width: 11px;
  height: 6px;
  flex-shrink: 0;
}

.footer__contacts {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 37.475px;
  margin-bottom: 45px;
}

.footer__contacts-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__contacts-label {
  font-family: var(--font-light);
  font-size: 25px;
  font-weight: var(--font-weight-light);
  line-height: 30px;
  color: #141211;
  text-transform: uppercase;
}

.footer__contacts-label span {
  background: linear-gradient(90deg, #EE4100 0%, #FC8B1E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.footer__phone {
  font-family: var(--font-medium);
  font-size: 58.964px;
  font-weight: var(--font-weight-medium);
  line-height: 57.875px;
  background: linear-gradient(90deg, #EE4100 0%, #FC8B1E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.footer__email {
  font-family: var(--font-medium);
  font-size: 35px;
  font-weight: var(--font-weight-medium);
  color: #141211;
  text-decoration: none;
  line-height: 57.875px;
  transition: color 0.2s ease;
}

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

.footer__address {
  font-family: var(--font-medium);
  font-size: 35px;
  font-weight: var(--font-weight-medium);
  color: #141211;
  line-height: 51.484px;
}

.footer__privacy {
  font-family: var(--font-medium);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  line-height: 24px;
  color: #141211;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

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

.footer__disclaimer {
  grid-column: 1 / -1;
  width: 1325.886px;
  max-width: 100%;
  margin-top: 33.516px;
  font-family: var(--font-medium);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  line-height: 24px;
  color: #2B2F33;
}
/* ========== SWIPE HINT ========== */

.swipe-hint {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(43, 47, 51, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 24px;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.swipe-hint--hidden {
  opacity: 0;
}

.swipe-hint__arrow--left {
  animation: swipeArrowLeft 1.8s ease-in-out infinite;
}

.swipe-hint__hand {
  animation: swipeHandSlide 1.8s ease-in-out infinite;
}

.swipe-hint__arrow--right {
  animation: swipeArrowRight 1.8s ease-in-out infinite;
}
/* ========== RESPONSIVE ========== */
@media (max-width: 1800px) {
  .trust__slider {
    padding: 0 96px;
  }

  .trust__arrow {
    width: 72px;
    height: 72px;
  }

  .trust__arrow--prev {
    left: 0;
  }

  .trust__arrow--next {
    right: 0;
  }

  .trust__arrow svg {
    width: 22px;
    height: 22px;
  }

  .trust__card {
    min-height: 900px;
    border-radius: 40px;
  }

  .trust__card-media {
    border-radius: 40px;
  }

  .trust__card-img {
    border-radius: 40px;
  }

  .trust__cta {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 1599px) {
  .footer__copyright{
    margin: 0 0 35px;
  }
    .footer__logo-eco{
      font-size: 68px;
    }
  .pricing__row--header .pricing__cell{
    font-size: 20px;
  }
  .products__tab[data-tab="bmk"] {
      width: 455px;
    }
  .hero__actions {
      width: min(100%, 980px);
      flex-wrap: wrap;
    }
  
    .hero__actions .btn,
    .how-work__cta-btn,
    .products__cta-btn,
    .request__btn,
    .popup__submit,
    .trust__cta-btn,
    .about__trust-cta .btn,
    .faq__promo-btn,
    .pricing__action .btn {
      max-width: 100%;
      white-space: normal;
    }
  
    .hero__title,
    .benefits__advantages-title,
    .how-work__title,
    .products__title,
    .products__product-title,
    .request__title,
    .portfolio__title,
    .trust__title,
    .trust__cta-title,
    .about__title,
    .about__trust-title,
    .certification__title,
    .faq__title,
    .pricing__title {
      text-wrap: balance;
    }
  .how-work__title {
      font-size: 62px;
    }
  
    .how-work__subtitle,
    .how-work__step-title,
    .how-work__step-text,
    .how-work__card-text,
    .how-work__cta-text,
    .how-work__cta-btn {
      font-size: 22px;
    }
  
    .how-work__card-title {
      font-size: 40px;
    }
  
    .how-work__cta-title {
      font-size: 60px;
    }
  
    .how-work__step--left .how-work__step-head {
      margin-left: 96px;
    }
  
    .how-work__step--center {
      transform: translateY(-22px);
    }
  
    .how-work__step--right .how-work__step-head {
      margin-right: 96px;
    }
  
    .how-work__step-link--left {
      left: 12%;
      width: 38%;
    }
  
    .how-work__step-link--right {
      right: 12%;
      width: 38%;
    }
  
    .benefits__advantages-title {
      font-size: 60px;
    }
  
    .benefit__text {
      font-size: 22px;
    }
  
    .benefits__panel[data-panel="default"] {
      gap: 32px;
    }
  
    .benefits__panel[data-panel="business"],
    .benefits__panel[data-panel="engineers"],
    .benefits__panel[data-panel="private"] {
      gap: 36px;
    }
  
    .products__title,
    .products__product-title {
      font-size: 60px;
    }
  
    .products__media {
      width: 500px;
    }
  
    .products__image-wrap {
      width: 500px;
      height: 780px;
    }
  
    .request__title {
      font-size: 60px;
    }
  
    .request__wrap {
      min-height: 620px;
    }
  
    .request__shape {
      height: 620px;
    }
  
    .request__content {
      grid-template-columns: minmax(0, 1fr) 680px;
      min-height: 620px;
      padding: 60px 42px 60px 42px;
    }
  
    .request__form {
      width: 680px;
      margin-top: 82px;
      gap: 16px;
    }
  
    .request__privacy {
      font-size: 18px;
    }
  
    .request__buttons {
      gap: 20px;
    }
  
    .request__btn {
      width: 260px;
      height: 68px;
      font-size: 18px;
      padding: 6px 76px 6px 28px;
    }
  
    .request__btn--wide {
      width: 400px;
      padding-right: 84px;
    }
  
    .request__btn .btn__icon,
    .popup__submit .btn__icon {
      width: 56px;
      height: 56px;
    }
  
    .popup__body {
      max-width: 820px;
      padding: 40px 36px 38px;
      border-radius: 40px;
    }
  
    .popup__tabs {
      gap: 18px;
      margin-bottom: 28px;
    }
  
    .popup__tab {
      height: 64px;
      font-size: 20px;
    }
  
    .popup__tab[data-tab="business"] {
      width: 240px;
      flex-basis: 240px;
    }
  
    .popup__tab[data-tab="private"] {
      width: 490px;
      flex-basis: 490px;
    }
  
    .popup__input {
      height: 56px;
      padding: 21px 28px 7px;
      font-size: 22px;
    }
  
    .popup__label {
      left: 28px;
      font-size: 22px;
    }
  
    .popup__input:focus+.popup__label,
    .popup__input:not(:placeholder-shown)+.popup__label,
    .popup__input:-webkit-autofill+.popup__label {
      top: 11px;
      font-size: 13px;
    }
  
    .popup__form {
      gap: 16px;
    }
  
    .popup__submit {
      height: 68px;
      font-size: 18px;
      margin-top: 8px;
    }
  .certification {
    padding: 72px 0 96px;
  }

  .certification::after {
    width: 2100px;
    height: 520px;
    bottom: -20px;
  }

  .certification__shell {
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 28px;
    min-height: auto;
    padding: 32px;
    border-radius: 40px;
  }

  .faq__wrap {
    border-radius: 48px;
    padding: 56px 48px 60px;
  }

  .certification__title,
  .faq__title {
    font-size: 56px;
    line-height: 64px;
  }

  .faq__subtitle {
    font-size: 22px;
  }

  .certification__tabs {
    gap: 24px;
  }

  .certification__tab {
    min-height: 120px;
    padding: 28px 26px;
    border-radius: 24px;
  }

  .certification__tab-title,
  .certification__tab-meta {
    font-size: 20px;
    line-height: 24px;
  }

  .certification__viewer {
    width: 520px;
    height: 655px;
  }

  .faq__answer p {
    font-size: 18px;
    padding: 40px 15px 15px 15px;
  }

  .faq__question {
    padding: 26px 28px;
    font-size: 26px;
  }

  .faq__answer {
    padding: 0 28px 26px;
  }
     .faq .container,
     .footer .container {
       max-width: calc(100% - 48px);
     }
  
     .faq {
       padding-top: 84px;
     }
  
     .faq__question-copy,
     .faq__answer p,
     .faq__promo-text {
       font-size: 22px;
       line-height: 1.3;
     }
  
     .faq__promo {
       width: 100%;
     }
  
     .faq__promo-content {
       padding: 52px 40px 60px;
     }
  
     .faq__promo-title {
       font-size: 60px;
       line-height: 66px;
     }
  
     .faq__promo-btn {
       width: 420px;
       margin-top: 48px;
     }
  
     .faq__wrap::after {
       bottom: -836px;
       width: min(1036px, calc(100% - 72px));
       height: min(1036px, calc(100% - 72px));
     }
  
     .footer__card {
       min-height: 0;
       padding: 64px 74px 86px;
       column-gap: 80px;
       grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
     }
  
     .footer__left,
     .footer__map,
     .footer__cta {
       width: 100%;
     }
  
     .footer__right {
       padding-top: 120px;
     }
  
     .footer__nav {
       column-gap: 84px;
       margin-bottom: 44px;
     }
  
     .footer__phone {
       font-size: 50px;
       line-height: 52px;
     }
  
     .footer__email,
     .footer__address {
       font-size: 30px;
       line-height: 40px;
     }
  
     .footer__disclaimer {
       width: 100%;
     }

    .trust__card {
      min-height: 960px;
      border-radius: 40px;
    }

    .trust__card-media {
      width: 400px;
      height: 300px;
      border-radius: 40px;
      margin: 16px auto 0;
    }

    .trust__card-img {
      border-radius: 40px;
    }

    .trust__card-body {
      padding: 24px 36px 48px;
    }

    .trust__card-name {
      font-size: 38px;
      line-height: 40px;
    }

    .trust__card-city {
      font-size: 16px;
      padding: 8px 16px;
    }

    .trust__card-details {
      gap: 16px;
    }

    .trust__card-detail-label {
      font-size: 14px;
    }

    .trust__card-detail-value {
      font-size: 18px;
      line-height: 24px;
    }

    .trust__arrow {
      top: 440px;
    }

    .trust__cta {
      border-radius: 40px;
    }

    .about__trust-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .about__trust-card {
      width: 100%;
      height: auto;
      aspect-ratio: 1 / 1;
      border-radius: 40px;
    }

    .about__trust-card-title {
      font-size: 36px;
      line-height: 38px;
    }

    .about__trust-card-text {
      font-size: 18px;
      line-height: 24px;
    }

    .portfolio__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .portfolio__card {
      min-height: 720px;
      border-radius: 40px;
    }

    .trust__card-media {
      width: 328px;
      height: 250px;
      margin: 16px auto 0;
    }

    .trust__card-body {
      padding: 24px 32px 40px;
    }

    .trust__card-name {
      font-size: 36px;
      line-height: 40px;
    }

    .trust__card-detail-label {
      font-size: 16px;
    }

    .trust__card-detail-value {
      font-size: 18px;
      line-height: 24px;
    }
}
@media (max-width: 1441px) {
  .header__inner{
    gap: 16px;
  }
  .products {
    padding: 64px 0;
  }

  .products__inner {
    padding: 0 20px;
  }

  .products__title {
    font-size: 56px;
  }

  .products__subtitle {
    font-size: 20px;
    margin-top: 24px;
  }

  .products__tabs-wrap {
    margin-top: 48px;
    min-height: 900px;
  }

  .products__tabs {
    gap: 12px;
    width: 56%;
  }

  .products__tab {
    flex: 1;
    height: 56px;
    font-size: 20px;
    padding: 0 24px;
  }

  .products__tab[data-tab="stationary"] {
    width: auto;
  }

  .products__tab[data-tab="bmk"] {
    width: auto;
  }

  .products__content {
    padding: 16px 24px 16px 40px;
  }

  .products__panel--active {
    gap: 40px;
    justify-content: space-between;
  }

  .products__info {
    flex: 1 1 0;
    min-width: 0;
    max-width: 640px;
    padding-top: 80px;
  }

  .products__product-title {
    font-size: 48px;
  }

  .products__product-desc {
    font-size: 20px;
    margin-top: 16px;
  }

  .products__specs {
    margin-top: 24px;
    max-width: 640px;
  }

  .products__spec {
    gap: 16px;
    padding: 12px 0 14px;
  }

  .products__spec--last {
    gap: 48px;
  }

  .products__spec-label {
    font-size: 18px;
  }

  .products__spec-value {
    font-size: 18px;
  }

  .products__spec-list {
    font-size: 18px;
  }

  .products__media {
    align-self: stretch;
  }

  .products__image-wrap {
    width: 480px;
    flex: 1;
    height: auto;
    border-radius: 40px;
  }

  .products__cta-btn {
    width: 480px;
    height: 64px;
    font-size: 20px;
    padding: 6px 72px 6px 32px;
  }

  .products__cta-btn .btn__icon {
    width: 52px;
    height: 52px;
  }

  .hero {
    min-height: 0;
  }

  .hero__inner {
    padding-top: 140px;
    gap: 16px;
  }

  .hero__title {
    font-size: 56px;
    margin-bottom: 16px;
  }

  .hero__tag {
    font-size: 20px;
  }

  .hero__tag span {
    font-size: 20px;
  }

  .hero__desc {
    font-size: 20px;
  }

  .hero__features-inner {
    padding-top: 16px;
    padding-bottom: 24px;
  }

  .header__nav-list {
    gap: 12px;
  }

  .header__nav-link {
    font-size: 18px;
  }

  .header__inner {
    padding: 0 10px 0 32px;
  }

  .benefit__title {
    font-size: 18px;
    left: 135px;
  }

  .benefit__text {
    font-size: 20px;
  }

  .benefit {
    padding: 96px 36px 24px 36px;
  }

  .benefit:has(.benefit__title) {
    padding-top: 88px;
  }

  .benefits__panel[data-panel="business"],
  .benefits__panel[data-panel="engineers"],
  .benefits__panel[data-panel="private"] {
    gap: 28px;
  }

  .benefits__panel[data-panel="default"] {
    gap: 24px;
  }

  .pricing > .container {
    padding: 0 64px;
  }

  .pricing__title {
    font-size: 56px;
  }

  .pricing__cell {
    font-size: 16px;
    padding: 24px 20px;
    min-height: 140px;
    word-break: break-word;
  }

  .pricing__row--header .pricing__cell {
    font-size: 18px;
    padding: 0 16px;
  }

  .pricing__cell--param {
    font-size: 16px;
    word-break: break-word;
  }

  .trust__card-body {
    padding: 20px 28px 40px;
  }

  .trust__card-name {
    font-size: 32px;
    line-height: 36px;
  }

  .trust__card-detail-label {
    font-size: 13px;
  }

  .trust__card-detail-value {
    font-size: 16px;
    line-height: 22px;
  }

  .trust__card {
    min-height: 840px;
  }

  .trust__card-media {
    width: calc(100% - 32px);
  }

  .trust__cta-title {
    font-size: 56px;
    line-height: 64px;
  }

  .about__arrow {
    width: 72px;
    height: 72px;
  }

  .certification__shell {
    grid-template-columns: minmax(0, 1fr) 480px;
    gap: 28px;
  }

  .certification__viewer {
    width: 480px;
    height: 604px;
  }

  .certification__tab {
    min-height: 110px;
    padding: 24px 24px;
  }

  .certification__tab-title {
    font-size: 20px;
    line-height: 24px;
  }

  .certification__tab-meta {
    font-size: 18px;
    line-height: 22px;
  }

  .faq__question {
    padding: 24px 24px;
    font-size: 24px;
  }

  .faq__answer {
    padding: 0 24px 24px;
  }

  .footer {
    padding-top: 96px;
  }

  .footer__card {
    padding: 96px 64px 80px;
    column-gap: 64px;
  }

  .footer__phone {
    font-size: 44px;
    line-height: 48px;
  }

  .footer__email,
  .footer__address {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (max-width: 1279px) {
  
  .hero__actions {
      width: min(100%, 640px);
      flex-direction: column;
      align-items: stretch;
      gap: 14px;
    }
  
    .hero__actions .btn {
      width: 100%;
      justify-content: space-between;
      text-align: left;
      padding-right: 6px;
    }
  
    .hero__desc,
    .how-work__subtitle,
    .products__subtitle,
    .request__subtitle,
    .portfolio__subtitle,
    .trust__subtitle,
    .about__trust-subtitle,
    .faq__promo-text {
      max-width: 42ch;
    }
  
    .how-work__cta,
    .trust__cta {
      overflow: hidden;
    }
  
    .products__tab {
      border: 1px solid var(--color-bg-dark);
    }

    .products__tabs-wrap {
      min-height: 0;
    }

    .products__shape {
      display: none;
    }

    .products__tabs {
      position: static;
      width: 100%;
      margin-bottom: 20px;
    }

    .products__content {
      padding: 0;
    }

    .products__panel--active {
      flex-direction: column;
      gap: 28px;
    }

    .products__info {
      flex: none;
      max-width: 100%;
      padding: 0;
    }

    .products__media {
      width: 100%;
      align-items: flex-start;
    }

    .products__image-wrap {
      width: min(420px, 100%);
      height: auto;
      aspect-ratio: 420 / 650;
    }

    .products__cta-btn {
      width: min(420px, 100%);
    }

    .products__tabs-wrap {
      padding: 28px;
      background: #ffffff;
      border-radius: 40px;
      overflow: hidden;
    }

  .container {
      padding: 0 24px;
    }
  
    .header {
      width: 100%;
    }
  
    .header__nav {
      display: none;
    }
  
    .header .header__cta {
      display: none;
    }
  
    .header__burger {
      display: flex;
    }
  
    .header__burger--active .header__burger-line:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
  
    .header__burger--active .header__burger-line:nth-child(2) {
      opacity: 0;
    }
  
    .header__burger--active .header__burger-line:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
  
    .hero__tag {
      font-size: 20px;
    }
  
    .hero__title {
      font-size: 56px;
    }
  
    .hero__bottom {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
    }
  
    .hero__experience-number {
      font-size: 48px;
    }
  
    .benefits__partners .container {
      width: 100%;
      max-width: 100%;
      padding: 0 24px;
    }
  
    .benefits__logos {
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
  
    .benefits__logo-card {
      min-height: 160px;
      padding: 32px 24px;
    }
  
    .benefits__logo {
      max-height: 90px;
      max-width: 180px;
    }
  
    .benefits__advantages-title {
      font-size: 48px;
    }
  
    .benefits__advantages-desc {
      font-size: 20px;
    }
  
    .benefits__tabs {
      gap: 12px;
    }
  
    .benefits__tab {
      width: auto;
      height: auto;
      min-height: 44px;
      padding: 10px 24px;
      font-size: 13px;
    }
  
    .benefits__panel[data-panel="default"] {
      gap: 24px;
    }
  
    .benefits__panel[data-panel="business"],
    .benefits__panel[data-panel="engineers"],
    .benefits__panel[data-panel="private"] {
      gap: 24px;
    }
  
    .benefit {
      padding: 100px 40px 28px 40px;
      height: 280px;
    }
  
    .benefit--large {
      height: 600px;
    }
  
    .benefit__text {
      font-size: 20px;
    }
  
    .benefit__icon {
      width: 56px;
      height: 56px;
    }
  
    .benefit__icon img {
      width: 28px;
      height: 28px;
    }
  
    .benefit__num {
      width: 56px;
      height: 56px;
      font-size: 26px;
    }
  
    .benefit:has(.benefit__title) {
      padding-top: 84px;
    }
  
    .benefit__title {
      left: 120px;
      top: -40px;
      font-size: 14px;
    }
  
    .benefits__panel[data-panel="business"] .benefit,
    .benefits__panel[data-panel="engineers"] .benefit,
    .benefits__panel[data-panel="private"] .benefit {
      height: 280px;
    }
  
    .how-work {
      padding: 84px 0 90px;
    }
  
    .how-work .container {
      max-width: 1280px;
    }
  
    .how-work__title {
      font-size: 56px;
    }
  
    .how-work__subtitle {
      max-width: 860px;
    }
  
    .how-work__steps {
      margin-top: 62px;
      gap: 24px;
    }
  
    .how-work__step--left {
      padding-top: 88px;
    }
  
    .how-work__step--center {
      transform: translateY(-18px);
    }
  
    .how-work__step--right {
      padding-top: 60px;
    }
  
    .how-work__step-link--left {
      left: 13%;
      top: 126px;
      width: 37%;
      transform: rotate(-14deg);
    }
  
    .how-work__step-link--right {
      right: 13%;
      top: 98px;
      width: 37%;
      transform: rotate(9deg);
    }
  
    .how-work__step--left .how-work__step-head {
      margin-left: 84px;
    }
  
    .how-work__step--right .how-work__step-head {
      margin-right: 84px;
    }
  
    .how-work__step-badge--outer {
      width: 76px;
      height: 76px;
    }
  
    .how-work__step-badge--small {
      width: 58px;
      height: 58px;
    }
  
    .how-work__step-media {
      width: 80px;
      height: 80px;
      top: -20px;
      left: 42px;
    }
  
    .how-work__rings {
      width: 860px;
      height: 860px;
      top: 120px;
    }
  
    .how-work__rings::before {
      width: 860px;
      height: 860px;
    }
  
    .how-work__rings::after {
      width: 796px;
      height: 796px;
    }
  
    .how-work__reliability {
      width: 320px;
      min-height: 66px;
    }
  
    .how-work__cards {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
      margin-top: 64px;
    }
  
    .how-work__card {
      min-height: auto;
      padding: 40px 34px;
      border-radius: 36px;
    }
  
    .how-work__card:nth-child(3) {
      grid-column: 1 / -1;
    }
  
    .how-work__cta {
      grid-template-columns: 1fr;
      gap: 30px;
      padding: 40px 34px;
      border-radius: 38px;
    }
  
    .how-work__cta-title {
      font-size: 54px;
    }
  
    .how-work__cta-btn {
      margin-top: 36px;
    }
  
    .how-work__cta-media {
      height: 320px;
      border-radius: 36px;
    }
  
    .how-work__cta-plus {
      display: none;
    }
  
    .products__title,
    .products__product-title {
      font-size: 48px;
    }
  
    .products__subtitle,
    .products__product-desc {
      font-size: 22px;
    }
  
    .products__tab {
      font-size: 22px;
      height: 64px;
      padding: 0 32px;
    }
  
    .products__tabs-wrap {
      margin-top: 56px;
      padding: 24px;
    }
  
    .products__tabs {
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 20px;
    }
  
    .products__content {
      height: auto;
      padding: 0;
    }
  
    .products__panel {
      height: auto;
    }
  
    .products__panel--active {
      flex-direction: column;
      gap: 28px;
    }
  
    .products__info {
      max-width: 100%;
      padding: 0;
    }
  
    .products__media {
      width: 100%;
      margin-top: 0;
      align-items: flex-start;
    }
  
    .products__image-wrap {
      width: min(420px, 100%);
      height: auto;
      aspect-ratio: 420 / 650;
    }
  
    .products__cta-btn {
      width: min(420px, 100%);
      font-size: 22px;
    }
  
    .request__title {
      font-size: 48px;
    }
  
    .request__subtitle {
      font-size: 22px;
    }
  
    .request__wrap {
      min-height: 580px;
    }
  
    .request__shape {
      height: 580px;
    }
  
    .request__content {
      grid-template-columns: minmax(0, 1fr) 560px;
      min-height: 580px;
      column-gap: 24px;
      padding: 48px 32px 44px;
    }
  
    .request__form {
      width: 560px;
      margin-top: 72px;
    }
  
    .request__input {
      font-size: 22px;
      height: 56px;
      padding: 21px 28px 7px;
    }
  
    .request__label {
      left: 28px;
      font-size: 22px;
    }
  
    .request__input:focus+.request__label,
    .request__input:not(:placeholder-shown)+.request__label,
    .request__input:-webkit-autofill+.request__label {
      top: 11px;
      font-size: 13px;
    }
  
    .request__privacy {
      font-size: 16px;
    }
  
    .request__buttons {
      gap: 16px;
    }
  
    .request__btn {
      font-size: 18px;
      width: 230px;
      height: 64px;
      padding: 5px 68px 5px 22px;
    }
  
    .request__btn--wide {
      width: 314px;
      padding-right: 76px;
    }
  
    .request__btn .btn__icon,
    .popup__submit .btn__icon {
      width: 54px;
      height: 54px;
    }
  
    .portfolio__title {
      font-size: 48px;
    }
  
    .portfolio__header {
      margin-bottom: 72px;
    }
  
    .portfolio__subtitle {
      font-size: 22px;
    }
  
    .portfolio__grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }
  
    .portfolio__card {
      min-height: 680px;
      border-radius: 38px;
    }
  
    .portfolio__card-media {
      inset: auto 0 0;
      height: 340px;
    }

    .portfolio__card--private .portfolio__card-media {
      height: 614px;
        inset: 271px 0 0;
    }

    .portfolio__card--mkd .portfolio__card-media {
            height: 555px;
              inset: 360px 0 0;
    }

    .portfolio__card--commercial .portfolio__card-media {
              height: 428px;
                inset: 337px 0 0;
    }

    .portfolio__card--industrial .portfolio__card-media {
            height: 507px;
              inset: 201px 0 0;
    }

    .portfolio__card--special .portfolio__card-media {
              height: 574px;
                inset: 300px 0 0;
    }

    .portfolio__card--greenhouse .portfolio__card-media {
            height: 414px;
              inset: 392px 0 -20px;
              width: 400px;
    }

    .portfolio__card--sport .portfolio__card-media {
              height: 413px;
                inset: 389px 0 0;
    }

    .portfolio__card--culture .portfolio__card-media {
      height: 520px;
        inset: 362px 0 0;
    }

    .portfolio__card--temporary .portfolio__card-media {
            height: 591px;
              inset: 119px 0 0;
    }

    .portfolio__card-img {
      left: 0;
      top: auto;
      bottom: 0;
      width: 100%;
      height: 100%;
      max-width: none;
      transform: none;
      object-fit: contain;
      object-position: center bottom;
    }
  
    .portfolio__card-body {
      padding: 138px 34px 0;
    }
  
    .portfolio__card-icon {
      top: 34px;
      width: 76px;
      height: 76px;
    }
  
    .portfolio__card-icon img {
      width: 32px;
      height: 32px;
    }
  
    .portfolio__card-title {
      font-size: 34px;
      margin-bottom: 20px;
    }
  
    .portfolio__card-text {
      font-size: 20px;
    }
  
    .trust__title {
      font-size: 48px;
    }
  
    .trust__cta-title {
      font-size: 40px;
    }
  
    .trust__cta-media-wrap {
      width: 480px;
      height: 320px;
    }

    .trust__card {
      min-height: 880px;
      border-radius: 36px;
    }

    .trust__card-media {
      width: 348px;
      height: 260px;
      border-radius: 36px;
      margin: 14px auto 0;
    }

    .trust__card-img {
      border-radius: 36px;
    }

    .trust__card-body {
      padding: 20px 28px 40px;
    }

    .trust__card-name {
      font-size: 32px;
      line-height: 36px;
    }

    .trust__card-city {
      font-size: 14px;
      padding: 6px 14px;
    }

    .trust__card-detail-icon {
      width: 40px;
      height: 40px;
    }

    .trust__card-detail-icon img {
      width: 18px;
      height: 18px;
    }

    .trust__card-detail-label {
      font-size: 13px;
    }

    .trust__card-detail-value {
      font-size: 16px;
      line-height: 22px;
    }

    .trust__arrow {
      width: 64px;
      height: 64px;
      top: 400px;
    }

    .trust__slider {
      padding: 0 80px;
    }

    .trust__arrow--prev {
      left: 0;
    }

    .trust__arrow--next {
      right: 0;
    }

    .trust__arrow svg {
      width: 20px;
      height: 20px;
    }

    .trust__cta {
      border-radius: 36px;
    }

    .about__title,
    .about__trust-title {
      font-size: 40px;
    }
  
    .about__arrow {
      width: 64px;
      height: 64px;
    }

    .about__letter {
      padding: 10px 10px 18px;
      border-radius: 24px;
    }

    .about__letter-image {
      border-radius: 18px;
    }

    .about__letter-img {
      border-radius: 18px;
    }

    .about__letter-caption {
      margin-top: 16px;
      padding: 0 4px;
      font-size: 16px;
      line-height: 20px;
    }

    .about__trust-grid {
      gap: 24px;
    }

    .about__trust-card {
      border-radius: 36px;
    }

    .about__trust-subtitle {
      max-width: 900px;
      font-size: 20px;
      line-height: 26px;
      margin: 28px auto 48px;
    }

    .about__trust-card-content {
      padding: 32px 28px 28px;
    }

    .about__trust-card-title {
      font-size: 32px;
      line-height: 34px;
      margin-bottom: 24px;
    }

    .about__trust-card-text {
      font-size: 16px;
      line-height: 22px;
    }

    .about__trust-cta .btn {
      width: 420px;
    }
  
    .pricing__title {
      font-size: 40px;
    }
  
    .pricing {
      padding: 0 20px 88px;
    }
  
    .pricing>.container {
      padding: 96px 64px 132px;
      border-radius: 40px;
    }
  
    .pricing__row--header .pricing__cell {
      min-height: 64px;
      font-size: 20px;
    }
  
    .pricing__cell {
      min-height: 148px;
      padding: 26px 22px;
      font-size: 18px;
    }
  
    .footer__card {
      padding: 36px;
      gap: 36px;
    }
  
    .footer__left {
      flex: 0 0 380px;
    }
  
    .footer__phone {
      font-size: 24px;
    }
  .certification {
    padding: 64px 0 88px;
  }

  .certification::after {
    width: 1700px;
    height: 420px;
    bottom: -10px;
  }

  .certification__shell {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 32px 44px;
    border-radius: 40px;
  }

  .faq__wrap {
    padding: 40px 32px 44px;
    border-radius: 40px;
  }

  .certification__title,
  .faq__title {
    font-size: 46px;
    line-height: 52px;
  }

  .faq__eyebrow {
    font-size: 20px;
  }

  .certification__tabs {
    gap: 16px;
  }

  .certification__tab {
    min-height: 108px;
    padding: 24px 22px;
    border-radius: 24px;
  }

  .certification__tab-title,
  .certification__tab-meta {
    font-size: 18px;
    line-height: 22px;
  }

  .certification__viewer {
    width: 100%;
    max-width: 664px;
    height: auto;
    aspect-ratio: 664 / 836;
    margin: 0 auto;
  }

  .faq {
    padding-bottom: 72px;
  }

  .faq__question {
    font-size: 22px;
  }

  .faq__icon {
    width: 48px;
    height: 48px;
  }
    .faq .container,
    .footer .container {
      max-width: none;
      padding: 0 24px;
    }
  
    .faq {
      padding-top: 72px;
    }
  
    .faq__title {
      margin-bottom: 56px;
      font-size: 56px;
      line-height: 62px;
    }
  
    .faq__question {
      min-height: 96px;
      padding: 10px 10px 10px 24px;
    }
  
    .faq__question-copy {
      font-size: 18px;
      line-height: 24px;
    }
  
    .faq__icon {
      width: 72px;
      height: 72px;
    }
  
    .faq__icon::before,
    .faq__icon::after {
      width: 28px;
      height: 6px;
    }
  
    .faq__answer {
      min-height: 0;
      padding: 28px 24px 30px;
      border-radius: 32px;
    }
  
    .faq__answer p {
      font-size: 18px;
      line-height: 28px;
    }
  
    .faq__promo {
      min-height: 420px;
      margin-top: 72px;
    }
  
    .faq__promo-content {
      padding: 48px 28px 50px;
    }
  
    .faq__promo-title {
      font-size: 52px;
      line-height: 58px;
    }
  
    .faq__promo-text {
      font-size: 20px;
      line-height: 28px;
    }
  
    .faq__promo-btn {
      width: min(380px, 100%);
      margin-top: 40px;
      padding: 6px 76px 6px 28px;
      font-size: 22px;
      line-height: 26px;
    }
  
    .faq__wrap::after {
      bottom: -398px;
      width: min(980px, calc(100% - 64px));
      height: calc(min(980px, calc(100% - 64px)) * 0.5334261838);
    }
  
    .footer {
      padding: 96px 0 88px;
    }
  
    .footer__card {
      grid-template-columns: 1fr;
      row-gap: 48px;
      padding: 56px 32px 40px;
      border-radius: 40px;
    }
  
    .footer__card::before {
      background: #FFFFFF;
      border-radius: inherit;
    }
  
    .footer__left {
      max-width: 694px;
    }
  
    .footer__right {
      padding-top: 0;
    }

    .footer__nav {
    grid-template-columns: repeat(2, minmax(0, max-content));
    column-gap: 40px;
    margin-bottom: 48px;
    }

    .footer__contacts {
    gap: 40px;
    margin-bottom: 32px;
    }

    .footer__disclaimer {
    margin-top: 0;
    }
    .hero {
      min-height: 100vh;
    }

    .hero__inner {
      justify-content: flex-start;
      padding-top: 160px;
      margin-bottom: 50px;
    }

    .hero__feature {
      padding: 15px 20px;
    }

    .hero__features-inner {
      margin-bottom: 30px;
    }

    .hero__tag {
      margin-bottom: 10px;
    }
    .pricing{
    padding: 0 22px 35px;
    }
    .pricing>.container{
    padding: 40px 0;
    }
}
@media (max-width: 991px) {
  .hero {
      min-height: 100vh;
    }
  
    .hero__inner {
      padding-top: 160px;
      gap: 16px;
    }
  
    .hero__title {
      font-size: 44px;
      margin-bottom: 24px;
    }
  
    .hero__tag {
      font-size: 16px;
      margin-bottom: 16px;
    }
  
    .hero__desc {
      font-size: 20px;
    }
  
    .hero__features-inner {
      flex-wrap: wrap;
      gap: 8px;
      padding-bottom: 48px;
    }
  
    .hero__feature {
      font-size: 16px;
      padding: 14px 24px;
    }
  
    .benefits__partners {
      padding: 48px 0;
    }
  
    .benefits__partners .container {
      padding: 0 24px;
    }
  
    .benefits__logos {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
  
    .benefits__section-label {
      margin-bottom: 32px;
    }
  
    .benefits__logo-card {
      min-height: 140px;
      padding: 24px 16px;
    }
  
    .benefits__logo {
      max-height: 80px;
      max-width: 160px;
    }
  
    .how-work__title {
      font-size: 48px;
    }
  
    .how-work__subtitle {
      font-size: 20px;
    }
  
    .how-work__steps {
      grid-template-columns: 1fr;
      margin-top: 50px;
      gap: 40px;
    }
  
    .how-work__step-link {
      display: none;
    }
  
    .how-work__step,
    .how-work__step--right {
      text-align: center;
      padding-top: 0;
    }
  
    .how-work__step--center {
      transform: none;
    }
  
    .how-work__step--left .how-work__step-head,
    .how-work__step--right .how-work__step-head {
      width: auto;
      margin-left: 0;
      margin-right: 0;
    }
  
    .how-work__step-title {
      margin-top: 28px;
    }
  
    .how-work__step-text {
      margin-top: 18px;
    }
  
    .how-work__stats {
      margin-top: 34px;
    }
  
    .how-work__rings {
      width: 640px;
      height: 640px;
      top: 200px;
    }
  
    .how-work__rings::before {
      width: 640px;
      height: 640px;
    }
  
    .how-work__rings::after {
      width: 590px;
      height: 590px;
    }
  
    .how-work__reliability {
      width: 100%;
      max-width: 420px;
      font-size: 20px;
    }
  
    .how-work__cards {
      grid-template-columns: 1fr;
      margin-top: 42px;
    }
  
    .how-work__card:nth-child(3) {
      grid-column: auto;
    }
  
    .how-work__card-title {
      font-size: 34px;
    }
  
    .how-work__card-text {
      margin-top: 24px;
      font-size: 20px;
    }
  
    .how-work__cta-title {
      font-size: 48px;
    }
  
    .how-work__cta-text,
    .how-work__cta-btn {
      font-size: 20px;
    }
  
    .how-work__cta-btn {
      width: 100%;
      max-width: 446px;
    }
  
    .benefits__advantages-title {
      font-size: 36px;
    }
  
    .benefits__advantages-desc {
      font-size: 18px;
    }
  
    .benefits__advantages-header {
      gap: 18px;
      margin-bottom: 40px;
      max-width: 100%;
    }
  
    .benefits__tabs {
      gap: 8px;
      padding: 6px;
      width: 100%;
    }
  
    .benefits__tab {
      width: auto;
      height: auto;
      min-height: 44px;
      padding: 10px 20px;
      font-size: 12px;
    }
  
    .benefits__panel[data-panel="default"] {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }
  
    .benefits__panel[data-panel="default"] .benefit:nth-child(1),
    .benefits__panel[data-panel="default"] .benefit:nth-child(2),
    .benefits__panel[data-panel="default"] .benefit:nth-child(4),
    .benefits__panel[data-panel="default"] .benefit:nth-child(5) {
      grid-column: auto;
      grid-row: auto;
    }
  
    .benefits__panel[data-panel="default"] .benefit--large {
      grid-column: 1 / -1;
      grid-row: auto;
      height: auto;
      min-height: auto;
      background: #fff;
      border-radius: 0 48px 48px 48px;
    }
  
    .benefits__panel[data-panel="default"] .benefit--large .benefit__shape {
      display: none;
    }
  
    .benefits__panel[data-panel="default"] .benefit--large .benefit__num {
      border: 2px solid #E0E0E0;
    }
  
    .benefits__panel[data-panel="default"] .benefit--large .benefit__badge {
      top: 16px;
      left: 32px;
    }
  
    .benefits__panel[data-panel="business"],
    .benefits__panel[data-panel="engineers"],
    .benefits__panel[data-panel="private"] {
      grid-template-columns: 1fr;
      grid-auto-flow: row;
      gap: 20px;
    }
  
    .benefit {
      padding: 80px 32px 24px 32px;
      height: auto;
      min-height: 220px;
    }
  
    .benefit--large {
      height: auto;
    }
  
    .benefit__text {
      font-size: 18px;
    }
  
    .benefit__icon {
      width: 52px;
      height: 52px;
    }
  
    .benefit__icon img {
      width: 26px;
      height: 26px;
    }
  
    .benefit__num {
      width: 52px;
      height: 52px;
      font-size: 24px;
    }
  
    .benefit:has(.benefit__title) {
      padding-top: 80px;
    }
  
    .benefit__title {
      left: 201px;
      top: -61px;
      font-size: 16px;
      right: 0;
    }
  
    .benefits__panel[data-panel="business"] .benefit,
    .benefits__panel[data-panel="engineers"] .benefit,
    .benefits__panel[data-panel="private"] .benefit {
      height: auto;
      min-height: 200px;
    }
  
    .benefits__compare {
      padding: 64px 0;
    }
  
    .benefits__compare .container {
      width: 100%;
      max-width: 100%;
      padding: 0 24px;
    }
  
    .benefits__compare-grid {
      gap: 32px;
    }
  
    .benefits__compare-card {
      border-radius: 32px;
      padding: 32px;
      min-height: fit-content;
    }
  
    .benefits__compare-title {
      font-size: 36px;
    }
  
    .benefits__compare-item {
      font-size: 18px;
    }
  
    .products {
      padding: 64px 0;
    }
  
    .products__title,
    .products__product-title {
      font-size: 36px;
    }
  
    .products__subtitle,
    .products__product-desc {
      font-size: 18px;
    }
  
    .products__tabs-wrap {
      margin-top: 48px;
    }
  
    .products__tab {
      font-size: 18px;
      height: 56px;
      padding: 0 24px;
    }
  
    .products__content {
      padding: 64px 24px 32px;
    }
  
    .products__panel--active {
      flex-direction: column;
      gap: 15px;
    }
  
    .products__media {
      width: 100%;
      margin-top: 0;
      align-items: center;
    }
  
    .products__image-wrap {
      width: 100%;
      max-width: 500px;
      height: 500px;
      border-radius: 32px;
    }
  
    .products__specs {
      margin-top: 32px;
    }
  
    .products__spec-label,
    .products__spec-value,
    .products__spec-list {
      font-size: 18px;
    }
  
    .products__cta-btn {
      font-size: 18px;
      height: 62px;
    }
  
    .products__cta-btn .btn__icon {
      width: 50px;
      height: 50px;
    }
  
    .products__tabs-wrap {
      margin-top: 40px;
      padding: 20px;
    }
  
    .products__tabs {
      gap: 10px;
      margin-bottom: 18px;
    }
  
    .products__tab {
      height: 56px;
      font-size: 18px;
      padding: 0 24px;
    }
  
    .products__tab[data-tab="stationary"],
    .products__tab[data-tab="bmk"] {
      flex: 1 1 calc(50% - 5px);
    }
  
    .request {
      padding: 64px 0;
    }
  
    .request__wrap {
      min-height: auto;
      background: #ffffff;
      border-radius: 40px;
      overflow: hidden;
    }
  
    .request__shape {
      display: none;
    }
  
    .request__content {
      display: flex;
      flex-direction: column;
      gap: 32px;
      min-height: auto;
      padding: 48px 32px 40px;
    }
  
    .request__title {
      font-size: 36px;
    }
  
    .request__subtitle {
      font-size: 18px;
    }
  
    .request__form {
      width: 100%;
      margin-top: 0;
      gap: 14px;
    }
  
    .request__input {
      font-size: 18px;
      height: 52px;
      padding: 19px 24px 6px;
      border-radius: 18px;
    }
  
    .request__label {
      left: 24px;
      font-size: 18px;
    }
  
    .request__input:focus+.request__label,
    .request__input:not(:placeholder-shown)+.request__label,
    .request__input:-webkit-autofill+.request__label {
      top: 10px;
      font-size: 12px;
    }
  
    .request__privacy {
      font-size: 16px;
      margin-top: 10px;
    }
  
    .request__btn {
      font-size: 16px;
      height: 62px;
      width: calc(50% - 8px);
      padding: 5px 64px 5px 20px;
    }
  
    .request__btn--wide {
      width: calc(50% - 8px);
    }
  
    .popup__body {
      max-width: 720px;
      padding: 36px 28px 32px;
      border-radius: 36px;
    }
  
    .popup__tab {
      font-size: 18px;
      padding: 0 20px;
      height: 56px;
    }
  
    .popup__tab[data-tab="business"] {
      width: 200px;
      flex-basis: 200px;
    }
  
    .popup__tab[data-tab="private"] {
      width: calc(100% - 218px);
      flex-basis: calc(100% - 218px);
    }
  
    .popup__input {
      height: 52px;
      font-size: 18px;
      padding: 19px 24px 6px;
    }
  
    .popup__label {
      left: 24px;
      font-size: 18px;
    }
  
    .popup__input:focus+.popup__label,
    .popup__input:not(:placeholder-shown)+.popup__label,
    .popup__input:-webkit-autofill+.popup__label {
      top: 10px;
      font-size: 12px;
    }
  
    .popup__close {
      top: 8px;
      right: 8px;
      width: 40px;
      height: 40px;
      z-index: 2;
    }
  
    .popup__submit {
      height: 62px;
      width: 280px;
      font-size: 18px;
    }
  
    .portfolio {
      padding: 64px 0;
    }
  
    .portfolio__title {
      font-size: 40px;
    }
  
    .portfolio__subtitle {
      font-size: 18px;
    }
  
    .portfolio__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  
    .portfolio__card {
      min-height: 620px;
      border-radius: 32px;
    }
  
    .portfolio__card-media {
      inset: auto 0 0;
      height: 320px;
    }

    .portfolio__card--private .portfolio__card-media {
      height: 784px;
      inset: 219px 0 0;
      width: 472px;
    }
  
    .portfolio__card--mkd .portfolio__card-media {
      height: 975px;
      inset: 10px 0 0;
    }
  
    .portfolio__card--commercial .portfolio__card-media {
      height: 476px;
      inset: 241px 0 0;
    }
    
    .portfolio__card--industrial .portfolio__card-media {
            height: 450px;
              inset: 201px 0 0;
    }

    .portfolio__card--special .portfolio__card-media {
            inset: 150px 0 0; 
            height: 700px;
    }

    .portfolio__card--greenhouse .portfolio__card-media {
    height: 425px;
      inset: 323px 0 0px;
      width: 500px;
    }

    .portfolio__card--sport .portfolio__card-media {
            height: 473px;
              inset: 290px 0 0;
    }

    .portfolio__card--culture .portfolio__card-media {
    height: 640px;
      inset: 231px 0 0;
    }

    .portfolio__card--temporary .portfolio__card-media {
            height: 551px;
              inset: 110px 0 0;
    }

    .portfolio__card-img {
      left: 0;
      top: auto;
      bottom: 0;
      width: 100%;
      height: 100%;
      transform: none;
      object-fit: contain;
      object-position: center bottom;
    }
  
    .portfolio__card-body {
      padding: 124px 28px 0;
    }
  
    .portfolio__card-icon {
      top: 28px;
      width: 72px;
      height: 72px;
    }
  
    .portfolio__card-icon img {
      width: 30px;
      height: 30px;
    }
  
    .portfolio__card-title {
      font-size: 38px;
      margin-bottom: 18px;
    }
  
    .portfolio__card-text {
      font-size: 18px;
    }
  
    .trust {
      padding: 64px 0;
    }

    .trust__slider {
      padding: 0 72px;
    }

    .trust__title {
      font-size: 40px;
      line-height: 1.12;
    }

    .trust__card {
      min-height: 800px;
      border-radius: 28px;
    }

    .trust__card-media {
      width: 308px;
      height: 230px;
      margin: 12px auto 0;
      border-radius: 28px;
    }

    .trust__card-img {
      border-radius: 28px;
    }

    .trust__card-body {
      padding: 16px 20px 28px;
    }

    .trust__card-name {
      font-size: 26px;
      line-height: 30px;
    }

    .trust__card-city {
      font-size: 13px;
      padding: 6px 12px;
    }

    .trust__card-detail-icon {
      width: 36px;
      height: 36px;
    }

    .trust__card-detail-icon img {
      width: 16px;
      height: 16px;
    }

    .trust__card-detail-label {
      font-size: 12px;
    }

    .trust__card-detail-value {
      font-size: 14px;
      line-height: 20px;
    }

    .trust__card--apartments .trust__card-img,
    .trust__card--hotel .trust__card-img {
      width: 100%;
      max-width: none;
      left: auto;
    }

    .trust__arrow {
      width: 56px;
      height: 56px;
      top: 360px;
    }

    .trust__arrow--prev {
      left: 0;
    }

    .trust__arrow--next {
      right: 0;
    }

    .trust__arrow svg {
      width: 18px;
      height: 18px;
    }

    .trust__cta {
      flex-direction: column;
      width: auto;
      margin-top: 48px;
      margin-left: 0;
      margin-right: 0;
      padding-right: 0;
      overflow: hidden;
      border-radius: 28px;
      min-height: 0;
    }

    .trust__cta-content {
      padding: 36px 32px 60px;
    }

    .trust__cta-title {
      font-size: 36px;
      line-height: 1.15;
    }

    .trust__cta-text {
      font-size: 18px;
      line-height: 26px;
      margin-top: 16px;
      max-width: none;
    }

    .trust__cta-btn {
      margin-top: 28px;
      width: 100%;
      max-width: 380px;
      min-height: 64px;
      font-size: 20px;
      padding: 6px 6px 6px 24px;
    }

    .trust__cta-media-wrap {
      width: 100%;
      height: 280px;
    }

    .trust__cta-plus {
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 88px;
      height: 88px;
    }

    .trust__cta-media {
      border-radius: 0;
    }
  
    .about__letters {
      padding: 64px 0 72px;
    }
  
    .about__title,
    .about__trust-title {
      font-size: 36px;
      margin-bottom: 36px;
    }
  
    .about__arrow {
      display: none;
    }

    .about__letter {
      padding: 10px 10px 18px;
    }

    .about__letter-caption {
      margin-top: 16px;
      padding: 0 6px;
      font-size: 15px;
      line-height: 19px;
    }

    .about__trust-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .about__trust-card {
      border-radius: 28px;
    }

    .about__trust {
      padding: 64px 0 72px;
      border-radius: 48px;
    }
  
    .about__trust-subtitle {
      max-width: 720px;
      font-size: 20px;
      line-height: 26px;
      margin: 24px auto 48px;
    }
  
    .about__trust-card {
      width: 100%;
      height: auto;
      aspect-ratio: 1 / 1;
    }
  
    .about__trust-card-content {
      padding: 32px 24px 24px;
    }
  
    .about__trust-card-title {
      font-size: 32px;
      line-height: 32px;
      margin-bottom: 24px;
    }
  
    .about__trust-card-text {
      max-width: none;
      font-size: 18px;
      line-height: 22px;
    }
  
    .about__trust-cta {
      margin-top: 48px;
    }

    .about__trust-cta .btn {
      width: 100%;
      max-width: 420px;
    }
  
    .pricing {
      padding: 48px 20px 64px;
    }
  
    .pricing>.container {
      padding: 64px 32px 80px;
      border-radius: 36px;
    }
  
    .pricing__title {
      font-size: 36px;
    }
  
    .pricing__table {
      overflow-x: auto;
      gap: 16px;
    }
  
    .pricing__row {
      min-width: 1100px;
      gap: 16px;
    }
  
    .pricing__row--header .pricing__cell {
      min-height: 60px;
      font-size: 18px;
    }
  
    .pricing__cell {
      min-height: 140px;
      padding: 24px 18px;
      font-size: 16px;
    }
  
    .footer__card {
      flex-direction: column;
      padding: 32px;
      gap: 32px;
    }
  
    .footer__left {
      flex: auto;
    }
  
    .footer__nav {
      gap: 48px;
    }
  .hero__features-inner {
    align-items: stretch;
  }

  .hero__feature {
    flex: 1 1 calc(50% - 8px);
    min-height: 58px;
    justify-content: center;
    text-align: center;
  }

  .benefits__tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin-bottom: 32px;
  }

  .benefits__tab,
  .benefits__tab[data-tab="business"],
  .benefits__tab[data-tab="engineers"],
  .benefits__tab[data-tab="private"] {
    width: 100%;
    min-height: 54px;
    padding: 14px 18px;
    border-radius: 28px;
    font-size: 14px;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
  }

  .benefit__title,
  .portfolio__card-title,
  .certification__tab-title,
  .faq__question-copy {
    overflow-wrap: anywhere;
  }

  .how-work__rings {
    display: none;
  }

  .how-work__stats {
    padding-top: 0;
  }

  .request__privacy {
    max-width: none;
    font-size: 15px;
    line-height: 1.45;
    color: rgba(20, 18, 17, 0.72);
  }

  .request__buttons {
    width: 100%;
    align-items: stretch;
  }

  .request__btn,
  .request__btn--wide {
    min-width: 0;
  }

  .pricing__table {
    padding-bottom: 8px;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
  }

  .pricing__row {
    min-width: 980px;
    scroll-snap-align: start;
  }

  .footer__phone,
  .footer__email,
  .footer__address,
  .footer__disclaimer {
    overflow-wrap: anywhere;
  }
   
  
}
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }

  .header {
    width: 100%;
    top: 0;
    height: 64px;
    border-radius: 0;
    overflow: visible;
  }

  .header__inner {
    padding: 0 8px 0 20px;
  }

  .hero {
    min-height: 100vh;
    background-position: 70% center;
  }

  .hero__inner {
    padding-top: 130px;
    gap: 12px;
  }

  .hero__tag {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .hero__tag span {
    font-size: 14px;
  }

  .hero__title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .hero__desc {
    font-size: 16px;
  }

  .hero__experience {
    display: none;
  }

  .hero__features-inner {
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 16px;
    padding-bottom: 32px;
  }

  .hero__feature {
    font-size: 13px;
    padding: 12px 20px;
    gap: 8px;
  }

  .hero__feature-icon {
    width: 20px;
    height: 20px;
  }

  .hero__feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .btn--white {
    font-size: 16px;
    padding: 4px 4px 4px 24px;
  }

  .btn--white .btn__icon {
    width: 48px;
    height: 48px;
  }

  .benefits__partners {
    padding: 32px 0;
  }

  .benefits__partners .container {
    padding: 0 16px;
  }

  .benefits__section-label {
    font-size: 18px;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
  }

  .benefits__logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .benefits__logo-card {
    min-height: 100px;
    padding: 24px 12px;
    background-size:
      20px 1px, 1px 20px,
      20px 1px, 1px 20px,
      20px 1px, 1px 20px,
      20px 1px, 1px 20px;
  }

  .benefits__logo {
    max-height: 50px;
    max-width: 120px;
  }

  .benefits__compare {
    padding: 48px 0;
  }

  .benefits__compare .container {
    padding: 0 16px;
  }

  .benefits__compare-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefits__compare-card {
    border-radius: 24px;
    padding: 24px;
  }

  .benefits__compare-title {
    font-size: 28px;
  }

  .benefits__compare-item {
    font-size: 16px;
    gap: 12px;
    padding: 16px 0;
  }

  .benefits__compare-icon {
    width: 32px;
    height: 32px;
  }

  .benefits__advantages-header {
    gap: 12px;
    margin-bottom: 24px;
  }

  .benefits__advantages {
    border-radius: 0;
    padding:32px 0;
  }

  .benefits__advantages-title {
    font-size: 32px;
  }

  .benefits__advantages-desc {
    font-size: 18px;
  }

  .benefits__panel[data-panel="default"] {
    grid-template-columns: 1fr;
  }

  .benefits__panel[data-panel="default"] .benefit:nth-child(1),
  .benefits__panel[data-panel="default"] .benefit:nth-child(2),
  .benefits__panel[data-panel="default"] .benefit--large,
  .benefits__panel[data-panel="default"] .benefit:nth-child(4),
  .benefits__panel[data-panel="default"] .benefit:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .benefits__panel[data-panel="business"],
  .benefits__panel[data-panel="engineers"],
  .benefits__panel[data-panel="private"] {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    gap: 16px;
  }

  .benefits__tabs {
    gap: 8px;
    padding: 4px;
    border-radius: 24px;
  }

  .benefits__tab {
    width: auto;
    height: auto;
    min-height: 40px;
    padding: 8px 16px;
    font-size: 12px;
  }

  .benefit__shape {
    display: none;
  }

  .benefit {
    padding: 72px 24px 20px 24px;
    min-height: 180px;
    border-radius: 0 32px 32px 32px;
    background: #fff;
  }

  .benefit__badge {
    top: 16px;
    left: 24px;
  }

  .benefit__num {
    width: 44px;
    height: 44px;
    font-size: 20px;
    margin-left: -4px;
    border: 2px solid #E0E0E0;
  }

  .benefit__text {
    font-size: 16px;
  }

  .benefit__text+.benefit__text {
    margin-top: 16px;
  }

  .benefit__icon {
    width: 44px;
    height: 44px;
  }

  .benefit__icon img {
    width: 22px;
    height: 22px;
  }

  .benefit:has(.benefit__title) {
    padding-top: 72px;
  }

  .benefit__title {
    position: static;
    font-size: 12px;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
  }

  .benefits__panel[data-panel="default"] {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefits__panel[data-panel="default"] .benefit,
  .benefits__panel[data-panel="business"] .benefit,
  .benefits__panel[data-panel="engineers"] .benefit,
  .benefits__panel[data-panel="private"] .benefit {
    height: auto;
    min-height: 170px;
  }

  .benefits__slider {
    margin-bottom: 24px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions .btn {
    white-space: normal;
  }

  .how-work {
    padding: 64px 0 74px;
  }

  .how-work__title {
    font-size: 42px;
  }

  .how-work__subtitle {
    margin-top: 14px;
    font-size: 18px;
  }

  .how-work__steps {
    margin-top: 38px;
    gap: 32px;
  }

  .how-work__step-badge--outer {
    width: 68px;
    height: 68px;
    font-size: 24px;
  }

  .how-work__step-badge--small {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }

  .how-work__step-media {
    width: 72px;
    height: 72px;
    top: -16px;
    left: 36px;
  }

  .how-work__step-title {
    font-size: 21px;
  }

  .how-work__step-text {
    font-size: 18px;
    line-height: 1.35;
  }

  .how-work__rings {
    width: 440px;
    height: 440px;
    top: 240px;
  }

  .how-work__rings::before {
    width: 440px;
    height: 440px;
  }

  .how-work__rings::after {
    width: 408px;
    height: 408px;
  }

  .how-work__reliability {
    min-height: 58px;
    padding: 14px 20px;
    font-size: 18px;
  }

  .how-work__cards {
    gap: 18px;
    margin-top: 28px;
  }

  .how-work__card {
    padding: 30px 24px;
    border-radius: 30px;
  }

  .how-work__card-title {
    font-size: 30px;
  }

  .how-work__card-text {
    font-size: 18px;
    line-height: 1.35;
  }

  .how-work__cta {
    margin-top: 58px;
    gap: 24px;
    padding: 30px 20px;
    border-radius: 30px;
  }

  .how-work__cta-title {
    font-size: 42px;
  }

  .how-work__cta-text {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.35;
  }

  .how-work__cta-btn {
    margin-top: 24px;
    min-height: 62px;
    padding: 5px 5px 5px 20px;
    font-size: 18px;
  }

  .how-work__cta-btn .btn__icon {
    width: 52px;
    height: 52px;
  }

  .how-work__cta-media {
    height: 240px;
    border-radius: 30px;
  }

  .products {
    padding: 48px 0;
  }

  .products__title,
  .products__product-title {
    font-size: 32px;
  }

  .products__subtitle {
    font-size: 16px;
    margin-top: 16px;
  }

  .products__product-desc {
    font-size: 16px;
  }

  .products__tabs-wrap {
    margin-top: 32px;
  }

  .products__tab {
    font-size: 16px;
    height: 48px;
    padding: 0 20px;
  }

  .products__content {
    padding: 48px 16px 24px;
  }

  .products__image-wrap {
    height: 400px;
    border-radius: 24px;
  }

  .products__specs {
    margin-top: 24px;
  }

  .products__spec-label,
  .products__spec-value,
  .products__spec-list {
    font-size: 16px;
  }

  .products__spec-icon {
    width: 32px;
    height: 32px;
  }

  .products__cta-btn {
    font-size: 16px;
    height: 56px;
    padding: 5px 5px 5px 24px;
  }

  .products__tabs-wrap {
    margin-top: 32px;
    padding: 18px 16px 20px;
    border-radius: 28px;
  }

  .products__tabs {
    position: static;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
  }

  .products__tab,
  .products__tab[data-tab="stationary"],
  .products__tab[data-tab="bmk"] {
    width: 100%;
    height: auto;
    padding: 16px 20px;
  }
    .products__tab[data-tab="bmk"]{
      font-size: 18px;
    }

  .products__media {
    align-items: stretch;
  }

  .products__image-wrap,
  .products__cta-btn {
    width: 100%;
    max-width: none;
  }

  .products__cta-btn .btn__icon {
    width: 46px;
    height: 46px;
  }

  .request {
    padding: 48px 0;
  }

  .request__content {
    padding: 36px 20px 28px;
    gap: 24px;
  }

  .request__title {
    font-size: 32px;
    max-width: 520px;
  }

  .request__subtitle {
    font-size: 16px;
    margin-top: 16px;
  }

  .request__input {
    font-size: 16px;
    height: 48px;
    padding: 17px 20px 5px;
    border-radius: 16px;
  }

  .request__label {
    left: 20px;
    font-size: 16px;
  }

  .request__input:focus+.request__label,
  .request__input:not(:placeholder-shown)+.request__label,
  .request__input:-webkit-autofill+.request__label {
    top: 10px;
    font-size: 11px;
  }

  .request__privacy {
    font-size: 14px;
    margin-top: 8px;
  }

  .request__buttons {
    flex-direction: column;
    gap: 12px;
  }

  .request__btn {
    font-size: 16px;
    height: 56px;
    width: 100%;
    padding: 5px 64px 5px 20px;
  }

  .request__btn .btn__icon {
    width: 46px;
    height: 46px;
  }

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

  .popup__body {
    max-width: calc(100% - 32px);
    padding: 24px 18px 22px;
    border-radius: 28px;
    max-height: 85vh;
  }

  .popup__tabs {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }

  .popup__tab {
    font-size: 16px;
    height: 48px;
    padding: 0 16px;
    width: 100%;
    flex-basis: auto;
  }

  .popup__tab[data-tab="business"],
  .popup__tab[data-tab="private"] {
    width: 100%;
    flex-basis: auto;
  }

  .popup__input {
    height: 48px;
    font-size: 16px;
    padding: 17px 18px 5px;
    border-radius: 16px;
  }

  .popup__label {
    left: 18px;
    font-size: 16px;
  }

  .popup__input:focus+.popup__label,
  .popup__input:not(:placeholder-shown)+.popup__label,
  .popup__input:-webkit-autofill+.popup__label {
    top: 10px;
    font-size: 11px;
  }

  .popup__close {
    top: 6px;
    right: 6px;
    width: 36px;
    height: 36px;
  }

  .popup__submit {
    font-size: 16px;
    width: 100%;
    height: 56px;
    padding: 5px 64px 5px 20px;
  }

  .popup__submit .btn__icon {
    width: 46px;
    height: 46px;
  }

  .portfolio {
    padding: 48px 0;
  }

  .portfolio__header {
    margin-bottom: 32px;
  }

  .portfolio__title {
    font-size: 32px;
  }

  .portfolio__subtitle {
    font-size: 16px;
  }

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

  .portfolio__card {
    min-height: 500px;
    border-radius: 24px;
  }

  .portfolio__card-img {
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: contain;
    object-position: center bottom;
  }

  .portfolio__card-body {
    padding: 100px 20px 0;
  }

  .portfolio__card-icon {
    top: 24px;
    width: 64px;
    height: 64px;
  }

  .portfolio__card-icon img {
    width: 28px;
    height: 28px;
  }

  .portfolio__card-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .portfolio__card-text {
    font-size: 14px;
  }

  .portfolio__card-media {
    inset: auto 0 0;
    height: 280px;
  }

  .portfolio__card--private .portfolio__card-media {
            height: 784px;
              inset: 182px 0 0;
              width: 539px;
  }

  .portfolio__card--mkd .portfolio__card-media {
          height: 975px;
            inset: 157px 0 0;
  }

  .portfolio__card--commercial .portfolio__card-media {
  height: 617px;
    inset: 81px 0 0;
  }

  .portfolio__card--industrial .portfolio__card-media {
          height: 376px;
            inset: 231px 0 0;
  }

  .portfolio__card--special .portfolio__card-media {
          height: 861px;
            inset: -23px 0 0;
  }

  .portfolio__card--greenhouse .portfolio__card-media {
          height: 678px;
            inset: 41px 0 0px;
            width: 100%;
  }

  .portfolio__card--sport .portfolio__card-media {
          height: 632px;
            inset: 97px 0 0;
  }

  .portfolio__card--culture .portfolio__card-media {
            height: 772px;
              inset:90px 0 0;
  }

  .portfolio__card--temporary .portfolio__card-media {
            height: 466px;
              inset: 118px 0 0;
              width: 754px;
  }

  .trust {
    padding: 48px 0;
  }

  .trust__header {
    margin-bottom: 32px;
  }

  .trust__slider {
    padding: 0;
  }

  .trust__arrow {
    display: none;
  }

  .trust__title {
    font-size: 32px;
    line-height: 1.1;
  }

  .trust__card {
    min-height: 0;
    border-radius: 24px;
  }

  .trust__card-media {
    width: calc(100% - 16px);
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 20px;
    margin: 8px auto 0;
  }

  .trust__card-img {
    border-radius: 24px;
  }

  .trust__card-body {
    padding: 16px 16px 24px;
  }

  .trust__card-name {
    font-size: 22px;
    line-height: 26px;
  }

  .trust__card-city {
    font-size: 12px;
    padding: 4px 12px;
    min-height: 32px;
    margin-top: 12px;
    margin-bottom: 16px;
  }

  .trust__card-details {
    gap: 12px;
  }

  .trust__card-detail {
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 8px;
  }

  .trust__card-detail-icon {
    width: 32px;
    height: 32px;
  }

  .trust__card-detail-icon img {
    width: 14px;
    height: 14px;
  }

  .trust__card-detail-label {
    font-size: 11px;
  }

  .trust__card-detail-value {
    font-size: 13px;
    line-height: 17px;
  }

  .trust__card--apartments .trust__card-img,
  .trust__card--hotel .trust__card-img {
    width: 100%;
    max-width: none;
    left: auto;
  }

  .trust__cta {
    margin-top: 32px;
    border-radius: 24px;
  }

  .trust__cta-content {
    padding: 28px 24px 32px;
  }

  .trust__cta-title {
    font-size: 28px;
    line-height: 1.15;
  }

  .trust__cta-text {
    font-size: 15px;
    line-height: 22px;
    margin-top: 12px;
  }

  .trust__cta-btn {
    margin-top: 24px;
    width: 100%;
    max-width: none;
    min-height: 56px;
    font-size: 16px;
    padding: 5px 5px 5px 20px;
  }

  .trust__cta-plus {
    width: 72px;
    height: 72px;
    border-radius: 24px;
  }

  .trust__cta-plus-icon {
    width: 28px;
    height: 28px;
  }

  .trust__cta-media-wrap {
    height: 240px;
  }

  .about__letters {
    padding: 48px 0 56px;
  }

  .about__title,
  .about__trust-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .about__arrow {
    display: none;
  }

  .about__letter {
    padding: 10px 10px 16px;
    border-radius: 22px;
  }

  .about__letter-image {
    border-radius: 16px;
  }

  .about__letter-img {
    border-radius: 16px;
  }

  .about__letter-caption {
    margin-top: 12px;
    padding: 0 2px;
    font-size: 14px;
    line-height: 18px;
  }

  .about__trust {
    padding: 48px 0 56px;
    border-radius: 36px;
  }

  .about__trust-subtitle {
    font-size: 16px;
    line-height: 22px;
    margin: 16px auto 32px;
  }

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

  .about__trust-card {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .about__trust-card-content {
    padding: 24px 18px 18px;
  }

  .about__trust-card-title {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 18px;
  }

  .about__trust-card-text {
    max-width: none;
    font-size: 14px;
    line-height: 18px;
  }

  .about__trust-cta {
    margin-top: 32px;
  }

  .about__trust-cta .btn {
    width: 100%;
    min-height: 64px;
    grid-template-columns: minmax(0, 1fr) 52px;
    font-size: 16px;
  }

  .about__trust-cta .btn__label {
    padding: 0 14px 0 20px;
  }

  .about__trust-cta .btn__icon {
    width: 52px;
    height: 52px;
  }

  .pricing {
    padding: 32px 12px 48px;
  }

  .pricing>.container {
    padding: 36px 16px 48px;
    border-radius: 28px;
  }

  .pricing__title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .pricing__table {
    gap: 12px;
  }

  .pricing__row {
    min-width: 800px;
    gap: 12px;
  }

  .pricing__row--header .pricing__cell {
    min-height: 52px;
    font-size: 14px;
    padding: 0 12px;
  }

  .pricing__cell {
    min-height: 112px;
    padding: 16px;
    font-size: 14px;
  }

  .footer {
    padding: 48px 0;
  }

  .footer__card {
    padding: 24px;
    gap: 24px;
    border-radius: 24px;
  }

  .footer__logo-eco {
    font-size: 28px;
  }

  .footer__logo-terma {
    font-size: 20px;
  }

  .footer__nav {
    flex-direction: column;
    gap: 24px;
  }

  .footer__phone {
    font-size: 22px;
  }

  .footer__disclaimer {
    font-size: 12px;
  }

  .certification {
    padding: 48px 0 72px;
  }

  .certification::after {
    width: 1300px;
    height: 320px;
    bottom: 0;
  }

  .certification__shell {
    gap: 16px;
    padding: 16px;
    border-radius: 28px;
  }

  .faq__wrap {
    padding: 32px 20px 36px;
    border-radius: 28px;
  }

  .certification__title,
  .faq__title {
    font-size: 32px;
    line-height: 36px;
  }

  .faq__eyebrow {
    gap: 8px;
    margin-bottom: 16px;
    font-size: 16px;
  }

  .faq__subtitle {
    margin-top: 16px;
    font-size: 16px;
  }

  .certification__tabs {
    gap: 12px;
    padding: 15px 10px;
  }

  .certification__tab {
    min-height: 86px;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .certification__tab-title,
  .certification__tab-meta {
    font-size: 16px;
    line-height: 20px;
  }

  .certification__viewer {
    max-width: none;
    padding: 0 5px 5px 5px;
  }

  .faq {
    padding-bottom: 48px;
  }

  .faq__list {
    margin-top: 32px;
    gap: 14px;
  }

  .faq__item {
    border-radius: 22px;
  }

  .faq__question {
    padding: 20px;
    gap: 16px;
    font-size: 18px;
  }

  .faq__icon {
    width: 40px;
    height: 40px;
  }

  .faq__icon::before,
  .faq__icon::after {
    width: 14px;
  }

  .faq__answer {
    padding: 0 20px 20px;
  }

  .faq__answer p {
    font-size: 16px;
  }

  .faq__cta {
    margin-top: 32px;
  }

  .faq {
    padding-top: 56px;
  }

  .faq__title {
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 36px;
  }

  .faq__list {
    gap: 14px;
  }

  .faq__question {
    min-height: 78px;
    padding: 10px 10px 10px 18px;
    border-radius: 28px;
  }

  .faq__question-copy {
    font-size: 14px;
    line-height: 18px;
  }

  .faq__icon {
    width: 52px;
    height: 52px;
  }

  .faq__icon::before,
  .faq__icon::after {
    width: 20px;
    height: 4px;
  }

  .faq__answer {
    margin-top: 14px;
    padding: 22px 18px 24px;
    border-radius: 28px;
  }

  .faq__answer p {
    font-size: 14px;
    line-height: 22px;
    padding: 15px;
  }

  .faq__promo {
    min-height: 360px;
    border-radius: 32px;
    margin-top: 48px;
  }

  .faq__promo-content {
    padding: 36px 18px 28px;
  }

  .faq__promo-title {
    font-size: 34px;
    line-height: 38px;
  }

  .faq__promo-text {
    margin-top: 18px;
    font-size: 16px;
    line-height: 22px;
  }

  .faq__promo-btn {
    margin-top: 24px;
    width: min(280px, 100%);
    height: 64px;
    min-height: 64px;
    padding: 6px 70px 6px 22px;
    font-size: 18px;
    line-height: 22px;
  }

  .faq__promo-btn .btn__icon {
    width: 52px;
    height: 52px;
  }

  .footer {
    padding: 72px 0 64px;
  }

  .faq__wrap::after {
    bottom: -292px;
    width: min(720px, calc(100% - 32px));
    height: calc(min(720px, calc(100% - 32px)) * 0.5334261838);
  }

  .footer__card {
    padding: 32px 18px 24px;
    border-radius: 32px;
    row-gap: 32px;
  }

  .footer__logo-eco {
    font-size: 48px;
  }

  .footer__logo-terma {
    font-size: 38px;
  }

  .footer__copyright,
  .footer__contacts-label {
    font-size: 16px;
    line-height: 20px;
  }

  .footer__map {
    height: 240px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .footer__cta {
    height: 60px;
    font-size: 16px;
    line-height: 20px;
  }

  .footer__nav {
    grid-template-columns: 1fr;
    row-gap: 28px;
    margin-bottom: 32px;
  }

  .footer__nav-list {
    gap: 14px;
  }

  .footer__nav-link,
  .footer__privacy,
  .footer__disclaimer {
    font-size: 14px;
    line-height: 18px;
  }

  .footer__phone {
    font-size: 34px;
    line-height: 38px;
  }

  .footer__email,
  .footer__address {
    font-size: 22px;
    line-height: 28px;
  }

  .hero {
    min-height: auto;
  }

  .hero__title {
    max-width: none;
  }

  .hero__desc {
    max-width: 34ch;
    line-height: 1.45;
  }

  .hero__features-inner {
    flex-direction: column;
  }

  .hero__feature {
    width: 100%;
    min-height: 0;
    justify-content: flex-start;
    text-align: left;
  }

  .benefits__tab {
    justify-content: flex-start;
    text-align: left;
    min-height: 48px;
    font-size: 13px;
  }

  .benefits__compare-item {
    align-items: flex-start;
  }

  .products__tabs {
    width: 100%;
  }

  .products__tab {
    justify-content: flex-start;
    text-align: left;
    white-space: normal;
    line-height: 1.3;
  }

  .products__spec,
  .products__spec-pair {
    align-items: flex-start;
  }

  .request__privacy {
    font-size: 13px;
  }

  .trust__card {
    overflow: hidden;
    border-radius: 24px;
  }

  .trust__card-detail {
    align-items: flex-start;
  }

  .trust__card-name {
    font-size: 22px;
    line-height: 26px;
  }

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

  .trust__cta {
    margin-top: 24px;
    border-radius: 20px;
  }

  .trust__cta-content {
    padding: 24px 20px 28px;
  }

  .trust__cta-title {
    font-size: 22px;
  }

  .trust__cta-text {
    font-size: 13px;
    line-height: 20px;
    margin-top: 10px;
  }

  .trust__cta-btn {
    margin-top: 20px;
    min-height: 48px;
    font-size: 14px;
    padding: 4px 4px 4px 16px;
  }

  .trust__cta-btn .btn__icon {
    width: 40px;
    height: 40px;
  }

  .trust__cta-plus {
    width: 60px;
    height: 60px;
    border-radius: 20px;
  }

  .trust__cta-plus-icon {
    width: 24px;
    height: 24px;
  }

  .trust__cta-media-wrap {
    height: 180px;
  }

  .about__trust-card {
    aspect-ratio: auto;
    min-height: 260px;
  }


  .pricing__row {
    min-width: 720px;
  }

  .pricing__cell {
    font-size: 13px;
    line-height: 1.3;
  }

  .faq__promo-btn {
    justify-content: space-between;
    text-align: left;
    white-space: normal;
  }

  .footer__logo {
    max-width: 100%;
  }

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

  .footer__left {
    width: 100%;
    min-width: 0;
  }

  .footer__map {
    width: 100%;
  }

  .footer__right {
    min-width: 0;
  }

  .products__tab {
    height: auto;
    padding: 16px 20px;
  }

  .lightbox__arrow {
    width: 44px;
    height: 44px;
  }

  .lightbox__arrow--prev {
    left: 12px;
  }

  .lightbox__arrow--next {
    right: 12px;
  }

  .lightbox__arrow svg {
    width: 16px;
    height: 16px;
  }

  .lightbox__close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .lightbox__counter {
    top: 20px;
    left: 16px;
    font-size: 14px;
  }

  .lightbox__caption {
    bottom: 16px;
    font-size: 14px;
    max-width: 80vw;
  }

  .lightbox__img {
    max-width: 85vw;
    max-height: 80vh;
  }
}
@media (max-width: 539px) {
  .header {
      top: 0;
      height: 56px;
      border-radius: 0;
    }
  
    .header__inner {
      padding: 0 8px 0 16px;
    }
  
    .header__logo-img {
      height: 32px;
      width: auto;
    }
  
    .header__mobile-nav .header__nav-link {
      font-size: 20px;
    }
  
    .hero {
      background-position: 65% center;
    }
  
    .hero__inner {
      padding-top: 96px;
      gap: 8px;
    }
  
    .hero__tag {
      font-size: 12px;
      margin-bottom: 8px;
    }
  
    .hero__tag span {
      font-size: 12px;
    }
  
    .hero__title {
      font-size: 28px;
      margin-bottom: 12px;
    }
  
    .hero__desc {
      font-size: 14px;
    }
  
    .hero__actions {
      gap: 8px;
    }
  
    .btn--white {
      font-size: 14px;
      padding: 4px 4px 4px 20px;
    }
  
    .btn--white .btn__icon {
      width: 40px;
      height: 40px;
    }
  
    .btn--white .btn__icon svg {
      width: 14px;
      height: 12px;
    }
  
    .hero__feature {
      font-size: 12px;
      padding: 10px 16px;
    }
  
    .hero__features-inner {
      padding-bottom: 24px;
    }
  
    .benefits__logos {
      display: block;
      overflow: hidden;
    }
  
    .benefits__partners .container {
      padding: 0 16px;
    }
  
    .benefits__logos-track {
      display: flex;
      gap: 16px;
      width: max-content;
      animation: partners-marquee 20s linear infinite;
    }
  
    .benefits__logo-card {
      flex: 0 0 200px;
      min-height: 140px;
      padding: 24px 16px;
      background-size:
        20px 1px, 1px 20px,
        20px 1px, 1px 20px,
        20px 1px, 1px 20px,
        20px 1px, 1px 20px;
    }
  
    .benefits__logo-card:hover {
      transform: none;
    }
  
    .benefits__logo {
      max-height: 60px;
    }
  
    .benefits__advantages-title {
      font-size: 26px;
    }
  
    .benefits__advantages-desc {
      font-size: 15px;
    }
  
    .benefits__tabs {
      gap: 6px;
      padding: 4px;
    }
  
    .benefits__tab {
      width: auto;
      height: auto;
      min-height: 38px;
      padding: 8px 12px;
      font-size: 11px;
    }
  
    .benefit {
      padding: 64px 20px 16px 20px;
      min-height: 160px;
      border-radius: 0 24px 24px 24px;
    }
  
    .benefit__text {
      font-size: 14px;
    }
  
    .benefit__text+.benefit__text {
      margin-top: 12px;
    }
  
    .benefit__icon {
      width: 40px;
      height: 40px;
    }
  
    .benefit__icon img {
      width: 20px;
      height: 20px;
    }
  
    .benefit__num {
      width: 40px;
      height: 40px;
      font-size: 18px;
      margin-left: -4px;
    }
  
    .benefit__badge {
      left: 20px;
    }
  
    .benefit:has(.benefit__title) {
      padding-top: 64px;
    }
  
    .benefit__title {
      font-size: 11px;
      margin-bottom: 4px;
    }
  
    .benefits__cta .btn {
      font-size: 18px;
      width: 270px;
      min-height: 62px;
      padding: 8px;
    }
  
    .btn--white .btn__icon {
      width: 50px;
      height: 50px;
    }
  
    .btn--white .btn__icon svg {
      width: 16px;
      height: 14px;
    }
  
    .products {
      padding: 32px 0;
    }
  
    .products__title,
    .products__product-title {
      font-size: 28px;
    }
  
    .products__subtitle {
      font-size: 14px;
      margin-top: 12px;
    }
  
    .products__product-desc {
      font-size: 14px;
    }
  
    .products__tabs-wrap {
      margin-top: 24px;
      padding: 14px 12px 18px;
      border-radius: 24px;
    }
  
    .products__tab {
      font-size: 14px;
      height: 44px;
      padding: 0 16px;
    }
  
    .products__content {
      padding: 40px 12px 20px;
    }
  
    .products__image-wrap {
      height: 320px;
      border-radius: 20px;
    }
  
    .products__spec-label,
    .products__spec-value,
    .products__spec-list {
      font-size: 14px;
    }
  
    .products__spec--last {
      flex-direction: column;
      gap: 16px;
    }
  
    .products__cta-btn {
      font-size: 14px;
      height: 48px;
      padding: 4px 4px 4px 20px;
    }
  
    .products__tab {
      height: 48px;
      font-size: 14px;
      padding: 0 16px;
    }
  
    .products__cta-btn .btn__icon {
      width: 40px;
      height: 40px;
    }
  
    .request {
      padding: 32px 0;
    }
  
    .request__content {
      padding: 30px 14px 20px;
      gap: 20px;
    }
  
    .request__title {
      font-size: 28px;
    }
  
    .request__subtitle {
      font-size: 14px;
    }
  
    .request__input {
      font-size: 14px;
      height: 44px;
      padding: 15px 16px 4px;
      border-radius: 12px;
    }
  
    .request__label {
      left: 16px;
      font-size: 14px;
    }
  
    .request__input:focus+.request__label,
    .request__input:not(:placeholder-shown)+.request__label,
    .request__input:-webkit-autofill+.request__label {
      top: 9px;
      font-size: 10px;
    }
  
    .request__privacy {
      font-size: 12px;
    }
  
    .request__btn {
      font-size: 14px;
      height: 48px;
      padding: 4px 52px 4px 16px;
    }
  
    .request__btn .btn__icon {
      width: 40px;
      height: 40px;
    }
  
    .popup__body {
      padding: 18px 14px 18px;
      border-radius: 22px;
    }
  
    .popup__close {
      top: 12px;
      right: 12px;
    }
  
    .popup__tabs {
      margin-bottom: 16px;
    }
  
    .popup__tab {
      font-size: 13px;
      height: 36px;
    }
  
    .popup__input {
      height: 42px;
      font-size: 13px;
      padding: 15px 14px 4px;
    }
  
    .popup__label {
      left: 14px;
      font-size: 13px;
    }
  
    .popup__input:focus+.popup__label,
    .popup__input:not(:placeholder-shown)+.popup__label,
    .popup__input:-webkit-autofill+.popup__label {
      top: 9px;
      font-size: 10px;
    }
  
    .popup__form {
      gap: 8px;
    }
  
    .popup__submit {
      font-size: 14px;
      height: 44px;
      padding: 4px 44px 4px 16px;
    }
  
    .popup__submit .btn__icon {
      width: 32px;
      height: 32px;
    }
  
    .certification__shell {
      padding: 14px;
      border-radius: 24px;
    }
  
    .faq__wrap {
      padding: 28px 16px 30px;
    }
  
    .certification__title,
    .faq__title {
      font-size: 28px;
      line-height: 32px;
    }
  
    .certification__tab {
      min-height: 78px;
      padding: 16px 14px;
    }
  
    .certification__tab-title,
    .certification__tab-meta {
      font-size: 14px;
      line-height: 18px;
    }
  
    .faq__question {
      padding: 18px 16px;
      font-size: 16px;
    }
  
    .benefits__compare {
        padding: 20px 0;
      }
  .hero__inner {
    padding-bottom: 28px;
  }
    .benefits__compare-card{
      min-height: fit-content;
    }

  .hero__actions .btn {
    min-height: 48px;
    font-size: 14px;
  }

  .hero__feature {
    line-height: 1.35;
  }

  .benefits__logos-track {
    gap: 12px;
    padding-right: 12px;
    animation-duration: 26s;
  }

  .benefits__logo-card {
    flex-basis: 172px;
  }

  .benefits__tab {
    min-height: 46px;
    font-size: 12px;
  }

  .products__image-wrap {
    height: auto;
    aspect-ratio: 1 / 1.08;
  }

  .request__privacy {
    font-size: 12px;
    line-height: 1.5;
  }

  .popup__body {
    max-width: calc(100% - 20px);
  }

  .pricing__row {
    min-width: 620px;
  }

  .pricing__cell {
    padding: 14px 12px;
    font-size: 12px;
  }

  .footer__map {
    height: 200px;
  }
  .products__spec{
    padding: 12px 0 12px; 
  }
  .products__info{
    flex: 0 0 724px;
  }
  .portfolio__card-media{
    height: 562px;
    inset: 150px 0 0 0;
  }
    .portfolio__card--private .portfolio__card-media {
      height: 643px;
        inset: 191px 0 0 -47px;
        width: 521px;
    }
  
    .portfolio__card--mkd .portfolio__card-media {
            height: 712px;
              inset: 213px 0 0 -47px;
              width: 521px;
    }
  
    .portfolio__card--commercial .portfolio__card-media {
            height: 591px;
    }
  
    .portfolio__card--industrial .portfolio__card-media {
            height: 527px;
              inset: 0px 0 0 0;
              width: 446px;
    }
  
    .portfolio__card--special .portfolio__card-media {
    height: 707px;
      inset: 1px 0 0 -13px;
      width: 415px;
    }
  
    .portfolio__card--greenhouse .portfolio__card-media {
            height: 679px;
              inset: 0px 0 0 -31px;
              width: 475px;
            }

    .portfolio__card--sport .portfolio__card-media {
              height: 657px;
                inset: -1px 0 0 -23px;
                width: 433px;
    }
  
    .portfolio__card--culture .portfolio__card-media {
      height: 787px;
      inset: 0px 0 0 0px;
      width: 426px;
    }
  
    .portfolio__card--temporary .portfolio__card-media {
  height: 538px;
    inset: 0px 0 0 -48px;
    width: 495px;
    }
        .trust__subtitle{
          font-size: 18px;
        }
                .trust__cta{
                  margin-top: 35px;
                }
  .trust__cta-btn{
    font-size: 18px;
    padding: 8px;
    min-height: 62px;
    gap: 30px;
    justify-content: center;
  }
    .trust__cta-content{
      margin-bottom: 35px;
    }
        .about__trust{
          border-radius: 0;
        }
 .about__trust-card{
  min-height: 210px;
 }
 .certification{
  padding: 35px 0;
 }
 .certification__title{
  margin-bottom: 35px;
 }
 .about__letters,
 .about__trust,
 .certification,
 .faq{
  padding: 35px 0;
 }
 .faq .container,
 .footer .container{
  padding: 0 10px;
 }
 .certification__shell,
 .faq__wrap{
  padding: 0;
 }
     .faq__promo-btn .btn__icon {
       width: 44px;
       height: 44px;
       top: 10px;
       right: 10px;
     }
         .trust__card-img, .trust__card-media{
          border-radius: 15px;
         }
         .hero__actions{
          margin-top: 35px;
         }

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

  .lightbox__arrow--prev {
    left: 8px;
  }

  .lightbox__arrow--next {
    right: 8px;
  }

  .lightbox__arrow svg {
    width: 14px;
    height: 14px;
  }

  .lightbox__close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
  }

  .lightbox__close svg {
    width: 16px;
    height: 16px;
  }

  .lightbox__counter {
    top: 16px;
    left: 12px;
    font-size: 12px;
  }

  .lightbox__caption {
    bottom: 12px;
    font-size: 12px;
  }

  .lightbox__img {
    max-width: 95vw;
    max-height: 75vh;
  }

  .about__letter-image::after {
    background-size: 32px 32px;
  }
}
@media (max-width: 399px) {
  .hero {
    min-height: auto;
  }


  .hero__title,
  .hero__desc {
    max-width: none;
  }

  .hero__actions .btn {
    min-height: 46px;
    font-size: 14px;
    padding-left: 14px;
  }

  .hero__feature {
    font-size: 11px;
  }
    .hero__features{
      margin-bottom: 30px;
    }

  .pricing__row {
    min-width: 560px;
  }

  .pricing__cell {
    min-height: 96px;
    font-size: 11px;
  }
    .container {
      padding-left: 12px;
      padding-right: 12px;
    }

    .header {
      height: 52px;
    }

    .header__inner {
      padding: 0 6px 0 12px;
    }

    .header__logo-img {
      height: 28px;
      width: auto;
    }

    .header__burger {
      width: 40px;
      height: 40px;
    }

    .header__mobile-nav .header__nav-link {
      font-size: 18px;
    }

    .hero {
      background-position: 67% center;
    }

    .hero__inner {
      justify-content: center;
      padding-top: 86px;
      padding-bottom: 24px;
      gap: 6px;
    }
  
    .hero__title {
      max-width: 292px;
      font-size: 26px;
      line-height: 1.08;
      margin-bottom: 10px;
    }
  
    .hero__desc {
      max-width: 252px;
      font-size: 13px;
      line-height: 1.45;
    }
  
    .hero__actions {
      width: 100%;
      gap: 8px;
    }
  
    .hero__actions .btn {
      width: 100%;
      min-height: 44px;
      justify-content: space-between;
      padding: 10px 16px;
      font-size: 13px;
      text-align: left;
    }
  
    .hero__actions .btn .btn__icon {
      width: 40px;
      height: 40px;
    }
  
    .hero__features-inner {
      gap: 6px;
      padding-top: 10px;
      padding-bottom: 18px;
    }
  
    .hero__feature {
      width: 100%;
      justify-content: flex-start;
      padding: 8px 12px;
      font-size: 11px;
    }
  
    .benefits__section-label {
      font-size: 15px;
      margin-bottom: 20px;
    }
  
    .benefits__logos-track {
      gap: 12px;
    }
  
    .benefits__logo-card {
      flex-basis: 172px;
      min-height: 124px;
      padding: 20px 14px;
    }
  
    .benefits__compare {
      padding: 40px 0;
    }
  
    .benefits__compare-card {
      padding: 20px 18px;
      border-radius: 20px;
    }
  
    .benefits__compare-title {
      font-size: 24px;
    }
  
    .benefits__compare-item {
      gap: 10px;
      padding: 14px 0;
      font-size: 14px;
    }
  
    .benefits__advantages-title {
      font-size: 24px;
    }
  
    .benefits__advantages-desc {
      font-size: 14px;
      line-height: 1.45;
    }
  
    .benefits__tabs {
      flex-direction: column;
      align-items: stretch;
    }
  
    .benefits__tab {
      width: 100%;
      font-size: 12px;
    }
  
    .benefit {
      min-height: 150px;
      padding: 60px 16px 14px;
      border-radius: 0 22px 22px 22px;
    }
  
    .benefit__badge {
      left: 16px;
    }
  
    .benefit__title {
      font-size: 10px;
      margin-bottom: 4px;
      letter-spacing: 0.02em;
    }
  
    .benefit__text {
      font-size: 13px;
      line-height: 1.4;
    }
  
    .how-work {
      padding: 48px 0 56px;
    }
  
    .how-work__title {
      font-size: 34px;
    }
  
    .how-work__subtitle,
    .how-work__step-text,
    .how-work__card-text,
    .how-work__cta-text {
      font-size: 15px;
      line-height: 1.4;
    }
  
    .how-work__steps {
      margin-top: 28px;
      gap: 24px;
    }
  
    .how-work__step-title {
      font-size: 18px;
    }
  
    .how-work__reliability {
      min-height: 48px;
      padding: 12px 16px;
      font-size: 16px;
    }
  
    .how-work__card {
      padding: 24px 18px;
      border-radius: 24px;
    }
  
    .how-work__card-title {
      font-size: 26px;
    }
  
    .how-work__cta {
      margin-top: 40px;
      gap: 18px;
      padding: 24px 16px;
      border-radius: 24px;
    }
  
    .how-work__cta-title {
      font-size: 34px;
    }
  
    .how-work__cta-btn {
      width: 100%;
      font-size: 16px;
    }
  
    .how-work__cta-media {
      height: 200px;
      border-radius: 24px;
    }
  
    .products {
      padding: 40px 0;
    }
  
    .products__title,
    .products__product-title {
      font-size: 24px;
    }
  
    .products__subtitle,
    .products__product-desc {
      font-size: 14px;
      line-height: 1.45;
    }
  
    .products__tabs-wrap {
      margin-top: 20px;
      padding: 12px 10px 14px;
      border-radius: 20px;
    }
  
    .products__tabs {
      gap: 8px;
      margin-bottom: 12px;
    }
  
    .products__tab {
      min-height: 44px;
      height: 44px;
      padding: 0 14px;
      font-size: 13px;
    }
  
    .products__content {
      padding: 15px 10px 16px;
    }
  
    .products__image-wrap {
      height: 280px;
      border-radius: 18px;
    }
  
    .products__spec-label,
    .products__spec-value,
    .products__spec-list {
      font-size: 13px;
      line-height: 1.4;
    }
  
    .products__cta-btn {
      min-height: 46px;
      height: 46px;
      font-size: 13px;
      padding: 4px 4px 4px 16px;
    }
  
    .products__cta-btn .btn__icon {
      width: 38px;
      height: 38px;
    }
  
    .request {
      padding: 32px 0;
    }
  
    .request__content {
      padding: 24px 12px 18px;
      gap: 16px;
    }
  
    .request__title {
      font-size: 24px;
    }
  
    .request__subtitle {
      font-size: 13px;
      line-height: 1.45;
    }
  
    .request__input {
      height: 42px;
      font-size: 13px;
      padding-top: 15px;
      padding-bottom: 4px;
    }
  
    .request__label {
      font-size: 13px;
    }
  
    .request__input:focus+.request__label,
    .request__input:not(:placeholder-shown)+.request__label,
    .request__input:-webkit-autofill+.request__label {
      top: 8px;
      font-size: 9px;
    }
  
    .request__privacy {
      font-size: 11px;
      line-height: 1.4;
    }
  
    .request__btn {
      height: 46px;
      font-size: 13px;
      padding: 4px 50px 4px 14px;
    }
  
    .request__btn .btn__icon {
      width: 38px;
      height: 38px;
    }
  
    .popup__body {
      max-width: 400px;
      padding: 16px 12px 16px;
      border-radius: 20px;
    }
  
    .popup__tab {
      font-size: 12px;
    }
  
    .popup__input {
      height: 40px;
      font-size: 12px;
      padding-top: 14px;
      padding-bottom: 4px;
    }
  
    .popup__label {
      font-size: 12px;
    }
  
    .popup__input:focus+.popup__label,
    .popup__input:not(:placeholder-shown)+.popup__label,
    .popup__input:-webkit-autofill+.popup__label {
      top: 8px;
      font-size: 9px;
    }
  
    .popup__submit {
      height: 42px;
      font-size: 12px;
      padding: 4px 48px 4px 14px;
    }
  
    .portfolio {
      padding: 40px 0;
    }
  
    .portfolio__header {
      margin-bottom: 24px;
    }
  
    .portfolio__title {
      font-size: 24px;
    }
  
    .portfolio__subtitle {
      font-size: 14px;
      line-height: 1.45;
    }
  
  
    .portfolio__card-body {
      padding: 88px 16px 0;
    }
  
    .portfolio__card-title {
      font-size: 26px;
    }
  
    .portfolio__card-text {
            font-size: 16px;
              line-height: 1.2;
    }
  
    .trust {
      padding: 40px 0;
    }
  
    .trust__title,
    .trust__cta-title {
      font-size: 24px;
    }
  
    .trust__card-body,
    .trust__cta-content {
      padding: 18px 16px 20px;
    }
  
    .trust__card-name {
      font-size: 18px;
    }
  
    .trust__card-city,
    .trust__card-detail-label,
    .trust__card-detail-value,
    .trust__cta-text {
      font-size: 13px;
      line-height: 1.45;
    }
  
    .trust__cta-btn {
      font-size: 16px;
    }
  
    .about__letters,
    .about__trust,
    .certification,
    .faq {
      padding-top: 40px;
    }
  
    .about__title,
    .about__trust-title,
    .certification__title,
    .faq__title {
      font-size: 24px;
      line-height: 28px;
    }
  
 
  
    .about__letter-caption,
    .about__trust-card-text {
      font-size: 13px;
      line-height: 1.45;
    }
  
    .about__trust-card-title {
      font-size: 18px;
      line-height: 1.15;
    }
  
    .about__trust-cta .btn {
      min-height: 58px;
      font-size: 14px;
    }
  
    .about__trust-cta .btn__icon {
      width: 44px;
      height: 44px;
    }
  
    .certification {
      padding-bottom: 56px;
    }
  
    .certification__tab {
      min-height: 72px;
      padding: 14px 12px;
    }
  
    .certification__tab-title,
    .certification__tab-meta,
    .faq__subtitle,
    .faq__question-copy,
    .faq__answer p,
    .faq__promo-text {
      font-size: 13px;
      line-height: 1.45;
    }
  
    .faq__question {
      min-height: 70px;
      padding: 10px 10px 10px 14px;
    }
  
    .faq__icon {
      width: 48px;
      height: 48px;
    }
  
    .faq__icon::before,
    .faq__icon::after {
      width: 18px;
    }
  
    .faq__promo {
      min-height: 320px;
      margin-top: 36px;
      border-radius: 28px;
    }
  
    .faq__promo-content {
      padding: 28px 14px 22px;
    }
  
    .faq__promo-title {
      font-size: 28px;
      line-height: 32px;
    }
  
    .faq__promo-btn {
      max-width: none;
      width: 100%;
      margin-top: 20px;
      font-size: 14px;
      line-height: 18px;
      padding: 4px 56px 4px 16px;
    }
  
  

  
    .faq__wrap::after {
      width: min(560px, calc(100% - 24px));
      height: calc(min(560px, calc(100% - 24px)) * 0.5334261838);
      bottom: -236px;
    }
  
    .pricing {
      padding: 28px 8px 40px;
    }
  
    .pricing>.container {
      padding: 28px 12px 36px;
      border-radius: 24px;
    }
  
    .pricing__title {
      font-size: 24px;
      margin-bottom: 24px;
    }
  
    .pricing__table {
      overflow-x: auto;
      gap: 10px;
      padding-bottom: 4px;
      scrollbar-width: thin;
    }
  
    .pricing__table::-webkit-scrollbar {
      height: 6px;
    }
  
    .pricing__table::-webkit-scrollbar-thumb {
      background: rgba(20, 18, 17, 0.22);
      border-radius: 999px;
    }
  
    .pricing__row {
      min-width: 720px;
      gap: 10px;
    }
  
    .pricing__row--header .pricing__cell {
      min-height: 46px;
      padding: 0 10px;
      font-size: 12px;
    }
  
    .pricing__cell {
      min-height: 96px;
      padding: 12px;
      font-size: 13px;
    }
  
    .pricing__action {
      margin-top: 36px;
    }
  
    .pricing__action .btn {
      width: 100%;
      min-height: 48px;
      height: 48px;
      padding: 4px 4px 4px 16px;
      font-size: 14px;
    }
  
    .pricing__action .btn__icon {
      width: 40px;
      height: 40px;
    }
  
    .footer {
      padding: 40px 0 48px;
    }
  
    .footer__card {
      padding: 24px 14px 18px;
      row-gap: 24px;
    }
  
    .footer__logo-eco {
      font-size: 36px;
      line-height: 1;
    }
  
    .footer__logo-terma {
      font-size: 28px;
      line-height: 1;
    }
  
    .footer__map {
      height: 200px;
      border-radius: 18px;
    }
  
    .footer__nav {
      row-gap: 20px;
    }
  
    .footer__phone {
      font-size: 28px;
      line-height: 1.1;
    }
  
    .footer__email,
    .footer__address {
      font-size: 18px;
      line-height: 24px;
    }
  
    .footer__disclaimer {
      font-size: 11px;
      line-height: 15px;
    }

    .container {
      padding-left: 10px;
      padding-right: 10px;
    }

    .hero {
      min-height: 700px;
    }
  
    .hero__title {
      max-width: 268px;
      font-size: 24px;
    }
  
    .hero__desc {
      max-width: 236px;
      font-size: 12px;
    }
  
    .hero__actions .btn,
    .products__cta-btn,
    .request__btn,
    .popup__submit,
    .pricing__action .btn,
    .faq__promo-btn,
    .footer__cta {
      font-size: 18px;
    }
  
    .hero__feature {
      font-size: 14px;
      padding: 10px 12px;
    }
  
    .benefits__logo-card {
      flex-basis: 160px;
    }
  
    .benefits__compare-title,
    .benefits__advantages-title,
    .products__title,
    .products__product-title,
    .request__title,
    .portfolio__title,
    .trust__title,
    .trust__cta-title,
    .about__title,
    .about__trust-title,
    .certification__title,
    .faq__title,
    .pricing__title {
      font-size: 22px;
      line-height: 1.15;
    }
  
    .how-work__title {
      font-size: 32px;
    }
  
    .how-work__cta-title {
      font-size: 30px;
    }
  
    .products__tab,
    .benefits__tab,
    .popup__tab {
      font-size: 16px;
    }
  
    .products__tab {
      border: 1px solid var(--color-bg-dark);
  
    }
  
    .faq__wrap::after {
      width: min(520px, calc(100% - 20px));
      height: calc(min(520px, calc(100% - 20px)) * 0.53);
      bottom: -220px;
    }
  
    .footer__logo-eco {
      font-size: 32px;
    }
  
    .footer__logo-terma {
      font-size: 24px;
    }
  
    .products__cta-btn {
      padding: 4px;
    }
  
    .products__cta-btn .btn__icon {
      width: 36px;
      height: 36px;
    }
        .portfolio__card--commercial .portfolio__card-media{
          height: 541px;
        }
  
}
@keyframes partners-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
@keyframes certificationTabPulse {
  0% {
    transform: translateX(-10px) scale(0.985);
    box-shadow: 0 0 0 0 rgba(252, 139, 30, 0);
  }

  55% {
    transform: translateX(0) scale(1);
    box-shadow: 0 10px 28px rgba(252, 139, 30, 0.18);
  }

  100% {
    transform: translateX(0) scale(1);
    box-shadow: 0 0 0 0 rgba(252, 139, 30, 0);
  }
}
@keyframes certificationTabSheen {
  0% {
    opacity: 0;
    transform: translateX(-135%);
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(135%);
  }
}
@keyframes certificationViewerSwitch {
  0% {
    opacity: 0.82;
    transform: translateY(14px) scale(0.986);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes certificationViewerImageSwitch {
  0% {
    opacity: 0.78;
    transform: scale(1.018);
    filter: saturate(0.9) blur(1.2px);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1) blur(0);
  }
}
@keyframes swipeArrowLeft {

  0%,
  100% {
    transform: translateX(0);
    opacity: 0.4;
  }

  50% {
    transform: translateX(-4px);
    opacity: 1;
  }
}

@keyframes swipeArrowRight {

  0%,
  100% {
    transform: translateX(0);
    opacity: 0.4;
  }

  50% {
    transform: translateX(4px);
    opacity: 1;
  }
}

@keyframes swipeHandSlide {

  0%,
  100% {
    transform: translateX(-8px);
  }

  50% {
    transform: translateX(8px);
  }
}