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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #f3f3f3;
  color: #10244d;
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

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

.section {
  padding: 78px 0 0;
}

.section__title {
  margin: 0;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  color: #173463;
}

.section__title--center {
  text-align: center;
}

.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

/* TOPBAR */

.topbar {
  background: #fff;
  box-shadow: 0 2px 14px rgba(21, 48, 95, 0.08);
  position: relative;
  z-index: 50;
}

.topbar__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 118px;
}

.brand__logo img {
  height: 34px;
  width: auto;
}

.topbar__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #2f4a78;
  white-space: nowrap;
}

.topbar__status b {
  color: #6dc84b;
  font-weight: 700;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #52d04a;
  flex: 0 0 8px;
  box-shadow: 0 0 0 4px rgba(82, 208, 74, 0.14);
}

.nav {
  display: flex;
  align-items: stretch;
  margin-left: auto;
  margin-right: 8px;
}

.nav a {
  min-width: 164px;
  height: 72px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #23406c;
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s;
}

.nav a:hover {
  background: #f97f30;
  color: #fff;
}

.nav a.is-active {
  background: transparent;
  color: #23406c;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f97f30;
  display: grid;
  place-items: center;
  color: #fff;
}

.social svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.lang-select {
  font-size: 12px;
  color: #23406c;
  font-weight: 700;
  padding: 0 4px;
}

.cabinet-btn {
  height: 72px;
  min-width: 158px;
  padding: 0 22px;
  background: #f97f30;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.burger {
  display: none;
}

.mobile {
  display: none;
}

/* HERO */

.hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #f5e4d3;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('/template/HeineCMS_redone/assets/img/header.png') center top / cover no-repeat;
  filter: saturate(0.96) brightness(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.25) 35%, rgba(255,255,255,0) 65%),
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.02) 50%, rgba(255,255,255,.12) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 480px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 64px;
}

.hero__left {
  width: 460px;
  padding-top: 28px;
  margin-left: 20px;
}

.hero__left h1 {
  margin: 0 0 22px;
  max-width: 420px;
  font-size: 48px;
  line-height: 0.96;
  font-weight: 900;
  text-transform: uppercase;
  color: #0f2b5c;
}

.hero__lead {
  margin: 0 0 26px;
  max-width: 370px;
  font-size: 17px;
  line-height: 1.45;
  color: rgba(15, 43, 92, .82);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 58px;
  border-radius: 10px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 700;
  transition: 0.2s;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #ff9a3d 0%, #f66d27 100%);
  box-shadow: 0 8px 20px rgba(246, 109, 39, 0.26);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn__icon {
  font-size: 18px;
  line-height: 1;
}

.hero__right {
  width: 420px;
  padding-top: 46px;
  display: flex;
  justify-content: flex-end;
}

.hero__giftCard {
  width: 380px;
  padding: 24px 30px 22px;
  border-radius: 20px;

  background: rgba(255,255,255,0.35); /* БЫЛО 0.16 */
  backdrop-filter: blur(12px);

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hero__giftTitle {
  margin-bottom: 14px;
  color: #103064;
  font-size: 34px;
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__giftText {
  margin-bottom: 14px;
  color: rgba(16, 48, 100, 0.75);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

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

.hero__giftItem {
  min-height: 28px;
  padding-left: 34px;
  position: relative;
  display: flex;
  align-items: center;
  color: #163463;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.hero__giftItem + .hero__giftItem {
  margin-top: 10px;
}

.hero__giftItem:before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 6px;
  position: absolute;
  left: 0;
  top: 3px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.hero__giftItem--gold:before {
  background: linear-gradient(180deg, #ffdc7b, #f5b241);
}

.hero__giftItem--blue:before {
  background: linear-gradient(180deg, #91d8ff, #4bb5ff);
}

.hero__giftItem--gray:before {
  background: linear-gradient(180deg, #f7f8fb, #cfd4de);
}

.hero__giftItem--green:before {
  background: linear-gradient(180deg, #b4ffbf, #4ddc6c);
}

.hero__cloud {
  position: absolute;
  bottom: -28px;
  width: 260px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  filter: blur(14px);
}

.hero__cloud--left {
  left: -40px;
}

.hero__cloud--right {
  right: -30px;
}

/* 3D DOWNLOAD BUTTON */

.download3d {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 14px;
  min-width: 320px;
  height: 76px;
  padding: 0 34px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffb14a 0%, #ff8a2a 48%, #f56a22 100%) !important;
  color: #fff !important;
  font-size: 18px;
  font-weight: 800;
  box-shadow:
    0 20px 32px rgba(245, 106, 34, 0.22),
    0 8px 0 #d85a1e,
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  text-decoration: none !important;
  transform: translateY(0);
  transition: all 0.15s ease;
}

.download3d:hover {
  transform: translateY(1px);
  box-shadow:
    0 10px 18px rgba(245, 106, 34, 0.24),
    0 4px 0 #d85a1e,
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.download3d:active {
  transform: translateY(3px);
  box-shadow:
    0 6px 12px rgba(245, 106, 34, 0.18),
    0 1px 0 #d85a1e,
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.download3d__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  font-size: 22px;
}

.download3d__text {
  white-space: nowrap;
}

/* NEWS */

.section--news {
  padding-top: 80px;
}

.pager {
  display: flex;
  gap: 8px;
}

.pager__btn {
  width: 31px;
  height: 31px;
  border-radius: 4px;
  border: 1px solid #dfe5ee;
  color: #9aa7b8;
  background: #fff;
}

.pager__btn--active {
  background: #f97f30;
  border-color: #f97f30;
  color: #fff;
}

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

.news-card {
  position: relative;
  height: 247px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(34, 57, 98, 0.08);
}

.news-card__link {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.news-card__media,
.news-card__media img {
  width: 100%;
  height: 100%;
}

.news-card__media img {
  object-fit: cover;
}

.news-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(8,18,37,0.05) 0%,
    rgba(8,18,37,0.12) 40%,
    rgba(8,18,37,0.65) 100%
  );
}

.news-card__content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 18px 18px 16px;
  color: #fff;
}

.news-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  border-radius: 20px;
  padding: 0 12px;
  background: #f97f30;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
}

.news-card__meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}

.news-card__content h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
}

.news-card__content p {
  margin: 0 0 12px;
  max-width: 82%;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.news-card__more {
  color: #f97f30;
  font-size: 13px;
  font-weight: 700;
}

/* WHY */

.section--why {
  padding-top: 86px;
}

.why-layout {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 22px;
  align-items: center;
}

.why-poster img {
  width: 100%;
  border-radius: 16px;
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-controls {
  display: flex;
  gap: 8px;
}

.why-controls__btn {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: 1px solid #dfe5ee;
  color: #9aa7b8;
  background: #fff;
}

.why-controls__btn--active {
  background: #f97f30;
  border-color: #f97f30;
  color: #fff;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.why-card {
  min-height: 198px;
  border-radius: 14px;
  background: #fff;
  padding: 22px 18px 18px;
  display: flex;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.why-card--active {
  border-bottom: 3px solid #ff7a1a;
}

.why-card--muted {
  opacity: 0.5;
}

.why-card__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f97f30;
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  font-size: 13px;
  font-weight: 700;
}

.why-card__body h3 {
  margin: 0 0 10px;
  color: #173463;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.why-card__body p {
  margin: 0 0 18px;
  color: #6d7d98;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;
}

.why-card__body a {
  color: #f97f30;
  font-size: 12px;
  font-weight: 700;
}

/* STATS + STREAMS */

.section--stats {
  padding-top: 86px;
}

.stats-layout {
  display: grid;
  grid-template-columns: 312px 1fr;
  gap: 72px;
  align-items: start;
}

.stats-box {
  background: #fff;
  border-radius: 10px;
  padding: 18px 16px 16px;
  box-shadow: 0 4px 12px rgba(34, 57, 98, 0.05);
}

.stats-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  color: #173463;
}

.stats-table th {
  text-align: left;
  color: #aab4c4;
  font-size: 11px;
  font-weight: 700;
  padding: 0 10px 10px;
}

.stats-table td {
  padding: 10px 10px;
  border-top: 1px solid #eef2f7;
  font-weight: 600;
}

.stats-table tr.top td {
  background: #f97f30;
  color: #fff;
  border-top: 0;
}

.stats-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.stats-tabs button {
  min-width: 40px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid #ffd2bb;
  background: #fff7f1;
  color: #f97f30;
  font-size: 10px;
  font-weight: 700;
}

.stats-tabs button.active {
  background: #f97f30;
  border-color: #f97f30;
  color: #fff;
}

.streams-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stream,
.stream-add {
  height: 151px;
  border-radius: 10px;
  overflow: hidden;
}

.stream iframe,
.stream img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.stream-add {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6026 0%, #f3c624 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

/* SUPPORT */

.section--support {
  padding-top: 96px;
}

.support-head {
  text-align: center;
  margin-bottom: 28px;
}

.support-head h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  color: #15305f;
}

.support-head p {
  margin: 0 auto;
  max-width: 560px;
  color: #98a3b3;
  font-size: 13px;
  line-height: 1.6;
}

.support-layout {
  position: relative;
}

.support-cards {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.support-card {
  width: 170px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(34, 57, 98, 0.05);
}

.support-card--orange {
  background: linear-gradient(180deg, #ff7d2f 0%, #f59f2c 100%);
}

.support-card__top {
  height: 42px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.support-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
}

.support-card__image {
  height: 154px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 8px;
}

.support-card__image img {
  max-height: 146px;
  width: auto;
}

.vote-cards {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.vote-card {
  width: 170px;
  height: 56px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e8edf4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: #173463;
  box-shadow: 0 4px 12px rgba(34, 57, 98, 0.04);
}

.vote-card__logo {
  display: flex;
  align-items: center;
}

.vote-card__logo img {
  max-height: 22px;
  width: auto;
}

.vote-card__text {
  font-size: 12px;
  font-weight: 700;
  color: #557099;
}

.support-gifts__gift {
  position: absolute;
  width: 70px;
  height: auto;
}

.support-gifts__gift--left {
  left: 230px;
  bottom: 46px;
}

.support-gifts__gift--right {
  right: 220px;
  top: -20px;
}

/* FOOTER */

.footer {
  margin-top: 76px;
  background: #272746;
  color: #fff;
  padding: 42px 0 34px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 330px 1fr 250px;
  gap: 70px;
  align-items: start;
}

.footer__logo img {
  height: 38px;
  width: auto;
  margin-bottom: 18px;
}

.footer__copy p {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.footer__copy a {
  display: block;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.footer__nav {
  display: flex;
  gap: 90px;
  padding-top: 8px;
}

.footer__col {
  display: grid;
  gap: 14px;
}

.footer__col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  padding-top: 4px;
}

.footer__social {
  display: flex;
  gap: 8px;
}

.footer__design {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.footer__servers {
  display: grid;
  grid-template-columns: repeat(3, 58px);
  gap: 8px;
}

.footer__servers a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  border-radius: 2px;
  background: rgba(120, 126, 196, 0.22);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .nav,
  .topbar__status,
  .social,
  .lang-select {
    display: none;
  }

  .burger {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #f97f30;
    color: #fff;
    align-items: center;
    justify-content: center;
  }

  .cabinet-btn {
    height: 44px;
    min-width: auto;
    border-radius: 10px;
  }

  .mobile {
    display: block;
    background: #fff;
    border-top: 1px solid #eef2f7;
  }

  .mobile__panel {
    padding: 18px 0;
    display: grid;
    gap: 10px;
  }

  .mobile__item {
    color: #23406c;
    font-size: 14px;
    font-weight: 600;
  }

  .mobile__cabinet {
    height: 48px;
    border-radius: 10px;
  }

  .hero__content,
  .why-layout,
  .stats-layout,
  .support-cards,
  .vote-cards,
  .footer__inner,
  .footer__nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__left,
  .hero__right {
    width: 100%;
  }

  .news,
  .why-cards,
  .streams-grid {
    grid-template-columns: 1fr;
  }

  .footer__right {
    align-items: flex-start;
  }

  .support-gifts {
    display: none;
  }
}
/* === FINAL MATCH PATCH === */

/* topbar */
.nav a.is-active {
  background: #f97f30;
  color: #fff;
}

/* hero */
.hero {
  height: 486px;
}

.hero__content {
  height: 486px;
  padding-top: 58px;
}

.hero__left {
  width: 445px;
  padding-top: 38px;
  margin-left: 2px;
}

.hero__left h1 {
  max-width: 430px;
  margin-bottom: 18px;
  font-size: 47px;
  line-height: 1.02;
  letter-spacing: -0.4px;
}

.hero__lead {
  max-width: 360px;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.52;
}

.hero__right {
  width: 392px;
  padding-top: 36px;
}

.hero__giftCard {
  width: 356px;
  padding: 18px 22px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,.26);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(17, 39, 78, .08);
}

.hero__giftTitle {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.25;
  text-transform: none;
  font-weight: 800;
}

.hero__giftText {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.45;
}

.hero__giftList {
  display: grid;
  gap: 8px;
}

.hero__giftItem {
  min-height: 22px;
  padding-left: 30px;
  font-size: 12px;
  line-height: 1.3;
}

.hero__giftItem:before {
  width: 18px;
  height: 18px;
  top: 1px;
  border-radius: 4px;
}

.download3d {
  min-width: 195px;
  height: 54px;
  padding: 0 22px;
  border-radius: 8px;
  gap: 10px;
  font-size: 13px;
  box-shadow:
    0 10px 20px rgba(245, 106, 34, 0.22),
    0 5px 0 #d85a1e,
    inset 0 1px 0 rgba(255,255,255,.42);
}

.download3d__icon {
  width: 24px;
  height: 24px;
  font-size: 14px;
}

/* section rhythm */
.section--news {
  padding-top: 68px;
}

.section--why {
  padding-top: 70px;
}

.section--stats {
  padding-top: 74px;
}

.section--support {
  padding-top: 88px;
}

/* news */
.section__head {
  margin-bottom: 24px;
}

.news-card {
  height: 205px;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(34, 57, 98, 0.08);
}

.news-card__content {
  padding: 14px 15px 13px;
}

.news-card__badge {
  height: 22px;
  padding: 0 10px;
  font-size: 10px;
  margin-bottom: 12px;
}

.news-card__meta {
  margin-bottom: 6px;
  font-size: 10px;
}

.news-card__content h3 {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.25;
}

.news-card__content p {
  max-width: 90%;
  margin-bottom: 8px;
  font-size: 11px;
  line-height: 1.4;
}

.news-card__more {
  font-size: 11px;
}

/* why */
.why-layout {
  margin-top: 28px;
  grid-template-columns: 420px 1fr;
  gap: 18px;
}

.why-content {
  gap: 10px;
}

.why-controls {
  margin-bottom: 2px;
}

.why-controls__btn {
  width: 24px;
  height: 24px;
}

.why-cards {
  gap: 14px;
}

.why-card {
  min-height: 150px;
  padding: 16px 16px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(34, 57, 98, 0.05);
}

.why-card--active {
  border-bottom: 3px solid #f97f30;
}

.why-card--muted {
  opacity: 0.38;
}

.why-card__num {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  font-size: 11px;
}

.why-card__body h3 {
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.35;
}

.why-card__body p {
  margin-bottom: 14px;
  font-size: 11px;
  line-height: 1.5;
}

.why-card__body a {
  font-size: 11px;
}

/* stats + streams */
.stats-layout {
  grid-template-columns: 300px 1fr;
  gap: 76px;
}

.stats-box {
  padding: 14px 14px 14px;
  border-radius: 10px;
}

.stats-table th {
  font-size: 10px;
  padding: 0 8px 10px;
}

.stats-table td {
  padding: 8px 8px;
  font-size: 11px;
}

.stats-tabs {
  margin-top: 14px;
}

.stats-tabs button {
  min-width: 34px;
  height: 20px;
  font-size: 9px;
}

.stream,
.stream-add {
  height: 140px;
  border-radius: 8px;
}

/* support */
.support-head {
  margin-bottom: 22px;
}

.support-head h2 {
  margin-bottom: 8px;
}

.support-head p {
  max-width: 610px;
  font-size: 12px;
}

.support-cards {
  gap: 14px;
  margin-bottom: 12px;
}

.support-card {
  width: 154px;
  border-radius: 8px;
}

.support-card__top {
  height: 38px;
  padding: 0 12px;
  font-size: 11px;
}

.support-card__image {
  height: 132px;
}

.support-card__image img {
  max-height: 126px;
}

.vote-cards {
  gap: 14px;
}

.vote-card {
  width: 154px;
  height: 46px;
  padding: 0 12px;
}

.vote-card__logo img {
  max-height: 18px;
}

.vote-card__text {
  font-size: 11px;
}

/* footer */
.footer {
  margin-top: 66px;
  padding: 38px 0 30px;
}

.footer__inner {
  grid-template-columns: 320px 1fr 220px;
  gap: 62px;
}
/* files: only hover, no permanent active */
.nav a.is-active {
  background: transparent !important;
  color: #23406c !important;
}

/* restore updater button to reference look */
.download3d {
  min-width: 320px !important;
  height: 76px !important;
  padding: 0 34px !important;
  border-radius: 20px !important;
  gap: 14px !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  background: linear-gradient(180deg, #ffb14a 0%, #ff8a2a 48%, #f56a22 100%) !important;
  box-shadow:
    0 20px 32px rgba(245, 106, 34, 0.22),
    0 8px 0 #d85a1e,
    inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
}

.download3d__icon {
  width: 38px !important;
  height: 38px !important;
  font-size: 22px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.18) !important;
}

.download3d__text {
  white-space: nowrap;
}
/* === pass 2: visual polish === */

/* hero */
.hero__right {
  width: 370px;
  padding-top: 34px;
}

.hero__giftCard {
  width: 340px;
  padding: 16px 20px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(19, 44, 86, .08);
}

.hero__giftTitle {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
}

.hero__giftText {
  margin-bottom: 10px;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(16, 48, 100, 0.72);
}

.hero__giftItem {
  min-height: 20px;
  padding-left: 28px;
  font-size: 11px;
  line-height: 1.28;
}

.hero__giftItem:before {
  width: 16px;
  height: 16px;
  top: 2px;
  border-radius: 4px;
}

/* news */
.news-card {
  height: 198px;
  border-radius: 10px;
}

.news-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,18,37,0.06) 0%,
    rgba(8,18,37,0.18) 34%,
    rgba(8,18,37,0.78) 100%
  );
}

.news-card__content {
  padding: 13px 14px 12px;
}

.news-card__badge {
  height: 20px;
  padding: 0 9px;
  font-size: 10px;
  margin-bottom: 10px;
}

.news-card__meta {
  margin-bottom: 5px;
  font-size: 10px;
}

.news-card__content h3 {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.25;
}

.news-card__content p {
  margin: 0 0 7px;
  max-width: 88%;
  font-size: 10px;
  line-height: 1.42;
}

.news-card__more {
  font-size: 10px;
}

/* why */
.why-layout {
  gap: 16px;
}

.why-controls__btn {
  width: 22px;
  height: 22px;
  font-size: 12px;
}

.why-cards {
  gap: 12px;
}

.why-card {
  min-height: 142px;
  padding: 15px 15px 13px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(34, 57, 98, 0.04);
}

.why-card--active {
  border-bottom: 2px solid #f97f30;
}

.why-card--muted {
  opacity: 0.28;
}

.why-card__body h3 {
  margin: 0 0 7px;
  font-size: 12px;
  line-height: 1.35;
}

.why-card__body p {
  margin: 0 0 12px;
  font-size: 10px;
  line-height: 1.5;
}

.why-card__body a {
  font-size: 10px;
}

/* stats + streams */
.stats-layout {
  gap: 64px;
}

.stream,
.stream-add {
  height: 136px;
  border-radius: 8px;
}

/* support */
.support-head {
  margin-bottom: 18px;
}

.support-head p {
  max-width: 560px;
  font-size: 12px;
  line-height: 1.45;
}

.support-cards {
  gap: 12px;
  margin-bottom: 12px;
}

.support-card {
  width: 148px;
}

.support-card__image {
  height: 126px;
}

.support-card__image img {
  max-height: 120px;
}

.vote-cards {
  gap: 12px;
}

.vote-card {
  width: 148px;
  height: 44px;
}

/* footer */
.footer {
  margin-top: 60px;
}
/* === hero hotfix === */

/* вернуть нормальную высоту hero */
.hero {
  height: 480px !important;
}

.hero__content {
  height: 480px !important;
  padding-top: 64px !important;
  align-items: flex-start !important;
}

/* вернуть левую колонку в блок */
.hero__left {
  width: 460px !important;
  padding-top: 28px !important;
  margin-left: 20px !important;
}

.hero__left h1 {
  max-width: 420px !important;
  margin: 0 0 22px !important;
  font-size: 48px !important;
  line-height: 0.96 !important;
}

.hero__lead {
  max-width: 370px !important;
  margin: 0 0 26px !important;
  font-size: 17px !important;
  line-height: 1.45 !important;
}

/* вернуть правую карточку в размер */
.hero__right {
  width: 420px !important;
  padding-top: 46px !important;
  display: flex !important;
  justify-content: flex-end !important;
}

.hero__giftCard {
  width: 380px !important;
  padding: 24px 30px 22px !important;
  border-radius: 20px !important;
}

/* исправить масштаб картинки/фона */
.hero__bg {
  background-position: center top !important;
  background-size: cover !important;
}

/* вернуть кнопку в исходный размер и внутрь блока */
.hero__actions {
  display: flex !important;
  gap: 14px !important;
  align-items: center !important;
}

.download3d {
  display: inline-flex !important;
  min-width: 320px !important;
  width: auto !important;
  max-width: 100% !important;
  height: 76px !important;
  padding: 0 34px !important;
  border-radius: 20px !important;
  gap: 14px !important;
  font-size: 18px !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
}

.download3d:hover {
  transform: translateY(1px) !important;
}

.download3d__icon {
  width: 38px !important;
  height: 38px !important;
  font-size: 22px !important;
}

.download3d__text {
  white-space: nowrap !important;
}
/* ===== HERO FULL IMAGE FIX ===== */

.hero {
  position: relative;
  height: 486px !important;
  overflow: hidden !important;
  background: #f5e4d3 !important;
}

.hero__bg {
  position: absolute !important;
  inset: 0 !important;
  background-image: url('/template/HeineCMS_redone/assets/img/header.png') !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 90% auto !important; /* вся картинка целиком, чуть отдалена */
  filter: none !important;
}

.hero__overlay {
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,.38) 0%, rgba(255,255,255,.10) 38%, rgba(255,255,255,0) 68%) !important;
  pointer-events: none !important;
}

.hero__content {
  position: relative !important;
  z-index: 2 !important;
  height: 486px !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  padding-top: 64px !important;
}

.hero__left {
  width: 460px !important;
  padding-top: 28px !important;
  margin-left: 20px !important;
}

.hero__left h1 {
  margin: 0 0 22px !important;
  max-width: 420px !important;
  font-size: 48px !important;
  line-height: 0.96 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  color: #0f2b5c !important;
}

.hero__lead {
  margin: 0 0 26px !important;
  max-width: 370px !important;
  font-size: 17px !important;
  line-height: 1.45 !important;
  color: rgba(15, 43, 92, .82) !important;
  font-weight: 600 !important;
}

.hero__actions {
  display: flex !important;
  gap: 14px !important;
  align-items: center !important;
}

.download3d {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  min-width: 320px !important;
  width: auto !important;
  max-width: 100% !important;
  height: 76px !important;
  padding: 0 34px !important;
  border-radius: 20px !important;
  background: linear-gradient(180deg, #ffb14a 0%, #ff8a2a 48%, #f56a22 100%) !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  box-shadow:
    0 20px 32px rgba(245, 106, 34, 0.22),
    0 8px 0 #d85a1e,
    inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
  text-decoration: none !important;
  transform: translateY(0) !important;
}

.download3d:hover {
  transform: translateY(1px) !important;
  box-shadow:
    0 10px 18px rgba(245, 106, 34, 0.24),
    0 4px 0 #d85a1e,
    inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
}

.download3d__icon {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: rgba(255, 255, 255, 0.18) !important;
  font-size: 22px !important;
}

.download3d__text {
  white-space: nowrap !important;
}

.hero__right {
  width: 420px !important;
  padding-top: 46px !important;
  display: flex !important;
  justify-content: flex-end !important;
}

.hero__giftCard {
  width: 380px !important;
  padding: 24px 30px 22px !important;
  border-radius: 20px !important;
  background: rgba(255,255,255,0.32) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

.hero__giftTitle {
  margin-bottom: 14px !important;
  color: #103064 !important;
  font-size: 34px !important;
  line-height: 0.95 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.hero__giftText {
  margin-bottom: 14px !important;
  color: rgba(16, 48, 100, 0.75) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  font-weight: 600 !important;
}

.hero__giftList {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hero__giftItem {
  min-height: 28px !important;
  padding-left: 34px !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  color: #163463 !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
}

.hero__giftItem + .hero__giftItem {
  margin-top: 10px !important;
}

.hero__giftItem:before {
  content: "" !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 6px !important;
  position: absolute !important;
  left: 0 !important;
  top: 3px !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55) !important;
}

.hero__giftItem--gold:before {
  background: linear-gradient(180deg, #ffdc7b, #f5b241) !important;
}

.hero__giftItem--blue:before {
  background: linear-gradient(180deg, #91d8ff, #4bb5ff) !important;
}

.hero__giftItem--gray:before {
  background: linear-gradient(180deg, #f7f8fb, #cfd4de) !important;
}

.hero__giftItem--green:before {
  background: linear-gradient(180deg, #b4ffbf, #4ddc6c) !important;
}

/* если хочешь ещё сильнее "отдалить" картинку, поменяй 90% на 88% или 86% */
/* ===== HERO FULL IMAGE / WHOLE ART FIX ===== */
/* ВАЖНО: в url должен быть ИСХОДНЫЙ PNG с полной картинкой,
   а не обрезанный banner jpg */

.hero {
  position: relative !important;
  height: 590px !important;
  overflow: hidden !important;
  background: linear-gradient(180deg, #f7efe8 0%, #f4e3d6 100%) !important;
}

.hero__bg {
  position: absolute !important;
  inset: 0 !important;
  background-image: url('/template/HeineCMS_redone/assets/img/header.png') !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: contain !important;
  filter: none !important;
  opacity: 1 !important;
}

.hero__overlay {
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,.48) 0%, rgba(255,255,255,.20) 28%, rgba(255,255,255,.04) 52%, rgba(255,255,255,0) 75%) !important;
  pointer-events: none !important;
}

.hero__content {
  position: relative !important;
  z-index: 2 !important;
  height: 590px !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  padding-top: 72px !important;
}

.hero__left {
  width: 470px !important;
  padding-top: 36px !important;
  margin-left: 18px !important;
}

.hero__left h1 {
  margin: 0 0 22px !important;
  max-width: 430px !important;
  font-size: 48px !important;
  line-height: 0.96 !important;
  font-weight: 900 !important;
  color: #0f2b5c !important;
  text-transform: uppercase !important;
}

.hero__lead {
  margin: 0 0 26px !important;
  max-width: 390px !important;
  font-size: 17px !important;
  line-height: 1.45 !important;
  color: rgba(15, 43, 92, .82) !important;
  font-weight: 600 !important;
}

.hero__actions {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.download3d {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  min-width: 320px !important;
  width: auto !important;
  height: 76px !important;
  padding: 0 34px !important;
  border-radius: 20px !important;
  background: linear-gradient(180deg, #ffb14a 0%, #ff8a2a 48%, #f56a22 100%) !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  box-shadow:
    0 20px 32px rgba(245, 106, 34, 0.22),
    0 8px 0 #d85a1e,
    inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
  text-decoration: none !important;
  transform: translateY(0) !important;
}

.download3d:hover {
  transform: translateY(1px) !important;
}

.download3d__icon {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: rgba(255,255,255,.18) !important;
  font-size: 22px !important;
}

.download3d__text {
  white-space: nowrap !important;
}

.hero__right {
  width: 430px !important;
  padding-top: 56px !important;
  display: flex !important;
  justify-content: flex-end !important;
}

.hero__giftCard {
  width: 390px !important;
  padding: 22px 26px 20px !important;
  border-radius: 20px !important;
  background: rgba(255,255,255,0.32) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

.hero__giftTitle {
  margin-bottom: 12px !important;
  color: #103064 !important;
  font-size: 26px !important;
  line-height: 1.02 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.hero__giftText {
  margin-bottom: 12px !important;
  color: rgba(16, 48, 100, 0.75) !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;
}

.hero__giftItem {
  min-height: 26px !important;
  padding-left: 34px !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  color: #163463 !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
}

.hero__giftItem + .hero__giftItem {
  margin-top: 10px !important;
}

.hero__giftItem:before {
  content: "" !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 6px !important;
  position: absolute !important;
  left: 0 !important;
  top: 2px !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55) !important;
}

.hero__giftItem--gold:before {
  background: linear-gradient(180deg, #ffdc7b, #f5b241) !important;
}

.hero__giftItem--blue:before {
  background: linear-gradient(180deg, #91d8ff, #4bb5ff) !important;
}

.hero__giftItem--gray:before {
  background: linear-gradient(180deg, #f7f8fb, #cfd4de) !important;
}

.hero__giftItem--green:before {
  background: linear-gradient(180deg, #b4ffbf, #4ddc6c) !important;
}

.hero__cloud {
  display: none !important;
}
/* ===== HERO FINAL FIX ===== */

.hero {
  position: relative !important;
  height: 665px !important;
  overflow: hidden !important;
  background: #efe2d6 !important;
}

/* мягкий фон на всю ширину */
.hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: url('/template/HeineCMS_redone/assets/img/header-bg-spring.png') center center / cover no-repeat !important;
  filter: blur(10px) brightness(1.03) !important;
  transform: scale(1.08) !important;
  opacity: 0.42 !important;
  z-index: 0 !important;
}

/* сама целая картинка поверх */
.hero__bg {
  position: absolute !important;
  inset: 0 !important;
  background: url('/template/HeineCMS_redone/assets/img/header.png') center 26px / auto 100% no-repeat !important;
  filter: none !important;
  opacity: 1 !important;
  z-index: 1 !important;
}

/* лёгкая вуаль слева под текст */
.hero__overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  background:
    linear-gradient(90deg, rgba(239,226,214,.92) 0%, rgba(239,226,214,.72) 18%, rgba(239,226,214,.26) 36%, rgba(239,226,214,0) 58%) !important;
  pointer-events: none !important;
}

.hero__content {
  position: relative !important;
  z-index: 3 !important;
  height: 665px !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  padding-top: 108px !important;
}

.hero__left {
  width: 470px !important;
  padding-top: 22px !important;
  margin-left: 10px !important;
}

.hero__left h1 {
  margin: 0 0 26px !important;
  max-width: 430px !important;
  font-size: 64px !important;
  line-height: 0.92 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  color: #0f2b5c !important;
}

.hero__lead {
  margin: 0 0 30px !important;
  max-width: 395px !important;
  font-size: 18px !important;
  line-height: 1.5 !important;
  color: rgba(15, 43, 92, .82) !important;
  font-weight: 600 !important;
}

.hero__actions {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.download3d {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  min-width: 360px !important;
  height: 86px !important;
  padding: 0 38px !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, #ffb14a 0%, #ff8a2a 48%, #f56a22 100%) !important;
  color: #fff !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  box-shadow:
    0 18px 30px rgba(245, 106, 34, 0.22),
    0 8px 0 #d85a1e,
    inset 0 1px 0 rgba(255,255,255,.45) !important;
  text-decoration: none !important;
  transform: translateY(0) !important;
}

.download3d__icon {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: rgba(255,255,255,.18) !important;
  font-size: 24px !important;
}

.hero__right {
  width: 470px !important;
  padding-top: 40px !important;
  display: flex !important;
  justify-content: flex-end !important;
}

.hero__giftCard {
  width: 430px !important;
  padding: 26px 30px 24px !important;
  border-radius: 28px !important;
  background: rgba(255,255,255,.34) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.08) !important;
}

.hero__giftTitle {
  margin-bottom: 14px !important;
  color: #103064 !important;
  font-size: 28px !important;
  line-height: 1.02 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.hero__giftText {
  margin-bottom: 14px !important;
  color: rgba(16, 48, 100, 0.75) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;
}

.hero__giftItem {
  min-height: 28px !important;
  padding-left: 34px !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  color: #163463 !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
}

.hero__giftItem + .hero__giftItem {
  margin-top: 12px !important;
}

.hero__cloud {
  display: none !important;
}
.hero {
  position: relative;
  height: 486px;
  overflow: hidden;
  background: #f2e5d8;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('/template/HeineCMS_redone/assets/img/header.png') center center / cover no-repeat;
  filter: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242,229,216,.72) 0%, rgba(242,229,216,.36) 26%, rgba(242,229,216,.08) 42%, rgba(242,229,216,0) 58%);
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 486px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 62px;
}

.hero__left {
  width: 455px;
  padding-top: 26px;
  margin-left: 8px;
}

.hero__left h1 {
  max-width: 420px;
  margin: 0 0 20px;
  font-size: 48px;
  line-height: .96;
}

.hero__lead {
  max-width: 370px;
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.45;
}

.hero__right {
  width: 405px;
  padding-top: 34px;
  display: flex;
  justify-content: flex-end;
}

.hero__giftCard {
  width: 370px;
  padding: 22px 24px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

.hero__giftTitle {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.02;
}

.hero__giftText {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.5;
}

.hero__cloud {
  display: none;
}
/* ===== HERO FINAL POSITION FIX ===== */

.hero {
  height: 500px !important;
  background: #efe2d7 !important;
}

.hero__bg {
  background: url('/template/HeineCMS_redone/assets/img/header.png') 61% center / cover no-repeat !important;
}

.hero__overlay {
  background:
    linear-gradient(90deg,
      rgba(239,226,215,.92) 0%,
      rgba(239,226,215,.82) 18%,
      rgba(239,226,215,.54) 32%,
      rgba(239,226,215,.18) 46%,
      rgba(239,226,215,0) 58%) !important;
}

.hero__content {
  height: 500px !important;
  padding-top: 58px !important;
}

.hero__left {
  width: 430px !important;
  padding-top: 18px !important;
  margin-left: 0 !important;
}

.hero__left h1 {
  max-width: 390px !important;
  margin: 0 0 18px !important;
  font-size: 44px !important;
  line-height: .94 !important;
}

.hero__lead {
  max-width: 350px !important;
  margin: 0 0 22px !important;
  font-size: 16px !important;
  line-height: 1.42 !important;
}

.download3d {
  min-width: 292px !important;
  height: 70px !important;
  padding: 0 28px !important;
  border-radius: 18px !important;
  font-size: 17px !important;
}

.download3d__icon {
  width: 34px !important;
  height: 34px !important;
  font-size: 18px !important;
}

.hero__right {
  width: 390px !important;
  padding-top: 26px !important;
}

.hero__giftCard {
  width: 360px !important;
  padding: 20px 22px 18px !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.30) !important;
}

.hero__giftTitle {
  font-size: 22px !important;
  line-height: 1.02 !important;
  margin-bottom: 10px !important;
}

.hero__giftText {
  font-size: 12px !important;
  line-height: 1.45 !important;
  margin-bottom: 10px !important;
}

.hero__giftItem {
  font-size: 12px !important;
  line-height: 1.3 !important;
}

.hero__giftItem + .hero__giftItem {
  margin-top: 8px !important;
}
/* ===== HERO TUNE FINAL ===== */

.hero {
  height: 500px !important;
  background: #efe4d9 !important;
}

.hero__bg {
  background: url('/template/HeineCMS_redone/assets/img/header.png') 66% center / cover no-repeat !important;
}

.hero__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(239,228,217,.72) 0%,
      rgba(239,228,217,.56) 16%,
      rgba(239,228,217,.28) 30%,
      rgba(239,228,217,.08) 42%,
      rgba(239,228,217,0) 54%
    ) !important;
}

.hero__content {
  height: 500px !important;
  padding-top: 60px !important;
}

.hero__left {
  width: 420px !important;
  padding-top: 18px !important;
  margin-left: 4px !important;
}

.hero__left h1 {
  max-width: 385px !important;
  margin: 0 0 18px !important;
  font-size: 45px !important;
  line-height: .94 !important;
}

.hero__lead {
  max-width: 345px !important;
  margin: 0 0 22px !important;
  font-size: 16px !important;
  line-height: 1.42 !important;
}

.download3d {
  min-width: 300px !important;
  height: 72px !important;
  padding: 0 30px !important;
  border-radius: 18px !important;
  font-size: 17px !important;
}

.download3d__icon {
  width: 34px !important;
  height: 34px !important;
  font-size: 18px !important;
}

.hero__right {
  width: 380px !important;
  padding-top: 22px !important;
}

.hero__giftCard {
  width: 350px !important;
  padding: 18px 20px 16px !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.26) !important;
}

.hero__giftTitle {
  font-size: 21px !important;
  line-height: 1.02 !important;
  margin-bottom: 10px !important;
}

.hero__giftText {
  font-size: 12px !important;
  line-height: 1.42 !important;
  margin-bottom: 10px !important;
}

.hero__giftItem {
  font-size: 12px !important;
  line-height: 1.3 !important;
}

.hero__giftItem + .hero__giftItem {
  margin-top: 8px !important;
}
/* ===== FULL IMAGE HERO - NO CROP ===== */

.hero {
  position: relative !important;
  height: 500px !important;
  overflow: hidden !important;
  background: #efe4d9 !important;
}

/* фон на всю ширину, чтобы не было пустых боков */
.hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: url('/template/HeineCMS_redone/assets/img/header.png') center center / cover no-repeat !important;
  filter: blur(18px) brightness(1.02) !important;
  transform: scale(1.08) !important;
  opacity: 0.38 !important;
  z-index: 0 !important;
}

/* сама полная картинка целиком */
.hero__bg {
  position: absolute !important;
  inset: 0 !important;
  background: url('/template/HeineCMS_redone/assets/img/header.png') center center / contain no-repeat !important;
  filter: none !important;
  opacity: 1 !important;
  z-index: 1 !important;
}

/* лёгкая подложка под текст слева */
.hero__overlay {
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(
      90deg,
      rgba(239,228,217,.70) 0%,
      rgba(239,228,217,.48) 18%,
      rgba(239,228,217,.18) 34%,
      rgba(239,228,217,0) 52%
    ) !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.hero__content {
  position: relative !important;
  z-index: 3 !important;
  height: 500px !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  padding-top: 58px !important;
}

.hero__left {
  width: 410px !important;
  padding-top: 12px !important;
  margin-left: 0 !important;
}

.hero__left h1 {
  max-width: 370px !important;
  margin: 0 0 16px !important;
  font-size: 42px !important;
  line-height: .93 !important;
}

.hero__lead {
  max-width: 330px !important;
  margin: 0 0 20px !important;
  font-size: 15px !important;
  line-height: 1.38 !important;
}

.download3d {
  min-width: 286px !important;
  height: 68px !important;
  padding: 0 26px !important;
  font-size: 16px !important;
  border-radius: 16px !important;
}

.download3d__icon {
  width: 32px !important;
  height: 32px !important;
  font-size: 17px !important;
}

.hero__right {
  width: 360px !important;
  padding-top: 18px !important;
}

.hero__giftCard {
  width: 336px !important;
  padding: 16px 18px 15px !important;
  border-radius: 14px !important;
  background: rgba(255,255,255,.26) !important;
}

.hero__giftTitle {
  font-size: 19px !important;
  margin-bottom: 8px !important;
}

.hero__giftText {
  font-size: 11px !important;
  line-height: 1.38 !important;
  margin-bottom: 8px !important;
}

.hero__giftItem {
  font-size: 11px !important;
  line-height: 1.25 !important;
  min-height: 22px !important;
  padding-left: 30px !important;
}

.hero__giftItem:before {
  width: 18px !important;
  height: 18px !important;
  top: 1px !important;
}

.hero__cloud {
  display: none !important;
}