/* ===== rec2328396183 ===== */
.hp-acc,
.hp-acc * { box-sizing: border-box; }

.hp-acc {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.hp-acc__bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  background: url('../img/reviews-bg.webp') center 30%/cover no-repeat;
  z-index: 1;
  will-change: transform;
  pointer-events: none;
  transform-origin: center center;
}

.hp-acc__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
  pointer-events: none;
}

.hp-acc__container {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px 60px;
}

.hp-acc__header {
  text-align: center;
  margin-bottom: 50px;
}

.hp-acc__title {
  font-family: Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.85);
}

.hp-acc__subtitle {
  font-family: Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #0275C9;
  margin: 0 0 35px;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.85);
}

.hp-acc__text {
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
  margin: 0 0 12px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
}

.hp-acc__accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hp-acc__item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hp-acc__item[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hp-acc__button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  transition: background-color 0.2s;
}

.hp-acc__button:hover {
  background: rgba(0, 0, 0, 0.03);
}

.hp-acc__icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.hp-acc__icon-plus {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
}

.hp-acc__icon-plus::before,
.hp-acc__icon-plus::after {
  content: '';
  position: absolute;
  background: #0275C9;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hp-acc__icon-plus::before {
  width: 24px;
  height: 3px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.hp-acc__icon-plus::after {
  width: 3px;
  height: 24px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.hp-acc__item[aria-expanded="true"] .hp-acc__icon-plus::after {
  opacity: 0;
}

.hp-acc__item[aria-expanded="true"] .hp-acc__icon-plus::before {
  transform: translateY(-50%) rotate(45deg);
}

.hp-acc__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.hp-acc__inner {
  padding: 20px 25px 25px;
  margin: 0 25px 25px;
  border: 1px solid #0275C9;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
}

.hp-acc__inner p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin: 0 0 12px;
}

.hp-acc__inner p:last-child {
  margin-bottom: 0;
}

.hp-acc__inner strong {
  color: #0275C9;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .hp-acc__container {
    padding: 60px 15px 50px;
  }
  
  .hp-acc__title, 
  .hp-acc__subtitle {
    font-size: 32px;
  }
  
  .hp-acc__text {
    font-size: 14px;
  }
  
  .hp-acc__button {
    font-size: 15px;
    padding: 18px 22px;
  }
  
  .hp-acc__inner {
    margin: 0 18px 18px;
    padding: 18px;
  }
}

@media (max-width: 480px) {
  /* ИЗМЕНЕНО: Запрет переноса строк + адаптивный размер под узкие экраны */
  .hp-acc__title, 
  .hp-acc__subtitle {
    font-size: 23px;
    white-space: nowrap;
  }
  
  .hp-acc__button {
    font-size: 14px;
    padding: 16px 18px;
  }
  
  .hp-acc__inner {
    margin: 0 15px 15px;
    padding: 15px;
  }
}

/* Дополнительная фиксация для совсем маленьких экранов (например, iPhone SE) */
@media (max-width: 360px) {
  .hp-acc__title, 
  .hp-acc__subtitle {
    font-size: 19px;
  }
}

/* ===== rec2328404763 ===== */
.hp-protocol,
  .hp-protocol * { box-sizing: border-box; }
  .hp-protocol input,
  .hp-protocol textarea,
  .hp-protocol select { font: inherit; }
  
  /* CSS Variables */
  :root {
    --hp-blue: #4a90e2;
    --hp-blue-light: #e6f0ff;
    --hp-blue-bg: #f5f8ff;
    --hp-red: #e74c3c;
    --hp-gray: #f8f9fa;
    --hp-dark: #333;
    --hp-border: #dee2e6;
  }
  
  /* Base */
  .hp-protocol {
    font-family: var(--t-text-font);
    color: var(--hp-dark);
    background-color: #ffffff;
    line-height: 1.6;
  }
  
  .hp-protocol__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Section Titles */
  .hp-protocol__main-title {
    font-family: var(--t-headline-font);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--hp-dark);
  }
  
  .hp-protocol__main-title span {
    color: var(--hp-blue);
  }
  
  /* Cards Grid - Improved */
  .hp-protocol__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 4rem;
  }
  
  @media (max-width: 1024px) {
    .hp-protocol__cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 640px) {
    .hp-protocol__cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .hp-protocol__cards {
      grid-template-columns: 1fr;
    }
  }
  
  /* Protocol Card - Improved */
  .hp-protocol__card {
    background: var(--hp-blue-bg);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(74, 144, 226, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
  }
  
  .hp-protocol__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(74, 144, 226, 0.2);
  }
  
  .hp-protocol__card-title {
    font-family: var(--t-headline-font);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--hp-dark);
    text-align: center;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
  /* ИСПРАВЛЕНО: Принудительный белый цвет и жирность для всех состояний кнопки */
  .hp-protocol__card-link,
  .hp-protocol__card-link:link,
  .hp-protocol__card-link:visited,
  .hp-protocol__card-link:active,
  .hp-protocol__card-link:hover {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--hp-blue);
    color: #ffffff !important; /* Перебивает глобальный красный цвет Tilda */
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700 !important; /* Делаем текст жирным (bold) */
    font-family: var(--t-headline-font);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
  }
  
  .hp-protocol__card-link:hover {
    background: #3a7bd5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
  }
  
  .hp-protocol__card-link img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
  }
  
  /* Protocol Sections */
  .hp-protocol__section {
    margin-bottom: 6rem;
    scroll-margin-top: 2rem;
  }
  
  .hp-protocol__section-content {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--hp-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .hp-protocol__section-header {
    position: relative;
    height: 320px;
    overflow: hidden;
  }
  
  /* MOBILE: Increase image height */
  @media (max-width: 768px) {
    .hp-protocol__section-header {
      height: 200px;
    }
  }
  
  @media (max-width: 480px) {
    .hp-protocol__section-header {
      height: 180px;
    }
  }
  
  .hp-protocol__section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .hp-protocol__section-overlay {
    display: none;
  }
  
  .hp-protocol__section-body {
    padding: 3rem;
  }
  
  /* MOBILE: Adjust padding */
  @media (max-width: 768px) {
    .hp-protocol__section-body {
      padding: 2rem;
    }
  }
  
  @media (max-width: 480px) {
    .hp-protocol__section-body {
      padding: 1.5rem;
    }
  }
  
  .hp-protocol__section-title {
    font-family: var(--t-headline-font);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    margin-bottom: 2rem;
    color: var(--hp-dark);
    font-weight: 700;
    text-align: center;
  }
  
  .hp-protocol__section-title span {
    color: var(--hp-blue);
  }
  
  .hp-protocol__list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
  }
  
  .hp-protocol__list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
  }
  
  .hp-protocol__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--hp-blue);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.2;
  }
  
  /* MOBILE: Adjust list */
  @media (max-width: 768px) {
    .hp-protocol__list li {
      font-size: 1rem;
      padding-left: 1.5rem;
      margin-bottom: 1rem;
    }
  }
  
  /* Table - Оптимизированная версия */
  .hp-protocol__table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--hp-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    table-layout: fixed;
  }
  
  .hp-protocol__table th {
    background: var(--hp-blue);
    color: white;
    font-family: var(--t-headline-font);
    font-weight: 600;
    text-align: center;
    padding: 1.2rem 1rem;
    font-size: 0.95rem;
    vertical-align: middle;
  }
  
  .hp-protocol__table td {
    padding: 1.2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--hp-border);
    vertical-align: middle;
    font-size: 0.95rem;
    word-wrap: break-word;
  }
  
  .hp-protocol__table tr:last-child td {
    border-bottom: none;
  }
  
  .hp-protocol__table tr:nth-child(even) {
    background-color: #f8fafc;
  }
  
  .hp-protocol__table tr:hover {
    background-color: #f0f7ff;
  }
  
  /* MOBILE: Адаптивная таблица без горизонтального скролла */
  @media (max-width: 768px) {
    .hp-protocol__table {
      font-size: 0.85rem;
      table-layout: fixed;
    }
    
    .hp-protocol__table th,
    .hp-protocol__table td {
      padding: 0.8rem 0.5rem;
      font-size: 0.85rem;
    }
  }
  
  @media (max-width: 480px) {
    .hp-protocol__table {
      font-size: 0.8rem;
    }
    
    .hp-protocol__table th,
    .hp-protocol__table td {
      padding: 0.6rem 0.4rem;
      font-size: 0.8rem;
    }
    
    .hp-protocol__section-title {
      font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    }
  }
  
  /* Contraindications Section */
  .hp-protocol__contraindications {
    margin-top: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
  }
  
  .hp-protocol__contraindications-content {
    background: #fff8f8;
    border-radius: 20px;
    padding: 3rem;
    border-left: 6px solid var(--hp-red);
    border-right: 1px solid var(--hp-border);
    border-top: 1px solid var(--hp-border);
    border-bottom: 1px solid var(--hp-border);
    position: relative;
    overflow: visible;
    box-shadow: 
      0 10px 40px rgba(231, 76, 60, 0.15),
      0 0 0 1px rgba(231, 76, 60, 0.1);
    min-height: 100px;
  }
  
  .hp-protocol__contraindications-content::before {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: url('../img/certificate_quality.svg') no-repeat center center;
    background-size: contain;
    opacity: 0.08;
    transform: rotate(15deg);
    pointer-events: none;
  }
  
  .hp-protocol__contraindications-content::after {
    content: "⚕";
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    opacity: 0.2;
    color: var(--hp-red);
    text-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
  }
  
  /* MOBILE: Adjust contraindications */
  @media (max-width: 768px) {
    .hp-protocol__contraindications-content {
      padding: 2rem;
    }
    
    .hp-protocol__contraindications-content::after {
      top: 1rem;
      right: 1rem;
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .hp-protocol__contraindications-content {
      padding: 1.5rem;
      border-radius: 16px;
    }
    
    .hp-protocol__contraindications-content::after {
      top: 0.5rem;
      right: 0.5rem;
      font-size: 2rem;
    }
  }
  
  .hp-protocol__contraindications-title {
    font-family: var(--t-headline-font);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--hp-red);
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
  }
  
  .hp-protocol__contraindications-subtitle {
    font-family: var(--t-headline-font);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    margin-bottom: 2rem;
    color: var(--hp-dark);
    font-weight: 600;
    position: relative;
    z-index: 2;
  }
  
  .hp-protocol__contraindications-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
  }
  
  .hp-protocol__contraindications-list li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(231, 76, 60, 0.2);
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--hp-dark);
  }
  
  .hp-protocol__contraindications-list li::before {
    content: "×";
    color: var(--hp-red);
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: -0.2rem;
  }
  
  .hp-protocol__contraindications-list li:last-child {
    border-bottom: none;
  }
  
  /* MOBILE: Adjust contraindications list */
  @media (max-width: 768px) {
    .hp-protocol__contraindications-list li {
      font-size: 1rem;
      padding: 1rem 0;
      gap: 0.8rem;
    }
    
    .hp-protocol__contraindications-list li::before {
      font-size: 1.3rem;
    }
  }
  
  @media (max-width: 480px) {
    .hp-protocol__contraindications-list li {
      font-size: 0.95rem;
      padding: 0.8rem 0;
    }
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .hp-protocol__main-title {
      margin-bottom: 2rem;
    }
    
    .hp-protocol__card {
      min-height: auto;
      padding: 1.5rem 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .hp-protocol__card {
      min-height: auto;
      padding: 1.2rem 0.8rem;
    }
    
    .hp-protocol__card-title {
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
    }
    
    .hp-protocol__card-link {
      padding: 0.7rem 1rem;
      font-size: 0.9rem;
    }
  }

/* ===== rec2387761873 ===== */
.hp-contra,
  .hp-contra * { box-sizing: border-box; }
  .hp-contra input,
  .hp-contra textarea,
  .hp-contra select { font: inherit; }

  .hp-contra {
    --hp-red: #d4503a;
    --hp-red-soft: #fdf1ed;
    --hp-text-dark: #1c1c1c;
    --hp-text-body: #2c2c2c;
    --hp-border: rgba(212, 80, 58, 0.2);
  }

  .hp-contra {
    font-family: var(--t-text-font);
    color: var(--hp-text-body);
    background: #ffffff;
    line-height: 1.6;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
  }

  .hp-contra__wrapper {
    width: 100%;
    max-width: 900px;
    position: relative;
    padding-left: 28px;
  }

  /* Vertical red bar on the left */
  .hp-contra__wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--hp-red);
    border-radius: 2px;
  }

  /* Card */
  .hp-contra__card {
    background: var(--hp-red-soft);
    border-radius: 16px;
    padding: 32px 40px 36px;
    position: relative;
  }

  .hp-contra__trigger {
    display: none;
  }

  /* Button with red outline */
  .hp-contra__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    user-select: none;
    padding: 24px 28px;
    background: #ffffff;
    border: 2px solid var(--hp-red);
    border-radius: 10px;
    transition: background 0.25s ease;
  }

  .hp-contra__btn:hover {
    background: rgba(212, 80, 58, 0.04);
  }

  .hp-contra__btn-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .hp-contra__title {
    font-family: var(--t-headline-font);
    font-size: 32px;
    font-weight: 700;
    color: var(--hp-red);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0;
    line-height: 1.15;
  }

  .hp-contra__subtitle {
    font-family: var(--t-headline-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--hp-text-dark);
    margin: 0;
    line-height: 1.35;
  }

  /* Arrow (check / chevron) */
  .hp-contra__icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
  }

  .hp-contra__icon svg {
    width: 22px;
    height: 22px;
  }

  .hp-contra__trigger:checked ~ .hp-contra__card .hp-contra__icon {
    transform: rotate(180deg);
  }

  /* Collapsible body */
  .hp-contra__body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.3s ease, padding 0.4s ease;
    padding: 0 16px;
  }

  .hp-contra__trigger:checked ~ .hp-contra__card .hp-contra__body {
    max-height: 800px;
    opacity: 1;
    padding: 28px 16px 8px;
  }

  .hp-contra__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .hp-contra__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--hp-border);
  }

  .hp-contra__item:first-child {
    padding-top: 4px;
  }

  .hp-contra__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* Cross */
  .hp-contra__cross {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    margin-top: 5px;
    position: relative;
  }

  .hp-contra__cross::before,
  .hp-contra__cross::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 2px;
    background: var(--hp-red);
    border-radius: 1px;
  }

  .hp-contra__cross::before { transform: translateY(-50%) rotate(45deg); }
  .hp-contra__cross::after { transform: translateY(-50%) rotate(-45deg); }

  .hp-contra__text {
    font-family: var(--t-text-font);
    font-size: 15.5px;
    color: var(--hp-text-body);
    line-height: 1.6;
    margin: 0;
  }

  /* ===== Responsive ≤960 ===== */
  @media (max-width: 960px) {
    .hp-contra { padding: 40px 16px; }
    .hp-contra__wrapper { padding-left: 22px; }
    .hp-contra__card { padding: 28px 28px 32px; }
    .hp-contra__title { font-size: 26px; }
    .hp-contra__subtitle { font-size: 16px; }
  }

  /* ===== Responsive ≤640 ===== */
  @media (max-width: 640px) {
    .hp-contra { padding: 28px 12px; }
    .hp-contra__wrapper { padding-left: 18px; }
    .hp-contra__wrapper::before { width: 3px; }
    .hp-contra__card { padding: 22px 20px 24px; border-radius: 12px; }
    .hp-contra__btn { padding: 18px 20px; }
    .hp-contra__title { font-size: 21px; letter-spacing: 0.8px; }
    .hp-contra__subtitle { font-size: 14px; }
    .hp-contra__item { gap: 12px; padding: 14px 0; }
    .hp-contra__text { font-size: 14px; }
  }

  /* ===== Responsive ≤480 ===== */
  @media (max-width: 480px) {
    .hp-contra { padding: 20px 8px; }
    .hp-contra__wrapper { padding-left: 14px; }
    .hp-contra__card { padding: 18px 14px 20px; }
    .hp-contra__btn { padding: 16px 14px; }
    .hp-contra__title { font-size: 18px; letter-spacing: 0.5px; }
    .hp-contra__subtitle { font-size: 13px; }
    .hp-contra__item { gap: 10px; padding: 12px 0; }
    .hp-contra__text { font-size: 13.5px; line-height: 1.5; }
    .hp-contra__cross { width: 10px; height: 10px; }
    .hp-contra__cross::before,
    .hp-contra__cross::after { width: 10px; height: 1.8px; }
  }

/* ===== rec2328416423 ===== */
.hp-dk,
  .hp-dk * { box-sizing: border-box; }
  .hp-dk input,
  .hp-dk textarea,
  .hp-dk select { font: inherit; }

  .hp-dk {
    --blue: #3b7dff;
    --blue-h: #2a6aee;
    --white: #fff;
    --black: #1a1a1a;
    --gray: #666;
    
    background: var(--white);
    font-family: var(--t-text-font);
  }
  
  .hp-dk__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* ===== ПРАВИЛА НАНЕСЕНИЯ ===== */
  .hp-dk__rules {
    padding: 60px 0 50px;
    position: relative;
    scroll-margin-top: 120px; 
  }
  
  .hp-dk__title {
    font-family: var(--t-headline-font);
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 35px 0;
    position: relative;
    z-index: 3;
  }
  
  .hp-dk__title span { color: var(--blue); }
  
  .hp-dk__rules-wrap {
    position: relative;
  }
  
  .hp-dk__rules-photo {
    position: absolute;
    right: 0;
    top: -95px;
    width: 58%;
    height: auto;
    overflow: visible;
    z-index: 1;
  }
  
  .hp-dk__rules-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center top;
  }
  
  .hp-dk__table-wrap {
    position: relative;
    z-index: 2;
    max-width: 470px;
    padding-right: 0;
  }
  
  .hp-dk__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .hp-dk__table th {
    background: var(--blue);
    color: var(--white);
    font-family: var(--t-headline-font);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 14px 12px;
    text-align: center;
  }
  
  .hp-dk__table td {
    padding: 12px;
    border-bottom: 1px solid #e5e5e5;
    font-family: var(--t-text-font);
    font-size: 0.95rem;
    text-align: center;
    background: var(--white);
  }
  
  .hp-dk__table tr:last-child td { border-bottom: none; }
  .hp-dk__table tr:nth-child(even) td { background: #f8f9fa; }
  
  .hp-dk__acc { margin-bottom: 10px; }
  
  .hp-dk__acc-btn {
    width: 100%;
    background: var(--blue);
    color: var(--white);
    font-family: var(--t-headline-font);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
  }
  
  .hp-dk__acc-btn:hover { background: var(--blue-h); }
  
  .hp-dk__acc-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
  }
  
  .hp-dk__acc.open .hp-dk__acc-icon { transform: rotate(180deg); }
  
  .hp-dk__acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s;
    background: var(--white);
  }
  
  .hp-dk__acc.open .hp-dk__acc-body { max-height: 400px; }
  
  .hp-dk__acc-text {
    padding: 16px 20px;
    font-family: var(--t-text-font);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--black);
  }
  
  .hp-dk__acc-text ul, .hp-dk__acc-text ol { padding-left: 18px; margin: 0; }
  .hp-dk__acc-text li { margin-bottom: 4px; }
  
  /* ===== ПОЧЕМУ DEKOHAIR ВЫБИРАЮТ ===== */
  .hp-dk__why {
    padding: 36px 0 43px;
    border-top: 2px solid #eee;
  }
  
  .hp-dk__why-title {
    font-family: var(--t-headline-font);
    font-size: 1.86rem;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin: 0 0 22px 0;
  }
  
  .hp-dk__why-title span { color: var(--blue); }
  
  .hp-dk__why-row {
    display: flex;
    gap: 0;
    margin-bottom: 14px;
    border-radius: 10px;
    overflow: visible;
    min-height: auto;
  }
  
  .hp-dk__why-img {
    flex: 0 0 55%;
    height: 362px;
    object-fit: cover;
    display: block;
    border-radius: 10px 0 0 10px;
  }
  
  .hp-dk__why-row--rev .hp-dk__why-img {
    border-radius: 0 10px 10px 0;
    flex: 0 0 55%;
    height: 362px;
  }
  
  .hp-dk__why-box {
    flex: 1;
    background: var(--blue);
    padding: 17px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hp-dk__why-box h3 {
    font-family: var(--t-headline-font);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 10px 0;
  }
  
  .hp-dk__why-list { list-style: none; padding: 0; margin: 0; }
  
  .hp-dk__why-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 5px;
    font-family: var(--t-text-font);
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.35;
  }
  
  .hp-dk__why-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--white);
  }
  
  .hp-dk__why-row--rev { flex-direction: row-reverse; }
  
  /* ===== ПАМЯТКА ПОКУПАТЕЛЮ ===== */
  .hp-dk__note {
    padding: 50px 0 50px;
    border-top: 2px solid #eee;
    scroll-margin-top: 120px;
  }
  
  .hp-dk__note-flex {
    display: flex;
    align-items: center;
    gap: 25px;
  }
  
  .hp-dk__note-bottle {
    flex: 0 0 364px;
  }
  
  .hp-dk__note-bottle img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .hp-dk__note-btn-wrap {
    flex: 1;
    display: flex;
    align-items: center;
  }
  
  .hp-dk__note-btn {
    background: var(--blue);
    color: var(--white);
    font-family: var(--t-headline-font);
    font-weight: 700;
    font-size: 1.5rem;
    padding: 22px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    max-width: 500px;
    text-align: center;
  }
  
  .hp-dk__note-btn:hover { background: var(--blue-h); }
  
  .hp-dk__note-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
    background: #f8f9fa;
    border-radius: 15px;
    margin-top: 25px;
  }
  
  .hp-dk__note.active .hp-dk__note-text { max-height: 800px; }
  
  .hp-dk__note-text-inner { padding: 25px; }
  
  .hp-dk__note-text-inner h4 {
    font-family: var(--t-headline-font);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--black);
    margin: 0 0 12px 0;
  }
  
  .hp-dk__note-text-inner p {
    font-family: var(--t-text-font);
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--black);
    margin-bottom: 10px;
  }
  
  .hp-dk__note-text-inner ul { padding-left: 18px; margin: 10px 0; }
  .hp-dk__note-text-inner li {
    font-family: var(--t-text-font);
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 5px;
  }
  .hp-dk__note-text-inner strong { font-weight: 700; }
  
  /* ===== АДАПТИВ ===== */
  @media (max-width: 960px) {
    .hp-dk__rules-photo {
      position: relative;
      right: auto;
      top: auto;
      width: 100%;
      height: auto;
      max-width: 400px;
      margin: 0 auto 20px;
      overflow: visible;
    }
    
    .hp-dk__table-wrap {
      padding-right: 0;
      max-width: 100%;
    }
    
    .hp-dk__title { font-size: 2rem; }
    .hp-dk__why-title { font-size: 1.56rem; }
    
    .hp-dk__why-row, .hp-dk__why-row--rev {
      flex-direction: column;
    }
    
    .hp-dk__why-img {
      flex: 0 0 auto;
      height: 295px;
      border-radius: 10px 10px 0 0;
    }
    
    .hp-dk__why-row--rev .hp-dk__why-img {
      border-radius: 10px 10px 0 0;
    }
    
    .hp-dk__note-flex {
      justify-content: center;
    }
    
    .hp-dk__note-bottle {
      flex: 0 0 280px;
    }
  }
  
  @media (max-width: 480px) {
    .hp-dk__rules { padding: 30px 0 40px; }
    .hp-dk__title { font-size: 1.5rem; }
    .hp-dk__why-title { font-size: 1.32rem; }
    
    .hp-dk__table th, .hp-dk__table td {
      padding: 8px 5px;
      font-size: 0.75rem;
    }
    
    .hp-dk__acc-btn { font-size: 0.9rem; padding: 12px 14px; }
    .hp-dk__note-btn { font-size: 1.1rem; padding: 16px 20px; }
    
    .hp-dk__note-flex { flex-direction: column; align-items: center; }
    .hp-dk__note-bottle { flex: 0 0 auto; width: 200px; }
    .hp-dk__note-btn-wrap { width: 100%; justify-content: center; }
    
    .hp-dk__rules-photo { max-width: 300px; height: auto; }
    
    .hp-dk__why-img { height: 235px; }
  }

/* ===== rec2387754283 ===== */
/* ===== Block Reset ===== */
.hp-dk,
.hp-dk * {
  box-sizing: border-box;
}

/* ===== Root Variables ===== */
.hp-dk {
  --dk-bg: #ffffff;
  --dk-card-bg: #ffffff;
  --dk-accent: #0275C9;
  --dk-accent-hover: #0160a8;
  --dk-accent-light: rgba(2, 117, 201, 0.08);
  --dk-text-primary: #1a1d26;
  --dk-text-secondary: #4a4f5e;
  --dk-text-muted: #8b90a0;
  --dk-border: #e4e7ed;
  --dk-radius: 20px;
  --dk-radius-btn: 80px;

  font-family: var(--t-text-font);
  background: var(--dk-bg);
  padding: 80px 20px 100px;
  color: var(--dk-text-primary);
  line-height: 1.6;
}

/* ===== Layout ===== */
.hp-dk__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.hp-dk__hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-bottom: 0;
  transition: margin-bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-dk__hero--expanded {
  margin-bottom: 60px;
}

/* ===== Bottle ===== */
.hp-dk__bottle {
  flex-shrink: 0;
  width: 280px;
  position: relative;
}

.hp-dk__bottle img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s ease;
}

.hp-dk__bottle:hover img {
  transform: translateY(-8px);
}

/* Decorative glow under bottle */
.hp-dk__bottle::before {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 24px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.07) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* ===== Button ===== */
.hp-dk__btn-wrap {
  flex-shrink: 0;
}

.hp-dk__btn {
  font-family: var(--t-headline-font);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--dk-accent);
  border: none;
  cursor: pointer;
  padding: 28px 72px;
  border-radius: var(--dk-radius-btn);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 30px rgba(2, 117, 201, 0.35);
  white-space: nowrap;
  min-width: 420px;
  text-align: center;
}

.hp-dk__btn:hover {
  background: var(--dk-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(2, 117, 201, 0.45);
}

.hp-dk__btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 18px rgba(2, 117, 201, 0.3);
}

/* Shimmer */
.hp-dk__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  transition: left 0.5s ease;
}

.hp-dk__btn:hover::after {
  left: 100%;
}

/* ===== Expand icon ===== */
.hp-dk__btn-icon {
  display: inline-block;
  margin-left: 14px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  vertical-align: middle;
}

.hp-dk__btn-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hp-dk__btn--active .hp-dk__btn-icon {
  transform: rotate(180deg);
}

/* ===== Note Card ===== */
.hp-dk__note-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--dk-card-bg);
  border-radius: var(--dk-radius);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease,
              padding 0.5s ease,
              box-shadow 0.4s ease;
  box-shadow: none;
}

.hp-dk__note-card--open {
  max-height: 800px;
  opacity: 1;
  padding: 52px 60px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
}

/* ===== Note Title ===== */
.hp-dk__note-title {
  font-family: var(--t-headline-font);
  font-size: 30px;
  font-weight: 700;
  color: var(--dk-text-primary);
  margin: 0 0 32px 0;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--dk-border);
  position: relative;
}

.hp-dk__note-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--dk-accent);
}

/* ===== Note Body ===== */
.hp-dk__note-body {
  font-family: var(--t-text-font);
  color: var(--dk-text-secondary);
  font-size: 17px;
  line-height: 1.8;
}

.hp-dk__note-body p {
  margin: 0 0 20px 0;
}

.hp-dk__note-body ul {
  padding-left: 24px;
  margin: 0 0 20px 0;
}

.hp-dk__note-body li {
  margin-bottom: 10px;
  position: relative;
}

.hp-dk__note-body li::marker {
  color: var(--dk-accent);
}

.hp-dk__note-body strong {
  color: var(--dk-text-primary);
  font-weight: 600;
}

.hp-dk__note-body .hp-dk__accent-text {
  color: var(--dk-accent);
  font-weight: 600;
}

/* ===== Numbered items ===== */
.hp-dk__note-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.hp-dk__note-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: var(--dk-accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--t-headline-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--dk-accent);
  margin-top: 2px;
}

.hp-dk__note-item p {
  margin: 0;
}

/* ===== Responsive ===== */

/* Tablets */
@media (max-width: 960px) {
  .hp-dk {
    padding: 60px 20px 80px;
  }

  .hp-dk__hero {
    gap: 50px;
  }

  .hp-dk__bottle {
    width: 220px;
  }

  .hp-dk__btn {
    font-size: 18px;
    padding: 24px 56px;
    min-width: 360px;
  }

  .hp-dk__note-card--open {
    padding: 44px 48px;
  }
}

/* Small tablets */
@media (max-width: 640px) {
  .hp-dk {
    padding: 50px 16px 60px;
  }

  .hp-dk__hero {
    flex-direction: column;
    gap: 36px;
  }

  .hp-dk__bottle {
    width: 200px;
  }

  .hp-dk__btn {
    font-size: 16px;
    padding: 22px 48px;
    letter-spacing: 0.8px;
    min-width: auto;
    width: 100%;
    max-width: 380px;
  }

  .hp-dk__note-card--open {
    padding: 36px 28px;
  }

  .hp-dk__note-title {
    font-size: 24px;
  }

  .hp-dk__note-body {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hp-dk {
    padding: 40px 12px 50px;
  }

  .hp-dk__bottle {
    width: 170px;
  }

  .hp-dk__btn {
    font-size: 14px;
    padding: 20px 36px;
    letter-spacing: 0.5px;
    max-width: 320px;
  }

  .hp-dk__note-card--open {
    padding: 30px 20px;
    border-radius: 14px;
  }

  .hp-dk__note-title {
    font-size: 20px;
    margin-bottom: 24px;
    padding-bottom: 18px;
  }

  .hp-dk__note-body {
    font-size: 14px;
    line-height: 1.75;
  }

  .hp-dk__note-item {
    gap: 12px;
  }

  .hp-dk__note-num {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
}

/* ===== rec2328356513 ===== */
.hp-card,
    .hp-card * {
        box-sizing: border-box;
    }

    .hp-card input,
    .hp-card textarea,
    .hp-card select {
        font: inherit;
    }

    .hp-card {
        font-family: var(--t-text-font);
        background-color: #ffffff;
        padding: 80px 20px 60px;
        margin: 0;
        overflow: hidden;
    }

    .hp-card__container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .hp-card__title {
        font-family: var(--t-headline-font);
        font-size: 36px;
        font-weight: 600;
        color: #0275C9;
        text-align: center;
        margin: 0 0 60px;
        line-height: 1.3;
    }

    /* Desktop: all 5 in one row */
    .hp-card__row {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
    }

    .hp-card__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .hp-card__item:hover {
        transform: translateY(-4px);
    }

    .hp-card__image-wrapper {
        position: relative;
        width: 100%;
        max-width: 200px;
        aspect-ratio: 1 / 1;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .hp-card__image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .hp-card__item:hover .hp-card__image {
        transform: scale(1.05);
    }

    .hp-card__badge {
        position: absolute;
        top: 0;
        right: 0;
        background: #e94b5a;
        color: #ffffff;
        font-family: var(--t-text-font);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        padding: 6px 12px;
        border-radius: 50px;
    }

    .hp-card__text {
        max-width: 220px;
    }

    .hp-card__name {
        font-family: var(--t-text-font);
        font-size: 13px;
        font-weight: 700;
        color: #1a1a1a;
        text-transform: uppercase;
        line-height: 1.4;
        margin: 0 0 10px;
    }

    .hp-card__price {
        font-family: var(--t-text-font);
        font-size: 14px;
        font-weight: 400;
        color: #333333;
        margin: 0;
    }

    /* Scroll indicator - hidden on desktop */
    .hp-card__scroll-hint {
        display: none;
    }

    /* Modal Overlay */
    .hp-card__modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .hp-card__modal.is-active {
        display: flex;
        opacity: 1;
    }

    .hp-card__modal-content {
        background: #ffffff;
        border-radius: 12px;
        max-width: 1100px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        padding: 60px 50px 50px;
        transform: scale(0.9);
        transition: transform 0.3s ease;
    }

    .hp-card__modal.is-active .hp-card__modal-content {
        transform: scale(1);
    }

    .hp-card__modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f0f0f0;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #1a1a1a;
        transition: background 0.2s ease;
        font-family: var(--t-text-font);
    }

    .hp-card__modal-close:hover {
        background: #e0e0e0;
    }

    .hp-card__modal-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 30px;
        align-items: start;
    }

    .hp-card__modal-image {
        width: 100%;
        max-width: 400px;
        aspect-ratio: 1 / 1;
        object-fit: contain;
        margin: 0 auto;
        display: block;
    }

    .hp-card__modal-info {
        display: flex;
        flex-direction: column;
    }

    .hp-card__modal-logo {
        font-family: var(--t-headline-font);
        font-size: 32px;
        font-weight: 700;
        color: #0275C9;
        margin: 0 0 4px;
        letter-spacing: 1px;
    }

    .hp-card__modal-tagline {
        font-family: var(--t-headline-font);
        font-size: 14px;
        color: #4a8cc4;
        margin: 0 0 30px;
        letter-spacing: 2px;
    }

    .hp-card__modal-title {
        font-family: var(--t-text-font);
        font-size: 22px;
        font-weight: 700;
        color: #1a1a1a;
        text-transform: uppercase;
        margin: 0 0 8px;
    }

    .hp-card__modal-volume {
        font-family: var(--t-text-font);
        font-size: 18px;
        font-weight: 400;
        color: #1a1a1a;
        margin: 0 0 20px;
    }

    .hp-card__modal-status {
        font-family: var(--t-text-font);
        font-size: 24px;
        font-weight: 700;
        color: #0275C9;
        margin: 0 0 30px;
    }

    .hp-card__modal-body {
        font-family: var(--t-text-font);
        color: #1a1a1a;
        line-height: 1.6;
    }

    .hp-card__modal-subtitle {
        font-family: var(--t-text-font);
        font-size: 16px;
        font-weight: 700;
        color: #1a1a1a;
        margin: 20px 0 8px;
    }

    .hp-card__modal-text {
        font-family: var(--t-text-font);
        font-size: 14px;
        color: #1a1a1a;
        margin: 0 0 16px;
        line-height: 1.6;
    }

    .hp-card__modal-list {
        font-family: var(--t-text-font);
        font-size: 14px;
        color: #1a1a1a;
        padding-left: 20px;
        margin: 0 0 16px;
    }

    .hp-card__modal-list li {
        margin-bottom: 6px;
        line-height: 1.5;
    }

    .hp-card__modal-list strong {
        color: #0275C9;
        font-weight: 700;
    }

    /* Tablet */
    @media (max-width: 1200px) {
        .hp-card__row {
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }

        .hp-card__image-wrapper {
            max-width: 160px;
        }

        .hp-card__name {
            font-size: 11px;
        }

        .hp-card__title {
            font-size: 30px;
            margin-bottom: 40px;
        }
    }

    /* Mobile: horizontal scroll */
    @media (max-width: 768px) {
        .hp-card {
            padding: 50px 0 40px;
            overflow: hidden;
        }

        .hp-card__container {
            padding: 0 20px;
        }

        .hp-card__title {
            font-size: 24px;
            margin-bottom: 30px;
            padding: 0 20px;
        }

        .hp-card__row {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 16px;
            margin: 0 -20px;
            padding: 0 20px 16px;
        }

        .hp-card__row::-webkit-scrollbar {
            display: none;
        }

        .hp-card__item {
            flex: 0 0 auto;
            width: calc(50% - 10px);
            scroll-snap-align: start;
        }

        .hp-card__image-wrapper {
            max-width: 180px;
        }

        .hp-card__name {
            font-size: 12px;
        }

        .hp-card__badge {
            font-size: 9px;
            padding: 5px 10px;
        }

        .hp-card__scroll-hint {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
            color: #999999;
            font-family: var(--t-text-font);
            font-size: 12px;
        }

        .hp-card__scroll-icon {
            display: inline-flex;
            animation: hp-card__swipe 1.5s ease-in-out infinite;
        }

        .hp-card__scroll-icon svg {
            width: 24px;
            height: 24px;
        }

        @keyframes hp-card__swipe {
            0%, 100% {
                transform: translateX(0);
                opacity: 0.5;
            }
            50% {
                transform: translateX(8px);
                opacity: 1;
            }
        }

        /* Modal mobile */
        .hp-card__modal-content {
            padding: 50px 20px 30px;
        }

        .hp-card__modal-header {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .hp-card__modal-image {
            max-width: 240px;
        }

        .hp-card__modal-logo {
            font-size: 26px;
        }

        .hp-card__modal-tagline {
            font-size: 12px;
            margin-bottom: 20px;
        }

        .hp-card__modal-title {
            font-size: 18px;
        }

        .hp-card__modal-volume {
            font-size: 16px;
        }

        .hp-card__modal-status {
            font-size: 20px;
        }
    }

    @media (max-width: 480px) {
        .hp-card__item {
            width: calc(60% - 10px);
        }

        .hp-card__image-wrapper {
            max-width: 160px;
        }

        .hp-card__name {
            font-size: 11px;
        }
    }

    @media (max-width: 360px) {
        .hp-card__title {
            font-size: 20px;
        }

        .hp-card__item {
            width: calc(70% - 10px);
        }

        .hp-card__image-wrapper {
            max-width: 140px;
        }
    }

/* ===== rec2328325563 ===== */
/* Обязательный сброс блока */
  .hp-ba-slider,
  .hp-ba-slider * { box-sizing: border-box; }
  .hp-ba-slider input,
  .hp-ba-slider textarea,
  .hp-ba-slider select { font: inherit; }
  
  .hp-ba-slider {
    --slider-bg: #ffffff;
    --slider-text: #333333;
    --slider-accent: #2563eb;
    --slider-border: #e0e0e0;
    --slider-handle: #2563eb;
    --slider-font: var(--t-text-font);
    --slider-heading: var(--t-headline-font);
    --slider-gap: 40px;
    
    font-family: var(--slider-font);
    color: var(--slider-text);
    background: var(--slider-bg);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
  }
  
  /* Контейнер слайдера */
  .hp-ba-slider__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
  }
  
  /* Заголовок */
  .hp-ba-slider__title {
    font-family: var(--slider-heading);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 600;
  }
  
  /* Обёртка трека для скрытия краёв */
  .hp-ba-slider__viewport {
    overflow: hidden;
    margin: 0 -40px;
    padding: 0 40px;
  }
  
  /* Трек с карточками */
  .hp-ba-slider__track {
    display: flex;
    gap: var(--slider-gap);
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  
  /* Карточка слайдера */
  .hp-ba-slider__card {
    flex: 0 0 calc(33.333% - (var(--slider-gap) * 2 / 3));
    min-width: 280px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
  }
  
  /* Слайдер до/после внутри карточки */
  .hp-ba-slider__comparison {
    position: relative;
    height: 350px;
    overflow: hidden;
    user-select: none;
  }
  
  /* Изображения до и после */
  .hp-ba-slider__img-before,
  .hp-ba-slider__img-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }
  
  .hp-ba-slider__img-after {
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
  }
  
  /* Метки до/после */
  .hp-ba-slider__label {
    position: absolute;
    top: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
  }
  
  .hp-ba-slider__label--before {
    left: 10px;
  }
  
  .hp-ba-slider__label--after {
    right: 10px;
  }
  
  /* Ползунок */
  .hp-ba-slider__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--slider-handle);
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 20;
  }
  
  .hp-ba-slider__handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--slider-handle);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Стрелки навигации */
  .hp-ba-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--slider-accent);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 100;
  }
  
  .hp-ba-slider__arrow:hover {
    background: #1d4ed8;
    transform: translateY(-50%) scale(1.05);
  }
  
  .hp-ba-slider__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
  }
  
  .hp-ba-slider__arrow:disabled:hover {
    background: var(--slider-accent);
  }
  
  .hp-ba-slider__arrow--prev {
    left: 0;
  }
  
  .hp-ba-slider__arrow--next {
    right: 0;
  }
  
  .hp-ba-slider__arrow svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }
  
  /* Точки-индикаторы */
  .hp-ba-slider__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
  }
  
  .hp-ba-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
  }
  
  .hp-ba-slider__dot--active {
    background: var(--slider-accent);
    transform: scale(1.3);
  }
  
  /* Адаптивность */
  @media (max-width: 1200px) {
    .hp-ba-slider__card {
      flex: 0 0 calc(50% - (var(--slider-gap) / 2));
    }
  }
  
  @media (max-width: 768px) {
    .hp-ba-slider {
      padding: 40px 10px;
    }
    
    .hp-ba-slider__container {
      padding: 0 20px;
    }
    
    .hp-ba-slider__viewport {
      margin: 0 -20px;
      padding: 0 20px;
    }
    
    .hp-ba-slider__track {
      gap: 20px;
    }
    
    .hp-ba-slider__card {
      flex: 0 0 100%;
      min-width: 280px;
    }
    
    .hp-ba-slider__comparison {
      height: 300px;
    }
    
    .hp-ba-slider__title {
      font-size: 1.5rem;
      margin-bottom: 30px;
    }
    
    .hp-ba-slider__arrow {
      width: 36px;
      height: 36px;
    }
    
    .hp-ba-slider__arrow svg {
      width: 20px;
      height: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .hp-ba-slider__comparison {
      height: 250px;
    }
  }
