.eterno-kompakt{
  padding-top: 120px;
}

:root{
  --dark-eterno:#191818;
  --terracota:#D86954;
  --beige:#F6F4F0;
  --wrap-w:1280px;
}



:root{
  --dark-eterno: #191818;
  --terracota-eterno: #D86954;

  --dark: #191818;
  --terra: #D86954;
  --beige: #F6F4F0;

  --font-onest: "Onest", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-santello: "Santello", "Onest", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --hero-w: 1274px;
  --hero-h: 688px;
  --hero-radius: 30px;


  --card-radius: 34px;


  --radius-xl: 34px;


  --kompakt-left-w: 620px;
  --kompakt-right-w: 600px;
  --kompakt-gap: 60px;


  --mdf-left-w: 600px;
  --mdf-right-w: 530px;
  --mdf-gap: 150px;


  --acc-h: 195px;
  --acc-open-w: 672px;
  --acc-closed-w: 262px;
  --acc-img-open-w: 230px;
  --acc-gap: 42px;
}



.kompakt-hero{
  width: 100%;
  padding: 40px 0;
}

.kompakt-hero__wrap{
  width: min(var(--wrap-w), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 597px;
  gap: 48px;
  align-items: start;
}

/* ===== LEFT ===== */

.kompakt-hero__left{
  padding-top: 8px;
}

/* thumbs */
.kompakt-hero__thumbs{
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 54px;
  min-height: 158px;
}

.kh-thumb{
  overflow: hidden;
  border-radius: 32px;
  flex: 0 0 auto;
}

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

.kh-thumb--1{
  width: 118px;
  height: 118px;
  margin-top: 22px;
  position: relative;
}

.kh-thumb--1::before{
  content: "";
  position: absolute;
  left: 0;
  top: -18px;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--terracota) 0 48px, rgba(25,24,24,0.18) 48px 100%);
}

.kh-thumb--2{
  width: 139px;
  height: 139px;
  margin-top: 14px;
}

.kh-thumb--3{
  width: 158px;
  height: 158px;
  position: relative;
}

/* glass arrow */
.kh-thumbs__next{
  position: absolute;
  left: calc(118px + 20px + 139px + 20px + 158px - 31px);
  top: 48px;

  width: 62px;
  height: 62px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  background: rgba(255,255,255,0.42);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);

  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}

/* title */
.kompakt-hero__title{
  margin-bottom: 26px;
}

.kh-title{
  font-family: "Santello", "Onest", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 1.02;
}

.kh-title + .kh-title{
  margin-top: 6px;
}

.kh-title--dark{
  color: var(--dark-eterno);
}

.kh-title--terra{
  color: var(--terracota);
}

.kh-title--with-icon{
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.kh-title--with-icon img{
  width: 64px;
  height: 64px;
  display: block;
  flex: 0 0 auto;
}

/* description */
.kompakt-hero__desc{
  max-width: 430px;
  font-family: "Onest", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.22;
  color: var(--dark-eterno);
  margin-top: 40px;
}

/* ===== RIGHT ===== */

.kompakt-hero__right{
  position: relative;
  width: 597px;
  height: 746px;
}

/* image with cutout mask */
.kompakt-hero__img{
  width: 597px;
  height: 746px;
  object-fit: cover;
  display: block;

  -webkit-mask-image: url("/wp-content/uploads/2026/03/Subtract-41.png");
  mask-image: url("/wp-content/uploads/2026/03/Subtract-41.png");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* icon in cutout */
.kompakt-hero__top-icon{
  position: absolute;
  top: 14px;
  left: 46px; /* подгонка под вырез */
  width: 104px;
  height: 104px;
  z-index: 2;

  display: grid;
  place-items: center;
}

.kompakt-hero__top-icon img{
  width: 104px;
  height: 104px;
  display: block;
}

/* ===== responsive ===== */

@media (max-width: 1280px){
  .kompakt-hero__wrap{
    grid-template-columns: 1fr;
  }

  .kompakt-hero__right{
    width: min(597px, 100%);
    height: auto;
    aspect-ratio: 597 / 746;
  }

  .kompakt-hero__img{
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px){
  .kh-title{
    font-size: 40px;
  }

  .kompakt-hero__desc{
    font-size: 18px;
    max-width: 100%;
  }

  .kompakt-hero__thumbs{
    gap: 12px;
    min-height: 120px;
  }

  .kh-thumb--1{
    width: 84px;
    height: 84px;
    margin-top: 18px;
  }

  .kh-thumb--2{
    width: 96px;
    height: 96px;
    margin-top: 10px;
  }

  .kh-thumb--3{
    width: 110px;
    height: 110px;
  }

  .kh-thumbs__next{
    width: 52px;
    height: 52px;
    left: auto;
    right: 0;
    top: 30px;
  }

  .kh-title--with-icon img{
    width: 48px;
    height: 48px;
  }
}




.et-kompakt__cards{
  width: 1280px;
  display: flex;
  gap: var(--acc-gap);
  align-items: stretch;
}

.et-aCard{
  height: var(--acc-h);
  width: var(--acc-closed-w);
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  transition:
    width 520ms cubic-bezier(.22,.85,.22,1),
    transform 520ms cubic-bezier(.22,.85,.22,1);
  transform: translateZ(0);
}

.et-aCard.is-open{ width: var(--acc-open-w); }

.et-aCard__open{
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
}

.et-aCard__imgWrap{
  width: var(--acc-img-open-w);
  height: var(--acc-h);
  flex: 0 0 var(--acc-img-open-w);
  overflow: hidden;
  position: relative;
}

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

.et-aCard:not(.is-open) .et-aCard__imgWrap{
  width: 100%;
  flex: 0 0 100%;
}

.et-aCard:not(.is-open) .et-aCard__text{ display: none; }

.et-aCard.is-open .et-aCard__imgWrap{
  width: var(--acc-img-open-w);
  flex: 0 0 var(--acc-img-open-w);
}

.et-aCard.is-open .et-aCard__text{ display: flex; }

.et-aCard__closedTitle{
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;

  font-family: var(--font-santello);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  color: #fff;

  text-align: left;
  z-index: 3;

  transition: opacity 220ms ease;
}

.et-aCard::before{
  content:"";
  position:absolute;
  inset:0;
  opacity: 1;
  transition: opacity 260ms ease;
  z-index: 2;
}

.et-aCard__text{
  width: calc(var(--acc-open-w) - var(--acc-img-open-w));
  height: 100%;
  padding: 24px 26px;
  box-sizing: border-box;

  flex-direction: column;
  justify-content: center;
  gap: 10px;

  background: var(--beige);
  color: var(--dark-eterno);

  text-align: left;
  align-items: flex-start;

  opacity: 0;
  transform: translateX(18px);
  transition:
    opacity 320ms ease,
    transform 520ms cubic-bezier(.22,.85,.22,1);
}

.et-aCard__title{
  font-family: var(--font-santello);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  color: var(--dark-eterno);
}

.et-aCard__desc{
  font-family: var(--font-onest);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.35;
  color: var(--dark-eterno);
}

.et-aCard.is-open::before{ opacity: 0; }
.et-aCard.is-open .et-aCard__closedTitle{ opacity: 0; }
.et-aCard.is-open .et-aCard__text{
  opacity: 1;
  transform: translateX(0);
}

.et-aCard:hover{ transform: translateY(-2px); }
.et-aCard:focus-visible{
  outline: 2px solid rgba(216,105,84,.6);
  outline-offset: 3px;
}




:root{
  --dark-eterno: #191818;
  --terracota: #D86954;
  --beige: #F6F4F0;
  --wrap-w: 1280px;

  --font-santello: "Santello", "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-onest: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* секция */
.et-kompakt-advantages{
  width: 100%;
  padding: 60px 0;
}

.et-kompakt-advantages__wrap{
  width: min(var(--wrap-w), 100%);
  margin: 0 auto;
}





:root{
  --dark-eterno:#191818;
  --terracota:#D86954;
  --wrap-w:1280px;

  --font-santello:"Santello", "Onest", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-onest:"Onest", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* секция */

.et-kompakt-title{
  padding:100px 0 60px;
}

.et-kompakt-title__wrap{
  width:min(var(--wrap-w),100%);
  margin:0 auto;
}

/* контейнер */

.et-kompakt-title__inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:18px;
}

/* строки */

.et-kompakt-title__row{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:18px;
}

/* santello */

.et-kompakt-title__row--santello{
  font-family:var(--font-santello);
  font-weight:400;
  font-size:48px;
  line-height:1.05;
  color:var(--dark-eterno);
}

/* onest */

.et-kompakt-title__row--onest{
  font-family:var(--font-onest);
  font-weight:200;
  font-size:48px;
  line-height:1.15;
  color:var(--dark-eterno);
}

/* иконка */

.et-kompakt-title__icon{
  width:64px;
  height:64px;
  display:block;
}

/* фото */

.et-kompakt-title__photo{
  width:179px;
  height:78px;
  border-radius:40px;
  object-fit:cover;
  display:block;
}

/* адаптив */

@media (max-width:1024px){

  .et-kompakt-title__row--santello,
  .et-kompakt-title__row--onest{
    font-size:38px;
  }

}

@media (max-width:768px){

  .et-kompakt-title{
    padding:70px 0 40px;
  }

  .et-kompakt-title__row--santello,
  .et-kompakt-title__row--onest{
    font-size:28px;
  }

  .et-kompakt-title__icon{
    width:44px;
    height:44px;
  }

  .et-kompakt-title__photo{
    width:140px;
    height:64px;
  }

}




:root{
  --dark-eterno:#191818;
  --terracota:#D86954;
  --wrap-w:1280px;
}

.et-compare{
  width: 100%;
  padding: 60px 0;
}

.et-compare__wrap{
  width: min(var(--wrap-w), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 638px 1fr;
  gap: 52px;
  align-items: center;
}

/* LEFT */
.et-compare__media{
  width: 638px;
}

.et-compare-slider{
  position: relative;
  width: 638px;
  height: 492px;
  border-radius: 57px;
  overflow: hidden;
  user-select: none;
  background: #ddd;
}

.et-compare-slider__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.et-compare-slider__overlay{
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
}

.et-compare-slider__img--top{
  width: 638px;
  max-width: none;
}

.et-compare-slider__divider{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  z-index: 3;
  pointer-events: none;
}

.et-compare-slider__divider::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:-2px;
  width:4px;
  background:#fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}

.et-compare-slider__handle{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border: 0;
  padding: 0;
  background: transparent;
  pointer-events: auto;
  cursor: ew-resize;
  display: grid;
  place-items: center;
}

.et-compare-slider__handle img{
  width: 52px;
  height: 52px;
  display: block;
}

.et-compare-slider__range{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  margin: 0;
}

/* RIGHT */
.et-compare__content{
  max-width: 520px;
}

.et-compare__title{
  margin: 0 0 26px;
  font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.18;
  color: var(--dark-eterno);
}

.et-compare__text p{
  margin: 0;
  font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.35;
  color: var(--dark-eterno);
}

.et-compare__text p + p{
  margin-top: 24px;
}

.et-compare__cta{
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1;
}

.et-compare__cta-main{
  width: 320px;
  height: 58px;
  background: var(--dark-eterno);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  box-sizing: border-box;
}

.et-compare__cta-dot{
  width: 58px;
  height: 58px;
  background: var(--dark-eterno);
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-left: -10px;
}

/* responsive */
@media (max-width: 1280px){
  .et-compare{
    padding-left: 12px;
    padding-right: 12px;
  }

  .et-compare__wrap{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .et-compare__media,
  .et-compare-slider{
    width: 100%;
  }

  .et-compare-slider{
    height: auto;
    aspect-ratio: 638 / 492;
  }

  .et-compare-slider__img--top{
    width: 100%;
  }

  .et-compare__content{
    max-width: 100%;
  }
}

@media (max-width: 640px){
  .et-compare{
    padding: 36px 12px;
  }

  .et-compare-slider{
    border-radius: 28px;
  }

  .et-compare__title{
    font-size: 26px;
    margin-bottom: 18px;
  }

  .et-compare__text p{
    font-size: 17px;
  }

  .et-compare__cta{
    width: 100%;
  }

  .et-compare__cta-main{
    width: 100%;
  }
}




:root{
  --dark-eterno:#191818;
  --terracota:#D86954;
  --wrap-w:1280px;
}

.et-compare{
  width: 100%;
  padding: 60px 0;
}

.et-compare__wrap{
  width: min(var(--wrap-w), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 638px;
  gap: 52px;
  align-items: center;
}

/* вариант с текстом слева */
.et-compare--reverse .et-compare__wrap{
  grid-template-columns: 1fr 638px;
}

/* TEXT */
.et-compare__content{
  max-width: 520px;
}

.et-compare__title{
  margin: 0 0 26px;
  font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.18;
  color: var(--dark-eterno);
}

.et-compare__text p{
  margin: 0;
  font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.35;
  color: var(--dark-eterno);
}

.et-compare__text p + p{
  margin-top: 24px;
}

/* MEDIA */
.et-compare__media{
  width: 638px;
}

.et-compare-slider{
  position: relative;
  width: 638px;
  height: 492px;
  border-radius: 57px;
  overflow: hidden;
  user-select: none;
  background: #ddd;
}

.et-compare-slider__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.et-compare-slider__overlay{
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
}

.et-compare-slider__img--top{
  width: 638px;
  max-width: none;
}

.et-compare-slider__divider{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  z-index: 3;
  pointer-events: none;
}

.et-compare-slider__divider::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:-2px;
  width:4px;
  background:#fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}

.et-compare-slider__handle{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border: 0;
  padding: 0;
  background: transparent;
  pointer-events: auto;
  cursor: ew-resize;
  display: grid;
  place-items: center;
}

.et-compare-slider__handle img{
  width: 58px;
  height: 58px;
  display: block;
}

.et-compare-slider__range{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  margin: 0;
}

/* responsive */
@media (max-width: 1280px){
  .et-compare{
    padding-left: 12px;
    padding-right: 12px;
  }

  .et-compare__wrap,
  .et-compare--reverse .et-compare__wrap{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .et-compare__media,
  .et-compare-slider{
    width: 100%;
  }

  .et-compare-slider{
    height: auto;
    aspect-ratio: 638 / 492;
  }

  .et-compare-slider__img--top{
    width: 100%;
  }

  .et-compare__content{
    max-width: 100%;
  }
}

@media (max-width: 640px){
  .et-compare{
    padding: 36px 12px;
  }

  .et-compare-slider{
    border-radius: 28px;
  }

  .et-compare__title{
    font-size: 26px;
    margin-bottom: 18px;
  }

  .et-compare__text p{
    font-size: 17px;
  }
}



:root{
  --dark-eterno:#191818;
  --wrap-w:1280px;
}

.et-compare{
  width: 100%;
  padding: 60px 0;
}

.et-compare__wrap{
  width: min(var(--wrap-w), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 638px 1fr;
  gap: 52px;
  align-items: center;
}

/* MEDIA */
.et-compare__media{
  width: 638px;
}

.et-compare-slider{
  position: relative;
  width: 638px;
  height: 492px;
  border-radius: 57px;
  overflow: hidden;
  user-select: none;
  background: #ddd;
}

.et-compare-slider__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.et-compare-slider__overlay{
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
}

.et-compare-slider__img--top{
  width: 638px;
  max-width: none;
}

.et-compare-slider__divider{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  z-index: 3;
  pointer-events: none;
}

.et-compare-slider__divider::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:-2px;
  width:4px;
  background:#fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}

.et-compare-slider__handle{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border: 0;
  padding: 0;
  background: transparent;
  pointer-events: auto;
  cursor: ew-resize;
  display: grid;
  place-items: center;
}

.et-compare-slider__handle img{
  width: 58px;
  height: 58px;
  display: block;
}

.et-compare-slider__range{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  margin: 0;
}

/* CONTENT */
.et-compare__content{
  max-width: 520px;
}

.et-compare__title{
  margin: 0 0 26px;
  font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.18;
  color: var(--dark-eterno);
}

.et-compare__text p{
  margin: 0;
  font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.35;
  color: var(--dark-eterno);
}

.et-compare__text p + p{
  margin-top: 24px;
}

/* responsive */
@media (max-width: 1280px){
  .et-compare{
    padding-left: 12px;
    padding-right: 12px;
  }

  .et-compare__wrap{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .et-compare__media,
  .et-compare-slider{
    width: 100%;
  }

  .et-compare-slider{
    height: auto;
    aspect-ratio: 638 / 492;
  }

  .et-compare-slider__img--top{
    width: 100%;
  }

  .et-compare__content{
    max-width: 100%;
  }
}

@media (max-width: 640px){
  .et-compare{
    padding: 36px 12px;
  }

  .et-compare-slider{
    border-radius: 28px;
  }

  .et-compare__title{
    font-size: 26px;
    margin-bottom: 18px;
  }

  .et-compare__text p{
    font-size: 17px;
  }
}




:root{
  --dark-eterno:#191818;
  --terracota:#D86954;
  --wrap-w:1280px;
  --hero-ratio:1280 / 687;
}

.kompakt-pro-hero{
  width:100%;
  padding:40px 0;
}

.kompakt-pro-hero__wrap{
  width:min(var(--wrap-w), 100%);
  margin:0 auto;
  position:relative;
  aspect-ratio:var(--hero-ratio);
}

/* картинка с маской */
.kompakt-pro-hero__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  z-index:5;

  /* сюда подставь PNG маску с вырезами */
  -webkit-mask-image:url("/wp-content/uploads/2026/03/Subtract-42.png");
  mask-image:url("/wp-content/uploads/2026/03/Subtract-42.png");
  -webkit-mask-size:100% 100%;
  mask-size:100% 100%;
  -webkit-mask-repeat:no-repeat;
  mask-repeat:no-repeat;
  -webkit-mask-position:center;
  mask-position:center;
}

/* блок с текстами */
.kompakt-pro-hero__title{
  position:absolute;
  left:5px;
  top:205px;
  z-index:1;
}

.kph-pill{
  background:#fff;
  border-radius:22px;
  padding:14px 18px;
  width:max-content;
}

.kph-pill + .kph-pill{
  margin-top:10px;
}

.kph-pill--line1{
  display:flex;
  align-items:center;
  gap:14px;
}

.kph-onest{
  font-family:"Onest", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight:500;
  font-size:60px;
  line-height:1.02;
}

.kph-onest--terra{
  color:var(--terracota);
}

.kph-onest--dark{
  color:var(--dark-eterno);
}

.kph-decor{
  width:55px;
  height:55px;
  display:block;
  flex:0 0 auto;
}

/* верхняя правая иконка */
.kompakt-pro-hero__top-icon{
  position:absolute;
  top:215px;
  right:15px;
  width:84px;
  height:84px;
  z-index:1;
  display:grid;
  place-items:center;
}

.kompakt-pro-hero__top-icon img{
  width:84px;
  height:84px;
  display:block;
}

/* правая нижняя glass плашка */
.kompakt-pro-hero__badge{
  position:absolute;
  right:48px;
  bottom:54px;
  width:250px;
  min-height:108px;
  z-index:1;

  padding:22px 24px;
  box-sizing:border-box;
  border-radius:28px;

  background:rgba(255,255,255,0.28);
  -webkit-backdrop-filter:blur(18px) saturate(180%);
  backdrop-filter:blur(18px) saturate(180%);
  border:1px solid rgba(255,255,255,0.35);
  box-shadow:0 18px 40px rgba(0,0,0,0.14);

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.kompakt-pro-hero__badge-text{
  font-family:"Onest", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight:400;
  font-size:20px;
  line-height:1.28;
  color:var(--dark-eterno);
}

/* адаптив */
@media (max-width: 1100px){
  .kph-onest{
    font-size:42px;
  }

  .kompakt-pro-hero__title{
    left:18px;
    top:120px;
  }

  .kompakt-pro-hero__top-icon{
    top:120px;
    right:18px;
  }

  .kompakt-pro-hero__badge{
    right:24px;
    bottom:28px;
    width:220px;
  }
}

@media (max-width: 768px){
  .kompakt-pro-hero{
    padding:20px 12px;
  }

  .kompakt-pro-hero__wrap{
    width:100%;
  }

  .kph-onest{
    font-size:28px;
  }

  .kph-pill{
    padding:10px 14px;
    border-radius:16px;
  }

  .kph-decor{
    width:36px;
    height:36px;
  }

  .kompakt-pro-hero__top-icon,
  .kompakt-pro-hero__top-icon img{
    width:56px;
    height:56px;
  }

  .kompakt-pro-hero__badge{
    width:180px;
    padding:14px 16px;
    border-radius:20px;
  }

  .kompakt-pro-hero__badge-text{
    font-size:14px;
  }
}



.kph-pill--line2{
  margin-top: -10px !important;
}
.kph-pill--line3{
  margin-top: -10px !important;
}



.kompakt-pro-hero__img{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.kompakt-pro-hero__title{
  position: absolute;
  z-index: 3;
}

.kompakt-pro-hero__top-icon{
  position: absolute;
  z-index: 3;
}

.kompakt-pro-hero__badge{
  position: absolute;
  right: 48px;
  bottom: 54px;
  z-index: 4;

  width: 250px;
  min-height: 108px;
  padding: 22px 24px;
  box-sizing: border-box;
  border-radius: 28px;

  background: rgba(255,255,255,0.28);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}



.et-kompakt-tech{
  width:100%;
  height:287px;
  background:var(--beige);
  margin-top: 60px;
}

.et-kompakt-tech__wrap{
  width:min(var(--wrap-w), 100%);
  height:100%;
  margin:0 auto;
  padding:0 20px;
  box-sizing:border-box;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}

.et-kompakt-tech__top{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
}

.et-kompakt-tech__title{
  font-family:var(--font-santello);
  font-weight:400;
  font-size:48px;
  line-height:1.05;
  color:var(--dark-eterno);
}

.et-kompakt-tech__icon{
  width:64px;
  height:64px;
  display:block;
  flex:0 0 auto;
}

.et-kompakt-tech__bottom{
  margin-top:8px;
}

.et-kompakt-tech__subtitle{
  margin:0;
  font-family:var(--font-onest);
  font-weight:200;
  font-size:48px;
  line-height:1.1;
  text-align:center;
  color:var(--terracota);
}

@media (max-width:1024px){
  .et-kompakt-tech{
    height:240px;
  }

  .et-kompakt-tech__title,
  .et-kompakt-tech__subtitle{
    font-size:38px;
  }

  .et-kompakt-tech__icon{
    width:54px;
    height:54px;
  }
}

@media (max-width:768px){
  .et-kompakt-tech{
    height:auto;
    padding:48px 0;
  }

  .et-kompakt-tech__wrap{
    height:auto;
    padding:0 16px;
  }

  .et-kompakt-tech__top{
    flex-wrap:wrap;
    gap:12px;
  }

  .et-kompakt-tech__title,
  .et-kompakt-tech__subtitle{
    font-size:28px;
    line-height:1.15;
    text-align:center;
  }

  .et-kompakt-tech__icon{
    width:40px;
    height:40px;
  }

  .et-kompakt-tech__bottom{
    margin-top:10px;
  }
}




.et-pro-tech-tabs{
  width:100%;
  padding:60px 0 80px;
}

.et-pro-tech-tabs__wrap{
  width:min(var(--wrap-w), 100%);
  margin:0 auto;
}

/* верхняя панель */
.et-pro-tech-tabs__nav{
  width:467px;
  height:55px;
  margin:0 auto 58px;
  padding:4px;
  box-sizing:border-box;

  display:flex;
  align-items:center;
  gap:4px;

  border-radius:128px;
  background:rgba(216, 105, 84, 0.5);
}

/* кнопки */
.et-pro-tech-tabs__tab{
  height:47px;
  border:0;
  padding:0 18px;
  margin:0;
  background:transparent;
  border-radius:128px;
  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;
  flex:1 1 0;

  font-family:var(--font-onest);
  font-weight:400;
  font-size:20px;
  line-height:1;
  color:var(--terracota);
  transition:background .22s ease, color .22s ease;
}

.et-pro-tech-tabs__tab.is-active{
  background:var(--terracota);
  color:#fff;
}

/* панели */
.et-pro-tech-tabs__pane{
  display:none;
}

.et-pro-tech-tabs__pane.is-active{
  display:block;
}

.et-pro-tech-tabs__grid{
  display:grid;
  grid-template-columns:559px 559px;
  justify-content:space-between;
  align-items:stretch;
}

/* карточка слева */
.et-pro-tech-tabs__card{
  position:relative;
  width:559px;
  height:611px;
  padding:66px 52px 52px;
  box-sizing:border-box;
  border-radius:47px;
  background:#F1EFEB;
  overflow:hidden;
}

/* декоративный элемент внизу справа */
.et-pro-tech-tabs__card::after{
  content:"";
  position:absolute;
  right:-14px;
  bottom:-24px;
  width:190px;
  height:190px;
  pointer-events:none;
  opacity:.55;
  background:
    radial-gradient(circle at 72% 72%, transparent 0 46px, #DDE1D8 46px 96px, transparent 96px),
    radial-gradient(circle at 28% 28%, transparent 0 74px, #DDE1D8 74px 96px, transparent 96px);
}

/* заголовок */
.et-pro-tech-tabs__title{
  margin:0 0 30px;
  font-family:var(--font-onest);
  font-weight:500;
  font-size:48px;
  line-height:1.04;
  color:var(--dark-eterno);
}

.et-pro-tech-tabs__title span{
  color:var(--terracota);
}

/* текст */
.et-pro-tech-tabs__text p{
  margin:0;
  font-family:var(--font-onest);
  font-weight:300;
  font-size:20px;
  line-height:1.18;
  color:var(--dark-eterno);
}

.et-pro-tech-tabs__text p + p{
  margin-top:28px;
}

/* изображение справа */
.et-pro-tech-tabs__media{
  width:559px;
  height:611px;
  border-radius:47px;
  overflow:hidden;
}

.et-pro-tech-tabs__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* adaptive */
@media (max-width: 1200px){
  .et-pro-tech-tabs__wrap{
    padding:0 16px;
    box-sizing:border-box;
  }

  .et-pro-tech-tabs__grid{
    grid-template-columns:1fr;
    gap:24px;
    justify-items:center;
  }

  .et-pro-tech-tabs__card,
  .et-pro-tech-tabs__media{
    width:100%;
    max-width:559px;
  }
}

@media (max-width: 768px){
  .et-pro-tech-tabs{
    padding:40px 0 56px;
  }

  .et-pro-tech-tabs__nav{
    width:100%;
    max-width:467px;
    height:auto;
    min-height:55px;
    margin-bottom:32px;
    flex-wrap:wrap;
  }

  .et-pro-tech-tabs__tab{
    min-height:43px;
    font-size:16px;
    flex:1 1 120px;
  }

  .et-pro-tech-tabs__card{
    height:auto;
    min-height:520px;
    padding:34px 24px 28px;
    border-radius:28px;
  }

  .et-pro-tech-tabs__media{
    height:auto;
    aspect-ratio:559 / 611;
    border-radius:28px;
  }

  .et-pro-tech-tabs__title{
    font-size:36px;
    margin-bottom:22px;
  }

  .et-pro-tech-tabs__text p{
    font-size:18px;
    line-height:1.28;
  }

  .et-pro-tech-tabs__text p + p{
    margin-top:20px;
  }

  .et-pro-tech-tabs__card::after{
    width:140px;
    height:140px;
    right:-10px;
    bottom:-10px;
  }
}



.et-marquee{
  width:100%;
  overflow:hidden;
  background:#F6F4F0;
  padding:14px 0;
}

.et-marquee__track{
  display:flex;
  width:max-content;
  animation:etMarqueeMove 28s linear infinite;
}

.et-marquee__group{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.et-marquee__item{
  display:flex;
  align-items:center;
  gap:12px;
  padding-right:48px;
  white-space:nowrap;
}

.et-marquee__icon{
  width:52px;
  height:25px;
  display:block;
  flex:0 0 auto;
}

.et-marquee__text{
  font-family:var(--font-santello);
  font-weight:400;
  font-size:17px;
  line-height:1;
  color:var(--dark-eterno);
  white-space:nowrap;
}

@keyframes etMarqueeMove{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

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

  .et-marquee__item{
    gap:10px;
    padding-right:32px;
  }

  .et-marquee__icon{
    width:44px;
    height:auto;
  }

  .et-marquee__text{
    font-size:14px;
  }
}



:root{
  --start-note-w:419px;
  --start-note-h:233px;
}

.et-kompakt-start{
  width:100%;
  padding:60px 0 110px;
}

.et-kompakt-start__wrap{
  width:min(var(--wrap-w), 100%);
  margin:0 auto;
  position:relative;
  aspect-ratio:1280 / 678;
}

/* картинка с маской */
.et-kompakt-start__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  z-index:1;

  -webkit-mask-image:url("/wp-content/uploads/2026/03/Subtract-46.png");
  mask-image:url("/wp-content/uploads/2026/03/Subtract-46.png");
  -webkit-mask-size:100% 100%;
  mask-size:100% 100%;
  -webkit-mask-repeat:no-repeat;
  mask-repeat:no-repeat;
  -webkit-mask-position:center;
  mask-position:center;
}

/* блок с верхними плашками */
.et-kompakt-start__title{
  position:absolute;
  left:28px;
  top:86px;
  z-index:3;
}

/* белые плашки под вырезы */
.et-kompakt-start__pill{
  width:max-content;
  max-width:100%;
  border-radius:32px;
  padding:14px 28px 16px;
  box-sizing:border-box;
}

.et-kompakt-start__pill--line1{
  margin-top:45px;
  margin-left:-10px;
}



.et-kompakt-start__pill--line2{
  margin-top:5px;
  margin-left:230px;
}

/* текст в плашках */
.et-kompakt-start__title-text{
  font-family:var(--font-santello);
  font-weight:400;
  font-size:50px;
  line-height:1;
  display:block;
}

.et-kompakt-start__title-text--dark{
  color:var(--dark-eterno);
}

.et-kompakt-start__title-text--terra{
  color:var(--terracota);
}

/* нижняя стеклянная / тёмная плашка */
.et-kompakt-start__note{
  position:absolute;
  left:84px;
  bottom:-58px; /* около 25% выхода вниз */
  z-index:3;

  width:var(--start-note-w);
  height:var(--start-note-h);
  padding:36px 30px;
  box-sizing:border-box;

  border-radius:32px;
  background:rgba(0, 0, 0, 0.6);

  -webkit-backdrop-filter:blur(10px);
  backdrop-filter:blur(10px);

  display:flex;
  align-items:center;
}

.et-kompakt-start__note-text{
  font-family:var(--font-onest);
  font-weight:400;
  font-size:25px;
  line-height:1.18;
  color:#fff;
}

/* tablet */
@media (max-width: 1100px){
  .et-kompakt-start{
    padding:48px 0 90px;
  }

  .et-kompakt-start__wrap{
    width:calc(100% - 32px);
  }

  .et-kompakt-start__title{
    left:20px;
    top:62px;
  }

  .et-kompakt-start__pill{
    padding:12px 22px 14px;
    border-radius:24px;
  }

  .et-kompakt-start__pill--line2{
    margin-top:14px;
    margin-left:130px;
  }

  .et-kompakt-start__title-text{
    font-size:40px;
  }

  .et-kompakt-start__note{
    left:48px;
    width:360px;
    height:200px;
    bottom:-46px;
    padding:28px 24px;
    border-radius:28px;
  }

  .et-kompakt-start__note-text{
    font-size:22px;
  }
}

/* mobile */
@media (max-width: 768px){
  .et-kompakt-start{
    padding:32px 0 80px;
  }

  .et-kompakt-start__wrap{
    width:calc(100% - 24px);
    aspect-ratio:auto;
    min-height:520px;
  }

  .et-kompakt-start__img{
    position:absolute;
    inset:0;
  }

  .et-kompakt-start__title{
    left:16px;
    top:52px;
    right:16px;
  }

  .et-kompakt-start__pill{
    padding:10px 16px 12px;
    border-radius:22px;
  }

  .et-kompakt-start__pill--line2{
    margin-top:12px;
    margin-left:72px;
  }

  .et-kompakt-start__title-text{
    font-size:28px;
    line-height:1.05;
  }

  .et-kompakt-start__note{
    left:16px;
    right:16px;
    bottom:-44px;
    width:auto;
    height:auto;
    min-height:160px;
    padding:24px 20px;
    border-radius:24px;
  }

  .et-kompakt-start__note-text{
    font-size:18px;
    line-height:1.25;
  }
}





.epro-projects{
  width: 100%;
  background: var(--beige);
  padding: 70px 0 60px;
}

.epro-projects *{ box-sizing: border-box; }

.epro-projects__inner{
  width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.epro-projects__title{
  text-align: center;
  margin-bottom: 44px;
}

.epro-projects__title-row1,
.epro-projects__title-row2{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.epro-projects__title .t1{
  font-family: var(--font-santello);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  color: var(--dark);
}

.epro-projects__title .t2{
  font-family: var(--font-onest);
  font-weight: 300;
  font-size: 48px;
  line-height: 1.1;
  color: var(--dark);
}

.epro-projects__title .t2-accent{ color: var(--terra); }

.epro-avatars{
  position: relative;
  width: 140px;
  height: 64px;
  display: inline-block;
}

.epro-avatars__a{
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--beige);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.epro-avatars__a.a1{ left: 0; background-image: url("/wp-content/uploads/2026/02/Ellipse-80.png"); }
.epro-avatars__a.a2{ left: 38px; background-image: url("/wp-content/uploads/2026/02/Ellipse-81.png"); }
.epro-avatars__a.a3{ left: 76px; background-image: url("/wp-content/uploads/2026/02/Ellipse-82.png"); }

.epro-sparkle{
  width: 64px;
  height: 64px;
  display: inline-block;
  background: center / contain no-repeat url("/wp-content/uploads/2026/02/Text-Dec-Elements.png");
}

.epro-proj-slider{
  position: relative;
  overflow: hidden;
  width: 100%;
}

.epro-proj-track{
  display: flex;
  gap: 28px;
  will-change: transform;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  transform: translateX(0);
  padding-bottom: 18px;
}

.epro-proj-card{ flex: 0 0 451px; }

.epro-proj-card__link{
  display: block;
  text-decoration: none;
}

.epro-proj-card__media{
  position: relative;
  width: 451px;
  height: 701px;
  border-radius: 44px;
  overflow: hidden;
  background: #ddd;
}

.epro-proj-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.epro-proj-card__ph{
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d9d3cc, #e9e6e2);
}

.epro-proj-badge{
  position: absolute;
  top: 18px;
  left: 18px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(246,244,240,.92);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-onest);
  font-weight: 500;
  font-size: 14px;
  color: var(--dark);
  z-index: 5;
}

.epro-proj-like{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 45px;
  height: 45px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(0,0,0,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: transform .15s ease, background .15s ease;
}

.epro-proj-like:hover{
  transform: scale(1.04);
  background: rgba(0,0,0,.34);
}

.epro-proj-gradient{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 52%;
  background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,0));
  z-index: 2;
}

.epro-proj-card__body{
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 3;
}

.epro-proj-card__title{
  margin: 0 0 18px;
  font-family: var(--font-onest);
  font-weight: 500;
  font-size: 29px;
  line-height: 1.15;
  color: var(--beige);
  max-width: 340px;
}

.epro-proj-btn{
  display: inline-flex;
  align-items: center;
}

.epro-proj-btn__text{
  width: 259px;
  height: 52px;
  border-radius: 999px;
  background: var(--terra);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-onest);
  font-weight: 500;
  font-size: 14px;
}

.epro-proj-btn__icon{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -14px;
}

.epro-proj-footer{
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.epro-proj-all{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.epro-proj-all__text{
  width: 412px;
  height: 72px;
  border-radius: 999px;
  background: var(--terra);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-onest);
  font-weight: 500;
  font-size: 18px;
}

.epro-proj-all__icon{
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -18px;
}

.epro-proj-arrows{
  display: flex;
  gap: 12px;
}

.epro-proj-arrow{
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  transition: transform .15s ease, background .15s ease;
}

.epro-proj-arrow.is-prev{ background: rgba(255,255,255,.70); }
.epro-proj-arrow.is-next{ background: var(--dark); }
.epro-proj-arrow.is-next svg path{ stroke: #fff; }
.epro-proj-arrow:hover{ transform: scale(1.03); }

@media (max-width: 1280px){
  .epro-proj-card{ flex-basis: 420px; }
  .epro-proj-card__media{ width: 420px; }
}

@media (max-width: 980px){
  .epro-proj-track{ gap: 18px; }
  .epro-proj-card{ flex-basis: 360px; }
  .epro-proj-card__media{ width: 360px; height: 620px; }
  .epro-proj-all__text{ width: 320px; }
}

@media (max-width: 720px){
  .epro-projects{ padding: 50px 0; }
  .epro-projects__title .t1,
  .epro-projects__title .t2{ font-size: 32px; }
  .epro-avatars{ transform: scale(.9); }
  .epro-sparkle{ transform: scale(.85); }
  .epro-proj-footer{ flex-direction: column; align-items: flex-start; }
}



.et-kompakt-processing{
  width:100%;
  padding:80px 0;
}

.et-kompakt-processing__wrap{
  width:min(var(--wrap-w), 100%);
  margin:0 auto;
  position:relative;
  aspect-ratio:1280 / 620;
}

/* картинка */
.et-kompakt-processing__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  z-index:1;

  -webkit-mask-image:url("/wp-content/uploads/2026/03/Subtract-48.png");
  mask-image:url("/wp-content/uploads/2026/03/Subtract-48.png");
  -webkit-mask-size:100% 100%;
  mask-size:100% 100%;
  -webkit-mask-repeat:no-repeat;
  mask-repeat:no-repeat;
  -webkit-mask-position:center;
  mask-position:center;
}

/* текст в вырезе */
.et-kompakt-processing__title{
  position:absolute;
  left:50%;
  top:-5px;
  transform:translateX(-50%);
  z-index:3;
  border-radius:36px;
  padding:12px 36px 16px;
  width: 600px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.et-kompakt-processing__title span{
  font-family:var(--font-santello);
  font-weight:400;
  font-size:48px;
  line-height:1;
  color:var(--dark-eterno);
}

/* tablet */
@media (max-width:1100px){

  .et-kompakt-processing{
    padding:60px 0;
  }

  .et-kompakt-processing__title span{
    font-size:38px;
  }

}

/* mobile */
@media (max-width:768px){

  .et-kompakt-processing{
    padding:40px 0;
  }

  .et-kompakt-processing__wrap{
    width:calc(100% - 24px);
  }

  .et-kompakt-processing__title{
    top:10px;
    padding:10px 20px 12px;
    border-radius:24px;
  }

  .et-kompakt-processing__title span{
    font-size:26px;
  }

}



.et-processing-info{
  width:100%;
  padding:80px 0;
}

.et-processing-info__wrap{
  width:min(var(--wrap-w), 100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:795px 432px;
  justify-content:space-between;
  align-items:stretch;
}

.et-processing-info__left{
  display:flex;
  flex-direction:column;
  gap:32px;
  height:652px;
}

.et-processing-info__top{
  display:grid;
  grid-template-columns:311px 443px;
  gap:41px;
}

/* карточка оборудования */
.et-processing-info__equipment{
  position:relative;
  width:311px;
  height:214px;
  border-radius:32px;
  background:var(--beige);
  overflow:hidden;
}

.et-processing-info__equipment-label{
  position:absolute;
  top:18px;
  left:20px;

  font-family:var(--font-onest);
  font-weight:400;
  font-size:14px;
  line-height:1.2;
  color:var(--dark-eterno);
}

.et-processing-info__equipment-icon{
  position:absolute;
  top:18px;
  right:18px;
  width:142px;
  height:91px;
  display:block;
}

.et-processing-info__equipment-title{
  position:absolute;
  left:20px;
  bottom:18px;

  font-family:var(--font-santello);
  font-weight:400;
  font-size:25px;
  line-height:1.06;
  color:var(--dark-eterno);
}

/* карточка качества */
.et-processing-info__quality{
  position:relative;
  width:443px;
  height:214px;
  border-radius:32px;
  overflow:hidden;
  background:var(--beige);
}

.et-processing-info__quality-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  z-index:1;
}

.et-processing-info__quality-title{
  position:absolute;
  inset:0;
  z-index:2;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  font-family:var(--font-santello);
  font-weight:400;
  font-size:40px;
  line-height:1.05;
  color:var(--dark-eterno);
}

/* нижняя текстовая карточка */
.et-processing-info__text-card{
  width:795px;
  height:406px;
  border-radius:32px;
  background:var(--beige);
  box-sizing:border-box;
  padding:66px 52px 52px;
  padding-top: 90px;
}

.et-processing-info__text p{
  margin:0;
  font-family:var(--font-onest);
  font-weight:400;
  font-size:20px;
  line-height:1.42;
  color:var(--dark-eterno);
}

.et-processing-info__text p + p{
  margin-top:26px;
}

/* правая картинка */
.et-processing-info__media{
  position:relative;
  width:432px;
  height:652px;
  border-radius:32px;
  overflow:hidden;
}

.et-processing-info__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* кнопка play */
.et-processing-info__play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);

  width:96px;
  height:96px;
  border:0;
  border-radius:999px;
  padding:0;
  cursor:pointer;

  display:grid;
  place-items:center;

  background:rgba(255,255,255,0.58);
  -webkit-backdrop-filter:blur(12px);
  backdrop-filter:blur(12px);
}

.et-processing-info__play svg{
  margin-left:4px;
  display:block;
}

/* tablet */
@media (max-width:1280px){
  .et-processing-info{
    padding:60px 0;
  }

  .et-processing-info__wrap{
    width:calc(100% - 32px);
    grid-template-columns:1fr;
    gap:28px;
  }

  .et-processing-info__left{
    height:auto;
  }

  .et-processing-info__top{
    grid-template-columns:311px 1fr;
    gap:24px;
  }

  .et-processing-info__quality{
    width:100%;
  }

  .et-processing-info__text-card{
    width:100%;
    height:auto;
    min-height:320px;
  }

  .et-processing-info__media{
    width:100%;
    max-width:432px;
    height:auto;
    aspect-ratio:432 / 652;
  }
}

/* mobile */
@media (max-width:768px){
  .et-processing-info{
    padding:40px 0;
  }

  .et-processing-info__wrap{
    width:calc(100% - 24px);
    gap:20px;
  }

  .et-processing-info__top{
    grid-template-columns:1fr;
    gap:16px;
  }

  .et-processing-info__equipment,
  .et-processing-info__quality,
  .et-processing-info__text-card,
  .et-processing-info__media{
    width:100%;
  }

  .et-processing-info__equipment{
    height:214px;
  }

  .et-processing-info__quality{
    height:auto;
    aspect-ratio:443 / 214;
  }

  .et-processing-info__quality-title{
    font-size:28px;
  }

  .et-processing-info__equipment-title{
    font-size:22px;
  }

  .et-processing-info__text-card{
    height:auto;
    min-height:auto;
    padding:28px 22px;
    border-radius:24px;
  }

  .et-processing-info__text p{
    font-size:18px;
    line-height:1.35;
  }

  .et-processing-info__media{
    border-radius:24px;
  }

  .et-processing-info__play{
    width:76px;
    height:76px;
  }

  .et-processing-info__play svg{
    width:26px;
    height:30px;
  }
}




.et-processing-tabs{
  width:100%;
  padding:80px 0;
}

.et-processing-tabs__wrap{
  width:min(var(--wrap-w), 100%);
  margin:0 auto;
}

/* панель */
.et-processing-tabs__nav{
  width:600px;
  height:55px;
  margin:0 auto 56px;
  padding:4px;
  box-sizing:border-box;

  display:flex;
  align-items:center;
  gap:4px;

  border-radius:128px;
  background:rgba(216, 105, 84, 0.5);
}

.et-processing-tabs__tab{
  height:47px;
  border:0;
  margin:0;
  padding:0 18px;
  background:transparent;
  border-radius:128px;
  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;
  flex:1 1 0;

  font-family:var(--font-onest);
  font-weight:400;
  font-size:20px;
  line-height:1;
  color:var(--terracota);
  transition:background .22s ease, color .22s ease;

}

.et-processing-tabs__tab.is-active{
  background:var(--terracota);
  color:#fff;
}

/* pane */
.et-processing-tabs__pane{
  display:none;
}

.et-processing-tabs__pane.is-active{
  display:block;
}

/* общий grid */
.et-processing-tabs__grid{
  width:100%;
}

/* 1 tab */
.et-processing-tabs__grid--edge{
  display:grid;
  grid-template-columns:repeat(4, 277px);
  column-gap:57px;
  row-gap:58px;
  justify-content:start;
}

.et-processing-tabs__edge-item{
  width:277px;
  height:234px;
}

.et-processing-tabs__edge-item img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

/* карточки 2 и 3 таба */
.et-processing-tabs__grid--cuts,
.et-processing-tabs__grid--corners{
  display:grid;
  grid-template-columns:repeat(4, 210px);
  justify-content:space-between;
  column-gap:0;
  row-gap:52px;
}

.et-processing-tabs__card--small{
  width:210px;
}

.et-processing-tabs__card--small img{
  width:210px;
  height:210px;
  object-fit:contain;
  display:block;
}

/* 4 таб */
.et-processing-tabs__grid--joints{
  display:grid;
  grid-template-columns:repeat(2, 322px);
  justify-content:start;
  column-gap:56px;
  row-gap:40px;
}

.et-processing-tabs__card--wide{
  width:322px;
}

.et-processing-tabs__card--wide img{
  width:322px;
  height:248px;
  object-fit:contain;
  display:block;
}

/* подписи */
.et-processing-tabs__caption{
  margin-top:16px;
  font-family:var(--font-onest);
  font-weight:500;
  font-size:20px;
  line-height:1.2;
  color:var(--dark-eterno);
  text-align:center;
}

/* adaptive */
@media (max-width:1280px){
  .et-processing-tabs{
    padding:60px 0;
  }

  .et-processing-tabs__wrap{
    width:calc(100% - 32px);
  }

  .et-processing-tabs__grid--edge{
    grid-template-columns:repeat(3, 277px);
    justify-content:center;
    column-gap:32px;
  }

  .et-processing-tabs__grid--cuts,
  .et-processing-tabs__grid--corners{
    grid-template-columns:repeat(3, 210px);
    justify-content:center;
    column-gap:32px;
  }

  .et-processing-tabs__grid--joints{
    justify-content:center;
  }
}

@media (max-width:900px){
  .et-processing-tabs__nav{
    width:100%;
    max-width:680px;
    height:auto;
    min-height:55px;
    flex-wrap:wrap;
  }

  .et-processing-tabs__tab{
    flex:1 1 220px;
    min-height:43px;
    font-size:16px;
  }

  .et-processing-tabs__grid--edge{
    grid-template-columns:repeat(2, 277px);
  }

  .et-processing-tabs__grid--cuts,
  .et-processing-tabs__grid--corners{
    grid-template-columns:repeat(2, 210px);
  }

  .et-processing-tabs__grid--joints{
    grid-template-columns:repeat(1, 322px);
  }
}

@media (max-width:640px){
  .et-processing-tabs{
    padding:40px 0;
  }

  .et-processing-tabs__wrap{
    width:calc(100% - 24px);
  }

  .et-processing-tabs__nav{
    margin-bottom:32px;
  }

  .et-processing-tabs__grid--edge{
    grid-template-columns:1fr;
    justify-items:center;
    row-gap:32px;
  }

  .et-processing-tabs__grid--cuts,
  .et-processing-tabs__grid--corners,
  .et-processing-tabs__grid--joints{
    grid-template-columns:1fr;
    justify-items:center;
    row-gap:32px;
  }

  .et-processing-tabs__edge-item,
  .et-processing-tabs__card--small,
  .et-processing-tabs__card--wide{
    width:100%;
    max-width:322px;
  }

  .et-processing-tabs__edge-item img,
  .et-processing-tabs__card--small img,
  .et-processing-tabs__card--wide img{
    width:100%;
    height:auto;
  }

  .et-processing-tabs__caption{
    font-size:18px;
    margin-top:12px;
  }
}


.et-faq{
  width: 100%;
  padding: 70px 0;
  background: #fff;
}

.et-faq *{ box-sizing: border-box; }

.et-faq__inner{
  width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 710px;
  gap: 60px;
  align-items: start;
}

.et-faq__head{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 74px;
  position: relative;
}

.et-faq__title{
  margin: 0;
  font-family: var(--font-onest);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.5;
  color: var(--dark);
}

.et-faq__title-ico{
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  left: 230px;
  top: 90px;
}

.et-faq__ask{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.et-faq__ask-text{
  width: 278px;
  height: 60px;
  border-radius: 999px;
  background: var(--beige);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-onest);
  font-weight: 500;
  font-size: 22px;
}

.et-faq__ask-ico{
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -14px;
}

.et-faq__right{ width: 710px; }

.et-faq__item{
  background: var(--beige);
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 18px;
}

.et-faq__q{
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
}

.et-faq__qtext{
  font-family: var(--font-onest);
  font-weight: 400;
  font-size: 25px;
  line-height: 1.2;
  color: var(--dark);
  text-align: left;
}

.et-faq__arr{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  transition: transform .25s ease;
}

.et-faq__a{
  height: 0;
  overflow: hidden;
  transition: height .28s cubic-bezier(.2,.8,.2,1);
}

.et-faq__a-inner{
  padding: 0 22px 22px;
  font-family: var(--font-onest);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.45;
  color: var(--dark);
}

.et-faq__item.is-open .et-faq__arr{ transform: rotate(180deg); }

.et-faq__all{
  display: block;
  margin-top: 14px;
  text-align: right;
  font-family: var(--font-onest);
  font-size: 14px;
  color: var(--dark);
  text-decoration: none;
}

.et-faq__all:hover{ text-decoration: underline; }

@media (max-width: 1320px){
  .et-faq__inner{
    width: calc(100% - 32px);
    margin: 0 16px;
    grid-template-columns: 1fr;
  }
  .et-faq__right{ width: 100%; }
}