/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Inter", sans-serif;
  background: #1a1f2b;
}

/* ── VARIABLES ── */
:root {
  --section-padding-x: clamp(16px, 5vw, 240px);
  --color-azure: rgba(53, 60, 76, 0.75);
  --text: #c5c5c5;
  --white: #ffffff;
  --border: #7d7d7d;
  --btn-border: #515d74;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: calc(1440px + var(--section-padding-x) * 2);
  padding-left: var(--section-padding-x);
  padding-right: var(--section-padding-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* ── HEADER ── */
.header {
  background: var(--color-azure);
  border-bottom: 1px solid var(--border);
  box-shadow: 0px 0px 20px 0px rgba(53, 60, 76, 0.48);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header__inner {
  width: 100%;
  max-width: calc(1440px + var(--section-padding-x) * 2);
  margin: 0 auto;
  padding: 10px var(--section-padding-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  flex-shrink: 0;
  width: 93.33px;
  height: 55px;
  object-fit: cover;
  display: block;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.header__menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.2s;
}

.header__menu a:hover { color: var(--white); }

.header__btn {
  border-radius: 50px;
  border: 2px solid var(--btn-border);
  padding: 7px 20px 8px;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.header__btn:hover {
  background: rgba(81, 93, 116, 0.4);
  border-color: #7a8ba8;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.header__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header__drawer {
  display: none;
  flex-direction: column;
  background: rgba(53, 60, 76, 0.97);
  border-top: 1px solid var(--border);
  padding: 0 var(--section-padding-x);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.header__drawer.is-open {
  max-height: 500px;
  padding-top: 16px;
  padding-bottom: 20px;
}

.header__drawer a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 0;
  border-bottom: 1px solid rgba(125, 125, 125, 0.2);
  transition: color 0.2s;
}

.header__drawer a:last-child { border-bottom: none; }
.header__drawer a:hover { color: var(--white); }

.header__drawer .header__btn {
  margin-top: 16px;
  align-self: flex-start;
}

@media (max-width: 1199px) {
  .header__menu,
  .header__right > .header__btn { display: none; }
  .header__burger { display: flex; }
  .header__drawer { display: flex; }
  .header__drawer a:last-child {
    padding: 12px 20px;
}
}


/* ── HERO ── */
.hero {
    background: url('/assets/images/Frame 4.png') center / cover no-repeat;
    position: relative;
    overflow: hidden;
  }
  
 
  
  .hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: calc(1440px + var(--section-padding-x) * 2);
    margin: 0 auto;
    padding: 170px var(--section-padding-x);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5vw;
    min-height: 785px;
  }
  
  /* ── TEXT BLOCK ── */
  .hero__text {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
    min-width: 0;
  }
  
  .hero__title-wrap {
    display: flex;
    flex-direction: column;
    gap: 23px;
  }
  
  .hero__title {
    font-size: clamp(32px, 3.55vw, 51.2px);
    font-weight: 700;
    line-height: 130%;
  }
  
  .hero__title--white { color: #ffffff; }
  .hero__title--accent { color: #cc5d5e; }
  
  .hero__desc {
    color: var(--text);
    font-size: clamp(16px, 1.39vw, 20px);
    line-height: 140%;
    font-weight: 400;
  }
  
  /* ── BADGE ── */
  .hero__badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    border-radius: 100px;
    padding: 12px 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
  }
  
  .hero__badge-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }
  
  .hero__badge-text {
    color: var(--white);
    font-size: clamp(15px, 1.39vw, 20px);
    font-weight: 600;
    line-height: 118%;
  }
  
  /* ── ACTIONS ── */
  .hero__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    line-height: 130%;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s, box-shadow 0.2s;
  }
  
  .hero__btn--primary {
    background: #cc5d5e;
    color: #ffffff;
    padding: 14px 26px;
    box-shadow: 0px 8px 20px 0px rgba(204, 93, 94, 0.33);
  }
  
  .hero__btn--primary:hover {
    opacity: 0.88;
    box-shadow: 0px 10px 28px 0px rgba(204, 93, 94, 0.45);
  }
  
  .hero__btn--outline {
    color: #ffffff;
    padding: 14px 26px;
    border: 2px solid var(--btn-border);
  }
  
  .hero__btn--outline:hover {
    background: rgba(81, 93, 116, 0.35);
    border-color: #7a8ba8;
  }
  
  /* ── MEDIA BLOCK ── */
  .hero__media {
    position: relative;
    flex-shrink: 0;
    width: 568px;
    
  }
  
  .hero__img-main {
    max-width: 535px;
    width: 100%;
    height: auto;
   
   
  
  }
  
  .hero__img-side {
    width: 141px;
    height: auto;
    
    position: absolute;
    right: 10px;
    bottom: 45px;
  }
  
  /* ── HERO RESPONSIVE ── */


  @media (max-width: 1199px){
    .hero__img-side { width: 110px;}
    .hero__media {  width: 440px;}
    .hero__inner { gap: 4vw; }
  }


  @media (max-width: 1024px) {
    .hero__inner {
      flex-direction: column;
      gap: 60px;
      padding-top: 80px;
      padding-bottom: 80px;
      min-height: unset;
    }
  
    .hero__media {
      width: 100%;
      max-width: 568px;
     
    }
  
  
  }
  
  @media (max-width: 600px) {
    .hero__badge {
      border-radius: 16px;
    }
  
    .hero__actions {
      flex-direction: column;
    }
  
    .hero__btn {
      width: 100%;
      justify-content: center;
    }
  }



  /* ── HOW IT WORKS ── */
.how {
    background: #1a1f2b;
  }
  
  .how__inner {
    width: 100%;
    max-width: calc(1440px + var(--section-padding-x) * 2);
    margin: 0 auto;
    padding: 100px var(--section-padding-x);
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  
  .how__head {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 852px;
  }
  
  .how__title {
    color: var(--white);
    font-size: clamp(28px, 3.33vw, 48px);
    font-weight: 700;
    line-height: 130%;
  }
  
  .how__desc {
    color: var(--text);
    font-size: clamp(16px, 1.39vw, 20px);
    line-height: 140%;
    font-weight: 400;
  }
  
  /* ── CARDS ROW ── */
  .how__slider-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .how__cards {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: stretch;
  }
  
  .how__card {
    background: #3f475a;
    border-radius: 10px;
    padding: 55px 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    box-shadow: 4px 4px 10.2px 0px rgba(30, 38, 54, 0.35);
    flex: 1;
    min-width: 0;
    position: relative;
  }
  
  .how__num {
    color: rgba(204, 93, 94, 0.1);
    font-family: "Bebas Neue", "BebasNeue-Regular", sans-serif;
    font-size: 80px;
    line-height: 90%;
    letter-spacing: 0.06em;
    font-weight: 400;
    -webkit-text-stroke: 1px rgba(204, 93, 94, 0.4);
    align-self: center;
    position: absolute;
    top:20px;
    left: auto;
    right: 10px;
  }
  
  .how__card-body {
    
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-self: stretch;
  }
  
  .how__card-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    text-align: left;
  }
  
  .how__card-text {
    color: var(--text);
    font-size: 16px;
    line-height: 130%;
    font-weight: 400;
  }
  
  /* ── DOTS (скрыты на десктопе) ── */
  .how__dots {
    display: none;
    justify-content: center;
    gap: 8px;
  }
  
  .how__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(197, 197, 197, 0.3);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
    padding: 0;
  }
  
  .how__dot.is-active {
    background: #cc5d5e;
    transform: scale(1.25);
  }
  
  /* ── MOBILE SWIPER ── */
  @media (max-width: 1366px) {
    .how__cards {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
  }
  }
  @media (max-width: 768px) {
    .how__cards {
      grid-template-columns: 1fr 1fr;
  }

  }
  @media (max-width: 480px) {
    .how__inner {
      padding: 50px var(--section-padding-x);
  }
    .how__cards {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      gap: 12px;
      /* чтобы padding не обрезал крайние карточки */
      padding-bottom: 4px;
    }
  
    .how__cards::-webkit-scrollbar {
      display: none;
    }
  
    .how__card {
      flex: 0 0 80vw;
      max-width: 300px;
      scroll-snap-align: center;
      padding: 55px 24px 32px;
    }

    .how__dots {
      display: flex;
    }
  }


  /* ── FEATURES ── */
.features {
    background: #1a1f2b;
  }
  
  .features__inner {
    width: 100%;
    max-width: calc(1440px + var(--section-padding-x) * 2);
    margin: 0 auto;
    padding: 100px var(--section-padding-x);
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .features__title {
    
      color: var(--white);
      font-size: clamp(28px, 3.33vw, 48px);
      font-weight: 700;
      line-height: 130%;
  
  }
  
  /* ── LAYOUT: grid + image ── */
  .features__layout {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
  }
  
  .features__slider-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  /* ── GRID ── */
  .features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 24px;
  }
  
  /* ── CARD ── */
  .feat-card {
    background: #3f475a;
    border-radius: 20px;
    border: 1px solid #515d74;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    min-height: 210px;
    box-shadow: 4px 4px 10.2px 0px rgba(30, 38, 54, 0.35);
    position: relative;
  }
  
  .feat-card__icon {
    color: #cc5d5e;
    width: 40px;
    height: 40px;
    line-height: 1;
    
    align-self: end;
   
    
  }
  
  .feat-card__body {
    margin-top: -40px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
  }
  
  .feat-card__title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    line-height: 120%;
    max-width: 190px;
  }
  
  .feat-card__text {
    color: var(--text);
    font-size: 16px;
    line-height: 130%;
    font-weight: 400;
  }
  
  /* ── RIGHT IMAGE ── */
  .features__image-wrap {
    flex-shrink: 0;
    width: 342px;
  }
  
  .features__image {
    width: 100%;
    height: 679px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
  }
  
  /* ── DOTS ── */
  .features__dots {
    display: none;
    justify-content: center;
    gap: 8px;
  }
  
  .features__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(197, 197, 197, 0.3);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
    padding: 0;
  }
  
  .features__dot.is-active {
    background: #cc5d5e;
    transform: scale(1.25);
  }
  

  .features__image--mob{
    display:none;
  }

  /* ── TABLET ── */
  @media (max-width: 1199px) {

    .features__layout {
      display: flex;
      flex-direction: column-reverse;
      gap: 24px;
      align-items: center;
  }

    .features__image-wrap {
      width: 100%;
    }
  
    .features__image {
      display:none;
    }
    .features__image--mob{
      display:block;
      height: 400px;
    }
  
    .features__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .feat-card__title {
      font-size: 22px;
    }
  }
  
  /* ── MOBILE ── */
  @media (max-width: 767px) {
    .features__image--mob {     
      height: 300px;
    }
  
  
  }
  
  @media (max-width: 480px) {

    .features__image--mob {
      height: 200px;
  }

  .features__inner {
  overflow: hidden;
    padding: 50px var(--section-padding-x);
}

.features__layout {
  gap: 40px;
  
}
    
      .features__grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 12px;
        padding-left: var(--section-padding-x);
        padding-right: var(--section-padding-x);
        padding-bottom: 4px;
        width: 100vw;
        
      }
    
    .features__grid::-webkit-scrollbar {
      display: none;
    }
  
    .feat-card {
      flex: 0 0 80vw;
      max-width: 300px;
      scroll-snap-align: center;
      min-height: unset;
      border-radius: 10px;
    }
  
    .feat-card__body {
      margin-top: -25px;
    }
  
    .features__dots {
      display: flex;
    }
  }


  /* ── ROLES ── */
.roles {
    background: #1a1f2b;
  }
  
  .roles__inner {
    width: 100%;
    max-width: calc(1440px + var(--section-padding-x) * 2);
    margin: 0 auto;
    padding: 100px var(--section-padding-x);
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .roles__head {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 997px;
  }
  
  .roles__title {
    font-size: clamp(28px, 3.33vw, 48px);
    font-weight: 700;
    line-height: 130%;
    background: linear-gradient(93.56deg, #ffffff 0%, #dcdee9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .roles__desc {
    color: #c2cbe0;
    font-size: clamp(16px, 1.39vw, 20px);
    line-height: 140%;
  }
  
  /* ── PHOTO ── */
  .roles__photo {
    width: 100%;
    height: 619px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    display: block;
  }
  
  /* ── GRID ── */
  .roles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: -114px;
    position: relative;
    z-index: 1;
  }
  
  /* ── ROLE CARD ── */
  .role-card {
    background: #3f475a;
    border-radius: 20px;
    border: 1px solid #515d74;
    box-shadow: 4px 4px 10.2px 0px rgba(30, 38, 54, 0.35);
    overflow: hidden;
    transition: border-color 0.2s;
  }
  
  .role-card.is-open {
    border-color: rgba(204, 93, 94, 0.5);
  }
  
  .role-card__header {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    cursor: pointer;
    user-select: none;
  }
  
  .role-card__title-row {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .role-card__icon {
    color: #cc5d5e;
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
    
    width: 32px;
    height: 32px;
    display: block;
  }
  
  .role-card__title {
    color: #ffffff;
    font-size: clamp(20px, 1.94vw, 28px);
    font-weight: 700;
    line-height: 120%;
  }
  
  .role-card__preview-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }
  
  .role-card__preview {
    color: #c5c5c5;
    font-size: 16px;
    line-height: 130%;
    flex: 1;
  }
  
  .role-card__caret {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  
  .role-card.is-open .role-card__caret {
    transform: rotate(180deg);
  }
  
  /* ── ACCORDION BODY ── */
  .role-card__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 32px;
  }
  
  .role-card.is-open .role-card__body {
    max-height: 400px;
    padding: 0 32px 28px;
  }
  
  .role-card__body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(81, 93, 116, 0.6);
    padding-top: 16px;
  }
  
  .role-card__body ul li {
    color: #c5c5c5;
    font-size: 15px;
    line-height: 140%;
    padding-left: 16px;
    position: relative;
  }
  
  .role-card__body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cc5d5e;
    flex-shrink: 0;
  }
  
  /* ── RESPONSIVE ── */
  @media (max-width: 1199px) {
    .roles__grid {
      grid-template-columns: repeat(2, 1fr);
      margin-top: -60px;
    }
  
    .roles__photo {
      height: 400px;
    }
  }
  
  @media (max-width: 767px) {
    .roles__inner {
      padding: 50px var(--section-padding-x);
     
  }
    .roles__grid {
      grid-template-columns: 1fr;
      margin-top: -40px;
    }
  
    .roles__photo {
      height: 200px;
    }
  }


  /* ── INTERFACE ── */
.interface {
    background: #1a1f2b;
    overflow: hidden;
  }
  
  .interface__inner {
    width: 100%;
    max-width: calc(1440px + var(--section-padding-x) * 2);
    margin: 0 auto;
    padding: 100px var(--section-padding-x);
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
  
  .interface__title {
    color: #ffffff;
    font-size: clamp(28px, 3.33vw, 48px);
    font-weight: 700;
    line-height: 130%;
  }
  
  .interface__wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: stretch;
  }
  
  /* ── TABS ── */
  .interface__tabs {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .itab {
    border-radius: 30px;
    border: 1px solid #515d74;
    padding: 10px 24px;
    font-size: 16px;
    line-height: 130%;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    background: #3f475a;
    color: #c5c5c5;
    font-family: "Inter", sans-serif;
  }
  
  .itab--active {
    background: #cc5d5e;
    border-color: #cc5d5e;
    color: #ffffff;
  }
  
  /* ── SLIDER PANEL ── */
  .interface__slider {
    display: none;
    flex-direction: column;
    gap: 24px;
  }
  
  .interface__slider.is-active {
    display: flex;
  }
  
  /* ── STACK ── */
  .istack {
    position: relative;
    width: 100%;
    
    height: 710px;
  }
  
  .istack__item {
    position: absolute;
    border-radius: 22px;
    box-shadow: 0px 9px 34px 0px rgba(0, 0, 0, 0.5);
    
    transition: opacity 0.4s ease, transform 0.4s ease;
    width: 100% ;  
    height: auto;
  }


  .istack__item--mob{
    width: 350px;
    height: 600px; 
    transform: translateX(100%);
}


  
  /* Позиции стопки — десктоп (горизонтальное смещение) */
  .istack__item[data-pos="5"] { left: 0%;    top: 0px;   z-index: 6; opacity: 1; }
  .istack__item[data-pos="4"] { left: 2.5%;  top: 17px;  z-index: 5; opacity: 0.9; }
  .istack__item[data-pos="3"] { left: 5%;    top: 34px;  z-index: 4; opacity: 0.75; }
  .istack__item[data-pos="2"] { left: 7.5%;  top: 51px;  z-index: 3; opacity: 0.55; }
  .istack__item[data-pos="1"] { left: 10%;   top: 68px;  z-index: 2; opacity: 0.35; }
  .istack__item[data-pos="0"] { left: 12.5%; top: 85px;  z-index: 1; opacity: 0.15; }
  
  /* ── CONTROLS ── */
  .interface__controls {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
  }
  
  .iarrow {
    width: 51px;
    height: 51px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.2s, transform 0.2s;
  }
  
  .iarrow:hover { opacity: 0.75; transform: scale(1.08); }
  .iarrow:disabled { opacity: 0.3; cursor: default; transform: none; }
  
  .iarrow img {
    width: 100%;
    height: 100%;
    display: block;
  }
  
  /* ── MOBILE ── */
  @media (max-width: 1024px) {
  .istack__item--mob{
    transform: translateX(75%);
}
  }
  @media (max-width: 767px) {
    .istack__item--mob {
      width: 250px;
      height: 450px;
     
  }
  
  .istack {
    height: 500px;
}
  
    /* На мобайле — вертикальное смещение */
    .istack__item[data-pos="5"] { left: 0; top: 0px;   z-index: 6; opacity: 1; }
    .istack__item[data-pos="4"] { left: 0; top: 12px;  z-index: 5; opacity: 0.85; }
    .istack__item[data-pos="3"] { left: 0; top: 24px;  z-index: 4; opacity: 0.7; }
    .istack__item[data-pos="2"] { left: 0; top: 36px;  z-index: 3; opacity: 0.5; }
    .istack__item[data-pos="1"] { left: 0; top: 48px;  z-index: 2; opacity: 0.3; }
    .istack__item[data-pos="0"] { left: 0; top: 60px;  z-index: 1; opacity: 0.15; }
  }


  @media (max-width: 480px) {
  .interface__inner {
    padding: 50px var(--section-padding-x);
}
.istack__item--mob {
  width: 200px;
  height: 380px;
  transform: translateX(50%);
}
.istack {
  height: 400px;
}

  }

  /* ── COMPARE ── */
.compare {
  background: #1a1f2b;
}

.compare__inner {
  width: 100%;
  max-width: calc(1440px + var(--section-padding-x) * 2);
  margin: 0 auto;
  padding: 100px var(--section-padding-x);
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.compare__title {
  color: #ffffff;
  font-size: clamp(28px, 3.33vw, 48px);
  font-weight: 700;
  line-height: 130%;
}

/* ── COLS ── */
.compare__cols {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-self: stretch;
}

.compare__col {
  flex: 1;
  border-radius: 20px;
  border: 1px solid #515d74;
  padding: 30px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.compare__col--bad {
  background: #2f3649;
  border-color: #4a546a;
}

.compare__col--good {
  background: #2c3345;
  border-color: #515d74;
}

/* ── COL HEAD ── */
.compare__col-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}

.compare__col-head svg{
  position: absolute;
  top: -30px;
  left:auto;
  right: 0;
  width: 160px;
}

.compare__col--good .compare__col-head svg {
  top: -40px;
}

.compare__col-title {
  color: #ffffff;
  font-size: clamp(18px, 1.67vw, 24px);
  font-weight: 600;
  line-height: 110%;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.compare__col-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
}

/* ── LIST ── */
.compare__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-width: 378px;
}

.compare__list li {
  background: #3f475a;
  border-radius: 10px;
  padding: 10px 15px 12px;
  color: #ffffff;
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
  position: relative;
  padding-left: 38px;
}

/* иконка перед каждым пунктом */
.compare__list li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.compare__col--bad .compare__list li::before {
  background: rgba(204, 93, 94, 0.35);
  border: 1.5px solid rgba(204, 93, 94, 0.7);
}

.compare__col--good .compare__list li::before {
  background: rgba(52, 199, 89, 0.25);
  border: 1.5px solid rgba(52, 199, 89, 0.7);
}

/* ── CTA ROW ── */
.compare__cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  align-self: stretch;
  flex-wrap: wrap;
}

.compare__cta-text {
  color: #ffffff;
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 600;
  line-height: 110%;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.compare__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #cc5d5e;
  border-radius: 50px;
  padding: 14px 28px 15px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0px 8px 20px 0px rgba(204, 93, 94, 0.33);
  transition: opacity 0.2s, box-shadow 0.2s;
}

.compare__btn:hover {
  opacity: 0.88;
  box-shadow: 0px 10px 28px 0px rgba(204, 93, 94, 0.45);
}

/* ── RESPONSIVE ── */


@media (max-width: 1366px){
.compare__col-head svg {
  right: -30px;
  width: 140px;
}
.compare__list {
  max-width: 348px;
}

}

@media (max-width: 1199px){
.compare__col-title {
 margin-top: 50px;
}
.compare__col-head svg {
  top: -50px;
  width: 120px;
}

.compare__col--good .compare__col-head svg {
  top: -60px;
}

}


@media (max-width: 767px) {
  .compare__cols {
    flex-direction: column;
  }

  .compare__cta {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .compare__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .compare__inner {
    padding: 50px var(--section-padding-x);
}
.compare__col-head svg {
  width: 100px;
}

}


/* ── PRICING ── */
.pricing {
  background: #1a1f2b;
}

.pricing__inner {
  width: 100%;
  max-width: calc(1440px + var(--section-padding-x) * 2);
  margin: 0 auto;
  padding: 100px var(--section-padding-x);
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.pricing__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 1003px;
}

.pricing__title {
  color: #ffffff;
  font-size: clamp(28px, 3.33vw, 48px);
  font-weight: 700;
  line-height: 130%;
}

.pricing__desc {
  color: #c5c5c5;
  font-size: clamp(16px, 1.39vw, 20px);
  line-height: 140%;
}

/* ── CARDS ROW ── */
.pricing__cards {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}

/* ── CARD ── */
.pricing-card {
  background: #3f475a;
  border-radius: 20px;
  border: 1px solid #515d74;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  flex: 1;
  max-width: 450px;
  position: relative;
  box-shadow: 0px 0px 40px 0px rgba(204, 93, 94, 0.33);
  transition: transform 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: #cc5d5e;
}

/* ── BADGE ── */
.pricing-card__badge {
  background: rgba(204, 93, 94, 0.22);
  border: 1px solid #cc5d5e;
  border-radius: 100px;
  padding: 5px 20px;
  color: #ffffff;
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
}

/* ── NAME ── */
.pricing-card__name {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  line-height: 110%;
  text-transform: uppercase;
  text-align: center;
}

/* ── PRICE ── */
.pricing-card__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.pricing-card__price {
  color: #cc5d5e;
  font-size: clamp(28px, 2.78vw, 40px);
  font-weight: 700;
  line-height: 130%;
  text-align: center;
}

.pricing-card__users {
  color: #ffffff;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
}

/* ── FEATURES ── */
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-self: stretch;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: #c5c5c5;
  font-size: 16px;
  line-height: 130%;
}

.pricing-card__check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── BUTTONS ── */
.pricing-card__btn {
  border-radius: 50px;
  padding: 13px 28px 15px;
  width: 236px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
  text-decoration: none;
  transition: opacity 0.2s, background 0.2s;
  display: block;
}

.pricing-card__btn--outline {
  border: 1px solid #c5c5c5;
  color: #ffffff;
  background: transparent;
  box-shadow: 0px 8px 20px 0px rgba(204, 93, 94, 0.33);
}

.pricing-card__btn--outline:hover {
  background: rgba(197, 197, 197, 0.1);
}

.pricing-card__btn--primary {
  background: #cc5d5e;
  border: 1px solid #cc5d5e;
  color: #ffffff;
  box-shadow: 0px 8px 20px 0px rgba(204, 93, 94, 0.33);
}

.pricing-card__btn--primary:hover {
  opacity: 0.88;
}

/* ── RESPONSIVE ── */
@media (max-width: 1199px) {
  .pricing__cards {
    gap: 24px;
  }

  .pricing-card {
    padding: 36px 20px;
  }
}

@media (max-width: 900px) {
  .pricing__cards {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-card {
    max-width: 100%;
  }
}

@media (max-width: 480px){
.pricing__inner {
  padding: 50px var(--section-padding-x);
}
}

/* ── FAQ ── */
.faq {
  background: #1a1f2b;
}

.faq__inner {
  width: 100%;
  max-width: calc(1440px + var(--section-padding-x) * 2);
  margin: 0 auto;
  padding: 100px var(--section-padding-x);
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.faq__title {
  color: #ffffff;
  font-size: clamp(28px, 3.33vw, 48px);
  font-weight: 700;
  line-height: 130%;
}

/* ── LIST ── */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: stretch;
}

/* ── ITEM ── */
.faq__item {
  background: #3f475a;
  border-radius: 12px;
  border: 1px solid #515d74;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq__item.is-open {
  border-color: rgba(204, 93, 94, 0.5);
}

/* ── QUESTION ── */
.faq__question {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 30px;
  height: 68px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq__question span {
  color: #ffffff;
  font-size: clamp(16px, 1.39vw, 20px);
  font-weight: 500;
  line-height: 140%;
  font-family: "Inter", sans-serif;
}

.faq__question:hover span {
  color: #e8e8e8;
}

/* ── CHEVRON ── */
.faq__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

/* ── ANSWER ── */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__item.is-open .faq__answer {
  max-height: 600px;
}

.faq__answer-inner {
  padding: 0 30px 24px;
  color: #c5c5c5;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  border-top: 1px solid rgba(81, 93, 116, 0.5);
  padding-top: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .faq__question {
    height: auto;
    padding: 16px 20px;
  }

  .faq__answer-inner {
    padding: 0 20px 20px;
    padding-top: 14px;
  }
}

.frame-29,
.frame-29 * {
  box-sizing: border-box;
}
.frame-29 {
  padding: 100px 240px 100px 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
.div-cta-section {
  background: var(--kartochka, #3f475a);
  border-radius: 20px;
  border-style: solid;
  border-color: var(--border, #515d74);
  border-width: 1px;
  padding: 0px 0px 0px 30px;
  display: flex;
  flex-direction: row;
  gap: 144px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  height: 538px;
  position: relative;
}
.frame-27 {
  padding: 30px 0px 30px 0px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 632px;
  position: relative;
}
.div {
  color: var(--white, #ffffff);
  text-align: left;
  font-family: var(--h2-font-family, "Inter-Bold", sans-serif);
  font-size: var(--h2-font-size, 48px);
  line-height: var(--h2-line-height, 130%);
  font-weight: var(--h2-font-weight, 700);
  position: relative;
  width: 640px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
._14 {
  color: var(--text, #c5c5c5);
  text-align: left;
  font-family: var(--text-font-family, "Inter-Regular", sans-serif);
  font-size: var(--text-font-size, 20px);
  line-height: var(--text-line-height, 140%);
  font-weight: var(--text-font-weight, 400);
  position: relative;
  width: 680px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.form {
  padding: 7px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  gap: var(--radius-sm, 12px);
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.div2 {
  display: flex;
  flex-direction: row;
  gap: 12px;
  row-gap: 0px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  align-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.input {
  background: var(--kartochka, #3f475a);
  border-radius: 50px;
  border-style: solid;
  border-color: var(--border, #515d74);
  border-width: 1px;
  padding: 14px 20px 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 200px;
  position: relative;
  overflow: hidden;
}
.div-placeholder {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.div3 {
  color: var(--text, #c5c5c5);
  text-align: left;
  font-family: "Inter-Regular", sans-serif;
  font-size: 14px;
  line-height: 120%;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.component-11 {
  background: var(--main, #cc5d5e);
  border-radius: 50px;
  padding: 14px 28px 15px 28px;
  display: flex;
  flex-direction: row;
  gap: var(--item-spacing-10, 10px);
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0px 8px 20px 0px rgba(204, 93, 94, 0.33);
}
.i-fas {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.symbol {
  color: var(--color-white-solid, #ffffff);
  text-align: center;
  font-family: var(--font-family-font-1, "FontAwesome5Free-Solid", sans-serif);
  font-size: var(--font-size-16, 16px);
  line-height: var(--font-size-16, 16px);
  letter-spacing: var(--letter-spacing-016, 0.16px);
  font-weight: var(--font-weight-900, 400);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.div4 {
  color: var(--white, #ffffff);
  text-align: center;
  font-family: var(--button-font-family, "Inter-SemiBold", sans-serif);
  font-size: var(--button-font-size, 18px);
  line-height: var(--button-line-height, 130%);
  font-weight: var(--button-font-weight, 600);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.label-form-checkbox-margin {
  padding: 15px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.label-form-checkbox {
  padding: 0px 0px 0.53px 0px;
  display: flex;
  flex-direction: row;
  gap: var(--item-spacing-10, 10px);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.span-custom-checkbox {
  border-radius: 6px;
  border-style: solid;
  border-color: var(--border, #515d74);
  border-width: 1px;
  padding: 0.79px 0px 1.8px 0px;
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}
.i-fas2 {
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.symbol2 {
  color: var(--primary, #cc5d5e);
  text-align: center;
  font-family: var(--font-family-font-1, "FontAwesome5Free-Solid", sans-serif);
  font-size: 14.399999618530273px;
  line-height: var(--line-height-144, 14.4px);
  font-weight: var(--font-weight-900, 400);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.div5 {
  color: var(--text, #c5c5c5);
  text-align: center;
  font-family: "Inter-Regular", sans-serif;
  font-size: 14px;
  line-height: 120%;
  font-weight: 400;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame-28 {
  background: #ffffff;
  border-radius: 0px 20px 20px 0px;
  align-self: stretch;
  flex-shrink: 0;
  width: 632px;
  position: relative;
  overflow: hidden;
}
._0-d-2-cb-44-e-e-2-b-2-4-c-82-affd-cb-8-bebfedb-20-1-1 {
  border-radius: 0px 20px 20px 0px;
  width: 633px;
  height: 536px;
  position: absolute;
  left: 0px;
  top: 50%;
  translate: 0 -50%;
  object-fit: cover;
}

@media  (max-width: 480px){

  .faq__inner {
    padding: 50px var(--section-padding-x);
  }
  

}
  






/* ── CTA ── */
.cta {
  background: #1a1f2b;
}

.cta__inner {
  width: 100%;
  max-width: calc(1440px + var(--section-padding-x) * 2);
  margin: 0 auto;
  padding: 100px var(--section-padding-x);
}

.cta__card {
  background: #3f475a;
  border-radius: 20px;
  border: 1px solid #515d74;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  min-height: 538px;
}

/* ── CONTENT ── */
.cta__content {
  flex: 1;
  padding: 50px 30px 50px 30px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  justify-content: center;
  min-width: 0;
}

.cta__title {
  color: #ffffff;
  font-size: clamp(28px, 3.33vw, 48px);
  font-weight: 700;
  line-height: 130%;
}

.cta__desc {
  color: #c5c5c5;
  font-size: clamp(16px, 1.39vw, 20px);
  line-height: 140%;
  max-width: 680px;
}

/* ── FORM ── */
.cta__form {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 7px;
}

.cta__fields {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}

.cta__input {
  background: #3f475a;
  border-radius: 50px;
  border: 1px solid #515d74;
  padding: 14px 20px;
  color: #ffffff;
  font-size: 14px;
  line-height: 120%;
  font-family: "Inter", sans-serif;
  width: 200px;
  outline: none;
  transition: border-color 0.2s;
}

.cta__input::placeholder {
  color: #c5c5c5;
}

.cta__input:focus {
  border-color: rgba(204, 93, 94, 0.6);
}

.cta__input.is-error {
  border-color: #cc5d5e;
}

.cta__btn {
  background: #cc5d5e;
  border-radius: 50px;
  border: none;
  padding: 14px 28px 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0px 8px 20px 0px rgba(204, 93, 94, 0.33);
  transition: opacity 0.2s, box-shadow 0.2s;
}

.cta__btn:hover {
  opacity: 0.88;
  box-shadow: 0px 10px 28px 0px rgba(204, 93, 94, 0.45);
}

.cta__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── CHECKBOX ── */
.cta__checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-top: 15px;
  user-select: none;
}

.cta__checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cta__checkbox-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid #515d74;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.cta__checkbox-check {
  opacity: 0;
  transition: opacity 0.2s;
}

.cta__checkbox-input:checked + .cta__checkbox-box {
  border-color: #cc5d5e;
  background: rgba(204, 93, 94, 0.1);
}

.cta__checkbox-input:checked + .cta__checkbox-box .cta__checkbox-check {
  opacity: 1;
}

.cta__checkbox-text {
  color: #c5c5c5;
  font-size: 14px;
  line-height: 120%;
}

/* ── STATUS ── */
.cta__status {
  margin-top: 10px;
  font-size: 14px;
  line-height: 130%;
  min-height: 20px;
}

.cta__status.is-success { color: #4ade80; }
.cta__status.is-error   { color: #cc5d5e; }

/* ── IMAGE ── */
.cta__image-wrap {
  flex-shrink: 0;
  width: 632px;
  position: relative;
  overflow: hidden;
}

.cta__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 20px 20px 0;
}

/* ── RESPONSIVE ── */

@media (max-width: 1440px){
.cta__image-wrap {
  width: 35%;
 
}
}
@media (max-width: 1280px){
.cta__btn {
 
  width: 415px;
  justify-content: center;
}
}

@media (max-width: 1199px) {
  .cta__image-wrap {
    width: 400px;
  }
}



@media (max-width: 900px) {
  .cta__card {
    flex-direction: column;
  }

  .cta__image-wrap {
    width: 100%;
    height: 400px;
    position: relative;
    flex-shrink: 0;
  }

  .cta__image {
    border-radius: 20px;
      object-position: top;
     
  
  }

  .cta__fields {
    flex-direction: column;
  }

  .cta__input {
    width: 100%;
  }

  .cta__btn {
    width: 100%;
    justify-content: center;
  }
}


@media (max-width: 480px) {

  .cta__inner {
    padding: 50px var(--section-padding-x) 70px;
}
.cta__image-wrap {
  height: 320px;
}
}


/* ── FOOTER ── */
.footer {
  background: #2c3345;
  border-top: 1px solid #c5c5c5;
}

.footer__inner {
  width: 100%;
  max-width: calc(1440px + var(--section-padding-x) * 2);
  margin: 0 auto;
  padding: 120px var(--section-padding-x) 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ── BRAND ── */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex-shrink: 0;
  width: 196px;
}

.footer__logo {
  width: 159px;
  height: 76px;
  object-fit: cover;
  display: block;
}

.footer__copy {
  color: #c5c5c5;
  font-size: 14px;
  line-height: 120%;
  font-weight: 400;
}

/* ── COLS ── */
.footer__cols {
  display: flex;
  flex-direction: row;
  gap: 52px;
  align-items: center;
  flex-shrink: 0;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 240px;
}

.footer__col-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 0;
}

.footer__link {
  color: #c5c5c5;
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
  text-decoration: none;
  padding-top: 6px;
  display: block;
  transition: color 0.2s;
}

.footer__link:hover {
  color: #ffffff;
}

/* ── RESPONSIVE ── */
@media (max-width: 1199px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }

  .footer__brand {
    width: auto;
  }
}


@media (max-width: 900px) {
.footer__cols {
  gap: 10px;
}
}

@media (max-width: 767px) {
  .footer__inner {
    padding-top: 60px;
    padding-bottom: 48px;
  }

  .footer__cols {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
  }

  .footer__col {
    width: 100%;
  }
}