/* ══════════════════════════════════════════════════════════
   HOME PAGE SECTIONS — завантажується ТІЛЬКИ на головній
   Hero, Benefits, Collage, Know-How, CTA, Video, Equipment,
   Expert — всі responsive breakpoints включені
   ══════════════════════════════════════════════════════════ */
/* HERO */
.hero {
  position: relative;
  padding-bottom: 36px;
}
.hero-inner {
  position: relative;
  background-color: var(--navy-main);
  background-size: cover;
  background-position: right center;
  border-radius: 32px;
  overflow: hidden;
}
.hero-phone {
  display: none;
}
.hero-cta-mob,
.hero-marquee {
  display: none;
}
.hero-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.hero-content_wrap {
  width: 100%;
  max-width: 680px;
  padding: 64px 0 0 64px;
}
.hero h1 {
  font-weight: 500;
  font-size: clamp(24px, 3.5vw, 45px);
  line-height: 130%;
  color: #ffffff;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.benefits-top {
  padding-top: 34px;
}

/* Заголовок картки know-how — на всю ширину (щоб лінія йшла до кінця) */
.kh-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--bg-blue-light);
}
.kh-card__header {
  width: 100%;
  display: flex;
  align-items: center;
}
.hero-sub {
  font-weight: 400;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 130%;
  color: #ffffff;
  margin-bottom: clamp(12px, 2vw, 16px);
}
.hero-note {
  font-weight: 600;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 150%;
  color: #ffffff;
  margin-bottom: clamp(40px, 8vw, 120px);
}
.hero-content_man {
  flex-shrink: 1;
  margin: 10px 40px 10px 0;
  width: 100%;
  height: 100%;
  max-width: 386px;
  max-height: 576px;
}
.hero-man {
  width: 100%;
  color: #000000;
  height: 100%;
}

.know-how {
  padding-top: 36px;
}
.know-how-mob {
  padding-top: 64px;
}

/* BENEFITS TOP*/
.benefits-top-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.benefit-col {
  display: flex;
  padding: clamp(16px, 3vw, 32px);
  gap: clamp(16px, 3vw, 32px);
  background: var(--bg-blue-light);
  border-radius: 24px;
}
.benefit-icon-wrap {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-col h3 {
  font-weight: 600;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 150%;
  color: #000000;
  margin-bottom: 18px;
}
.benefit-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefit-col ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #000;
}
.benefit-col ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: #ff5a00;
  border-radius: 50%;
}

/* collage*/
.collage {
  display: none;
}

.collage2 {
  display: none;
}

.collage2__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 126px 126px 126px 126px;
  grid-template-areas:
    "a a b b"
    "c d b b"
    "t t t e"
    "f g h h";
  gap: 6px;
  padding: 0 16px;
}

.collage2__cell {
  position: relative;
  overflow: hidden;
}
.collage2__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collage2__cell--a {
  grid-area: a;
}
.collage2__cell--b {
  grid-area: b;
}
.collage2__cell--c {
  grid-area: c;
}
.collage2__cell--d {
  grid-area: d;
}
.collage2__cell--e {
  grid-area: e;
}
.collage2__cell--f {
  grid-area: f;
}
.collage2__cell--t {
  grid-area: t;
}
.collage2__cell--g {
  grid-area: g;
}
.collage2__cell--h {
  grid-area: h;
}

/* KNOW HOW SECTION */

/* ── HEADING ── */
.know-how__title {
  font-weight: 500;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 130%;
  text-align: center;
  color: #000000;
  margin-bottom: clamp(16px, 2vw, 24px);
}
.know-how__sub {
  margin-bottom: 32px;
  font-weight: 400;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 140%;
  text-align: center;
  color: #000000;
  flex-grow: 0;
}

.know-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(16px, 2vw, 64px);
  row-gap: 0;
}

.know-how__grid--row2 {
  padding-top: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
}

/* АККОРДЕОН KNOW-HOW*/
.kh-card__toggle {
  display: none;
  margin-left: auto;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: var(--orange);
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

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

/* HOW WE WORK */
.practice {
  padding: 68px 0 34px;
}
/* ── HEADING ── */
.practice__title {
  font-weight: 500;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 130%;
  text-align: center;
  color: #000000;
  margin-bottom: 24px;
}
.practice__sub {
  font-weight: 400;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 140%;
  text-align: center;
  color: #000000;
}
.practice__layout {
  display: flex;
  gap: 16px;
  align-items: center;
}
.practice__character {
  max-width: 383px;
  width: 100%;
  max-height: 690px;
  height: 100%;
  flex-shrink: 0;
}
.practice__character img {
  display: block;
}
.practice__steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-card {
  background: var(--bg-blue-light);
  border-radius: 16px;
  padding: 32px;
}
.step-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.step-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    0px 16px 32px -4px rgba(12, 12, 13, 0.1),
    0px 4px 4px -4px rgba(12, 12, 13, 0.05);
}
.step-card__icon img {
  display: block;
  width: 32px;
  height: 32px;
}
.step-card__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  color: #000000;
  flex: 1;
}

.step-card__num {
  font-weight: 500;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 140%;
  text-align: right;
  color: #0045f5;
}
.step-card__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #000000;
}
/* ── CTA BUTTON ── */
.practice__cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.btn-outline-orange {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  gap: 10px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  background-color: transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ── SECTION ── */
.equipment {
  background-color: var(--bg-blue-light);
  padding: 48px 0;
}
.equipment__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.equipment__title {
  font-weight: 500;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 130%;
  text-align: center;
  color: #000000;
  margin-bottom: 32px;
}
.equipment__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}
.eq-card {
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 16px;
  padding: 30px;
  background: #ffffff;
  border: 2px solid #cfdfff;
  box-shadow:
    0px 16px 16px -4px rgba(12, 12, 13, 0.02),
    0px 4px 4px -4px rgba(12, 12, 13, 0.02);
  border-radius: 16px;
}
/* ── LEFT INFO ── */
.eq-info {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: space-between;
  height: 300px;
}
.eq-info__level {
  font-weight: 500;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 140%;
  color: #000000;
  margin-bottom: 12px;
}
.eq-info__badge {
  width: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 4px 8px;
  gap: 10px;
  background: var(--orange);
  border-radius: 8px;
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
}
.eq-info__capacity {
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 140%;
  color: #151515;
  margin-bottom: 16px;
}
.eq-info__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #000000;
  max-width: 498px;
}
.eq-info__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-blue-light);
  border-radius: 8px;
  padding: 8px;
  margin-top: auto;
}
.eq-info__price-label {
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 140%;
  color: #000000;
}
.eq-info__price-value {
  font-weight: 600;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 140%;
  text-align: right;
  color: #0045f5;
}
.eq-slider-wrap {
  position: relative;
  padding: 0px 60px;
}
.eq-slider__image {
  position: relative;
  height: 242px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
  width: 100%;
}
.eq-slider__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
}
.eq-slider__viewport {
  overflow: hidden;
  margin-bottom: 8px;
}
.eq-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  grid-template-rows: auto auto auto;
  transition: transform 0.5s ease;
  will-change: transform;
}
.eq-slider__slide {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  width: 100%;
  max-width: 482px;
  justify-items: center;
}

.eq-slider__caption-wrap {
  display: flex;
  padding-top: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: #000000;
}
.eq-slider__caption-price {
  margin-left: 6px;
  font-weight: 600;
}
.eq-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
}
.eq-arrow--prev {
  left: 4px;
}
.eq-arrow--next {
  right: 4px;
}
.equipment__cta-main {
  margin: 0 auto;
}

/* Точки */
.eq-slider__dots {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  padding: 8px 24px;
  width: fit-content;
  margin: 0 auto;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.05);
}
.eq-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: 0.2s;
}
.eq-dot.active {
  background: var(--orange);
}
.expert {
  background-color: var(--bg-blue-light);
  padding: 48px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.expert-inner {
  max-width: var(--cont);
  margin: 0 auto;
}
.expert-title {
  font-weight: 500;
  font-size: clamp(32px, 4vw, 45px);
  line-height: 130%;
  text-align: center;
  color: #000000;
  margin-bottom: 32px;
}
.expert-title span {
  font-weight: 700;
  color: #0045f5;
}
.expert-sub {
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #000000;
  margin-bottom: 64px;
}
.btn-mr {
  padding: 17px 32px;
}
.expert .btn-orange {
  margin: 0 auto;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1200px) {
  /* benefits */
  .benefits-top {
    padding-top: 12px;
  }
}

@media (max-width: 1024px) {
  .main-hero-form {
    top: 55%;
  }
  .hero-content_man {
    margin: 10px 10px 10px 0;
  }
  /* benefits + know-how */
  .know-how__grid {
    grid-template-columns: 1fr !important;
    row-gap: clamp(32px, 4vw, 64px);
  }
  .know-how__grid--row2 {
    padding: 36px 0;
  }
  .benefits-top-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  /* video arrows */
  .vt-arrow {
    display: none;
  }
  .cta-content_adaptive {
    display: block;
    padding: 30px 64px 0;
  }
  .cta-content_wrap h2 {
    display: none;
  }
  .cta-content_adaptive .cta-sub {
    display: none;
  }
  .cta-content_man {
    margin: 0;
  }
}

@media (max-width: 991px) {
  /* hero */
  .hero-content {
    gap: 0;
  }
  .hero-content_wrap {
    max-width: 50%;
    padding: 30px 0 0 38px;
  }
  .main-hero-form {
    top: 40%;
    width: 50%;
  }
  /* practice */
  .practice__title {
    font-size: 30px;
  }
  .practice__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .practice__character {
    min-height: auto;
    order: -1;
  }
  .practice__character img,
  .character-svg {
    max-width: 320px;
  }
  /* equipment */
  .eq-card {
    grid-template-columns: 1fr;
  }
  .eq-info {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 16px;
    width: 100%;
    height: auto;
  }
  .eq-info__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
    gap: 4px;
  }
  .eq-info__price-label {
    font-weight: 400;
    font-size: 14px;
    color: #000000;
  }
  .eq-info__price-value {
    font-weight: 600;
    font-size: 16px;
    color: #0045f5;
    text-align: right;
  }
  .eq-slider-wrap {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .cta-content_wrap {
    padding: 0 0 0 64px;
  }
  .cta-content_adaptive {
    display: block;
    padding: 30px 64px 0;
  }
  .cta-content_adaptive .cta-sub {
    display: block;
    margin: 0;
  }
  .cta-content_wrap h2,
  .cta-content_wrap .cta-sub {
    display: none;
  }
  .cta-content_man {
    margin: 0;
  }
  .cta-start-form {
    width: 50%;
    top: 50%;
  }
}

@media (max-width: 768px) {
  /* hero */
  .hero-content_wrap-adaptive {
    display: block;
    width: 100%;
    padding: 20px;
    text-align: center;
  }
  .hero-content_wrap {
    width: 55%;
  }
  .hero-content_wrap h1,
  .hero-content_wrap .contact-item,
  .hero-content_wrap .hero-cta-mob,
  .hero-content_wrap .hero-sub,
  .hero-content_wrap .hero-note {
    display: none;
  }
  .hero-content_man {
    width: 35%;
    height: 100%;
    max-width: none;
    max-height: none;
  }
  .hero h1 {
    margin-bottom: 10px;
  }
  .hero-note {
    margin: 0;
  }
  .main-hero-form {
    padding: 28px;
    top: 36%;
    width: 52%;
  }
  .eq-slider-wrap {
    padding: 0;
  }
  .eq-slider__slide {
    margin: 0 auto;
  }
  .eq-arrow {
    display: none;
  }
  .cta-content_adaptive {
    padding: 20px;
  }
  .cta-content_man {
    margin: 0;
  }
  .cta-start-form {
    width: 52%;
    top: 45%;
  }
}

@media (max-width: 575px) {
  /* hero */
  .hero {
    padding-bottom: 0px;
    background-color: var(--bg-beige);
  }
  .hero-content {
    flex-direction: column;
  }
  .hero-content_wrap {
    padding: 0;
    width: 100%;
    max-width: none;
    padding: 24px 0 0 0;
  }
  .hero-content_wrap-adaptive {
    display: none;
  }
  .hero-content_wrap h1,
  .hero-content_wrap .hero-phone,
  .hero-content_wrap .hero-cta-mob {
    display: block;
  }
  .hero-content_man {
    width: 100%;
    height: 100%;
    max-width: 386px;
    max-height: 576px;
    margin: 0;
    padding: 22px 0 0 0;
  }
  .hero-zero {
    padding: 90px;
  }
  .hero-inner {
    background-color: var(--bg-beige);
    background-image: none;
    border-radius: 0;
    height: 522px;
    overflow: visible;
  }
  .hero-sub,
  .hero-note,
  .main-hero-form {
    display: none;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-content h1 {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 12px;
  }
  .hero-content_wrap .hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
  }
  .hero-cta-mob {
    display: block;
    padding: 15px 24px;
    background: var(--orange-dark);
    font-weight: 600;
    font-size: 12px;
    line-height: 150%;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    width: fit-content;
    margin: 0 auto;
  }
  /*.hero-content_man {
    max-width: 340px;
    max-height: 520px;
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 16px;
  }*/
  .hero-man {
    width: 100%;
    height: 100%;
  }
  .hero-marquee {
    display: flex;
    position: relative;
    z-index: 5;
    overflow: hidden;
    background: var(--orange);
    padding: 22px 0;
  }
  .hero-marquee__track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: hero-marquee 20s linear infinite;
  }
  .hero-marquee__item {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
  }
  .hero-marquee__item span {
    font-size: 16px;
    line-height: 1;
  }
  @keyframes hero-marquee {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(-50%, 0, 0);
    }
  }
  /* benefits */
  .benefits-top {
    display: none;
  }
  /* collage */
  .collage {
    display: block;
    padding: 0 0 64px;
  }
  .collage__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 126px 126px 126px 126px;
    grid-template-areas:
      "a a b c"
      "d e f f"
      "t t f f"
      "g g h i";
    gap: 8px;
  }
  .collage2__grid {
    padding: 0;
  }
  .collage__cell {
    position: relative;
    overflow: hidden;
  }
  .collage__cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .collage__cell--a {
    grid-area: a;
  }
  .collage__cell--b {
    grid-area: b;
  }
  .collage__cell--c {
    grid-area: c;
  }
  .collage__cell--d {
    grid-area: d;
  }
  .collage__cell--e {
    grid-area: e;
  }
  .collage__cell--f {
    grid-area: f;
  }
  .collage__cell--t {
    grid-area: t;
  }
  .collage__cell--g {
    grid-area: g;
  }
  .collage__cell--h {
    grid-area: h;
  }
  .collage__cell--i {
    grid-area: i;
  }

  .collage__text,
  .collage2__text {
    background: var(--navy);
    display: flex;
    align-items: center;
    padding: 16px;
  }
  .collage__text p,
  .collage2__text p {
    font-weight: 600;
    font-size: clamp(14px, 4.5vw, 16px);
    line-height: 120%;
    color: #fff;
  }
  /* collage2 */
  .collage2 {
    display: block;
  }
  .modal__close {
    top: 12px;
    right: 12px;
  }
  /* know-how */
  .know-how {
    padding-top: 64px;
  }
  .know-how__sub {
    margin-bottom: 24px;
    padding: 0 16px;
  }
  .know-how__grid {
    gap: 0;
  }

  .kh-card__toggle {
    display: inline-flex;
  }
  .kh-card__item {
    margin-bottom: 12px;
  }
  .kh-card__title {
    width: auto;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
  }
  .kh-card {
    background-color: transparent;
    padding: 0;
    margin-bottom: 16px;
  }
  .kh-card__header {
    border-bottom: none;
    padding-bottom: 0;
    cursor: pointer;
    user-select: none;
  }
  .kh-card-wrap {
    padding: 0 16px;
  }
  .kh-card__body {
    padding: 12px 0;
  }
  .kh-card__bullet {
    width: 24px;
    height: 24px;
  }
  .kh-card.is-open .kh-card__toggle {
    transform: rotate(270deg);
  }
  .kh-card:not(.is-open) {
    gap: 0;
  }
  .kh-card:not(.is-open) .kh-card__header {
    padding-bottom: 0;
    border-bottom: none;
  }
  .kh-card__body {
    display: none;
  }
  .kh-card.is-open .kh-card__body {
    display: block;
    animation: kh-fade-in 0.25s ease;
  }
  /* practice */
  .practice {
    padding: 56px 16px 64px;
  }
  .practice__title {
    font-size: 24px;
  }
  .practice__sub {
    font-size: 14px;
    margin-bottom: 36px;
  }
  .step-card {
    padding: 22px 20px;
  }
  .step-card__head {
    gap: 14px;
    margin-bottom: 12px;
  }
  .step-card__icon {
    width: 44px;
    height: 44px;
  }
  .step-card__icon svg {
    width: 20px;
    height: 20px;
  }
  .step-card__title {
    font-size: 17px;
  }
  .step-card__num {
    font-size: 13px;
  }
  .step-card__text {
    font-size: 13.5px;
    padding-left: 0;
  }
  .btn-outline-orange {
    padding: 14px 28px;
    font-size: 13px;
  }
  .video-test {
    padding: 24px 0 0;
  }
  .vt-video {
    aspect-ratio: 9 / 16;
    height: auto;
    border-radius: 8px;
    max-width: 280px;
    margin: 0 auto;
  }
  .vt-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }
  .vt-viewport {
    border-radius: 0;
    margin-bottom: 0;
  }
  .vt-caption-bottom {
    background: #f7f0e9;
    color: #000;
    width: 100%;
    padding: 0;
    margin: 20px 8px 8px 8px;
  }
  .vt-track {
    grid-template-rows: auto auto auto;
  }
  .vt-slide {
    background: none;
    padding: 16px;
    border-radius: 0;
    border: 1px solid #ede3d8;
    justify-items: start;
  }
  /* equipment */
  .equipment-cta-group {
    display: flex;
    flex-direction: column;
  }
  .equipment-cta-group .cta-start {
    order: -1;
    padding: 10px 0;
  }
  .equipment__list {
    gap: 8px;
    margin-bottom: 24px;
  }
  .eq-card {
    box-shadow: none;
    border: 1px solid #ede3d8;
    border-radius: 0;
    padding: 24px;
    overflow: hidden;
    gap: 26px;
  }
  .eq-info {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
  }
  .eq-info__badge {
    border-radius: 0px;
    background-color: #de6727;
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin: 0 auto;
  }
  .eq-info__capacity {
    margin: 4px auto 12px;
  }
  .eq-info__mob {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 140%;
    text-align: center;
    color: #000000;
  }
  .eq-info__price {
    flex-direction: row;
    border-radius: 0;
    background-color: #f7f0e9;
    margin-top: 0;
    padding: 6px;
  }
  .eq-slider {
    padding: 0;
    border-radius: 0;
    height: 200px;
    overflow: hidden;
  }
  .eq-slider__dots {
    position: relative;
    bottom: 0;
    transform: none;
    left: auto;
    width: fit-content;
    border-radius: 0;
    margin: 0 auto;
  }
  .vt-play {
    width: 53px;
    height: 53px;
  }
  .eq-info__price-label {
    font-weight: 500;
  }
  .eq-info__price-value {
    color: #ad6220;
  }
  .eq-slider__image {
    background-color: #f7f0e9;
    background-image: none !important;
    border-radius: 0;
  }
  .eq-slider__dots {
    border-radius: 0;
    padding: 8px 16px;
    margin: 6px auto;
  }
  .eq-dot {
    width: 12px;
    height: 12px;
  }
  /* expert */
  .m-expert-inner {
    padding: 34px 24px 26px;
    background-color: var(--bg-beige);
  }
  .m-expert .expert-updated {
    padding-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-marquee__track {
    animation: none;
  }
}
