:root {
  --shell: 1540px;
  --page-pink: #df1c70;
  --page-blue: #005691;
  --page-blue-deep: #082f49;
  --page-blue-soft: #d7edff;
  --page-blue-soft-alt: #e0f2fe;
  --page-band: #9a0a43;
  --page-paper: #f8f8f8;
  --page-buy-card-bg-image: url("assets/img/logo/bg.png");
  --accord-color-plate: #ffe0ee;
  --accord-color-band: #9a0a43;
  --accord-color-accent: #df1c70;

  --pink: var(--page-pink);
  --blue: var(--page-blue);
  --blue-deep: var(--page-blue-deep);
  --blue-soft: var(--page-blue-soft);
  --blue-soft-alt: var(--page-blue-soft-alt);
  --red-deep: var(--page-band);
  --paper: var(--page-paper);
  --white: #ffffff;
  --text: #363636;
  --text-dark: #0f172a;
  --line: #d4d4d8;
  --line-soft: rgba(15, 23, 42, 0.08);
  --shadow-orb: inset 0 4px 200px rgba(160, 207, 245, 1);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 5px;
  --transition: 0.2s ease;


  /* Typography - new */

  --font-typ-h1: 42px;
  --font-typ-h2: 36px;
  --font-typ-h3: 32px;
  --font-typ-h4: 25px;
  --font-typ-h5: 20px;
  --font-typ-h6: 18px;
  --font-typ-p: 16px;
  --font-typ-p-small: 15px;
  --font-typ-small: 14px;

  --block-padding: 20px;
  --block-padding-small: 20px;

}


/*
    --font-typ-h1: 42px; 80px;
    --font-typ-h2: 36px; 70px;
    --font-typ-h3: 32px; 50px;
    --font-typ-h4: 25px; 40px;
    --font-typ-h5: 20px; 32px;
    --font-typ-h6: 18px; 26px;
    --font-typ-p: 16px; 22px;
    --font-typ-small: 14px; 18px;
    
    --block-padding: 20px; 60px;    
    --block-padding-small: 20px; 30px;    
    */

@media (min-width: 640px) {
  :root {
    --font-typ-h1: 46px;
    --font-typ-h2: 42px;
    --font-typ-h3: 34px;
    --font-typ-h4: 28px;
    --font-typ-h5: 22px;
    --font-typ-h6: 20px;
    --font-typ-p: 18px;
    --font-typ-small: 14px;
    --block-padding: 22px;
    --block-padding-small: 20px;
  }
}

@media (min-width: 768px) {
  :root {
    --font-typ-h1: 52px;
    --font-typ-h2: 46px;
    --font-typ-h3: 36px;
    --font-typ-h4: 30px;
    --font-typ-h5: 24px;
    --font-typ-h6: 22px;
    --font-typ-p: 18px;
    --font-typ-p-small: 16px;
    --font-typ-small: 15px;
    --block-padding: 24px;
    --block-padding-small: 22px;
  }
}

@media (min-width: 1024px) {
  :root {
    --font-typ-h1: 58px;
    --font-typ-h2: 52px;
    --font-typ-h3: 40px;
    --font-typ-h4: 32px;
    --font-typ-h5: 26px;
    --font-typ-h6: 22px;
    --font-typ-p: 19px;
    --font-typ-p-small: 17px;
    --font-typ-small: 16px;
    --block-padding: 30px;
    --block-padding-small: 23px;
  }
}

@media (min-width: 1440px) {
  :root {
    --font-typ-h1: 64px;
    --font-typ-h2: 56px;
    --font-typ-h3: 44px;
    --font-typ-h4: 36px;
    --font-typ-h5: 28px;
    --font-typ-h6: 23px;
    --font-typ-p: 19px;
    --font-typ-p-small: 18px;
    --font-typ-small: 17px;
    --block-padding: 38px;
    --block-padding-small: 24px;
  }
}

@media (min-width: 1640px) {
  :root {
    --font-typ-h1: 72px;
    --font-typ-h2: 62px;
    --font-typ-h3: 46px;
    --font-typ-h4: 38px;
    --font-typ-h5: 31px;
    --font-typ-h6: 24px;
    --font-typ-p: 20px;
    --font-typ-small: 17px;
    --block-padding: 44px;
    --block-padding-small: 25px;
  }
}

@media (min-width: 1920px) {
  :root {
    --font-typ-h1: 80px;
    --font-typ-h2: 70px;
    --font-typ-h3: 50px;
    --font-typ-h4: 40px;
    --font-typ-h5: 32px;
    --font-typ-h6: 26px;
    --font-typ-p: 22px;
    --font-typ-small: 18px;
    --block-padding: 48px;
    --block-padding-small: 27px;
  }
}

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

.brand-inline {
  white-space: nowrap;
}

.brand-sup,
sup {
  display: inline-block;
  margin-left: 0.04em;
  font-size: 0.6em;
  line-height: 1;
  vertical-align: baseline;
  transform: translateY(-0.55em);
  transform-origin: left bottom;
  font-weight: inherit;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;

}

body {
  margin: 0;
  font-family: "Golos Text", sans-serif;
  color: var(--text);
  background: var(--white);
  min-width: 320px;
}

body.mobile-menu-open {
  overflow: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

details>summary {
  list-style: none;
}

details>summary::-webkit-details-marker {
  display: none;
}

.page {
  overflow-x: clip;
  overflow-y: visible;
  background:
    center top / 100% auto no-repeat url("assets/img/home/home-bg.svg"),
    var(--white);
}

.page--accord.page {
  background:
    center top / 100% auto no-repeat url("assets/img/home-accord/home-bg.svg"),
    var(--white);
}

.page {
  --page-shell-gutter: 16px;
}

@media (min-width: 768px) {
  .page {

    --page-shell-gutter: clamp(24px, calc(-120px + 18.75vw), 180px);
    --page-shell-gutter: clamp(24px, calc(-120px + 18vw), 180px);


    --home-main-gap: clamp(88px, calc(53.3333px + 4.5139vw), 140px);
    --home-card-padding-lg: clamp(40px, calc(26.6667px + 1.7361vw), 60px);
    --home-card-padding-md: clamp(28px, calc(20px + 1.0417vw), 40px);
    --home-gap-lg: clamp(28px, calc(14.6667px + 1.7361vw), 48px);
    --home-gap-hero: clamp(32px, calc(20px + 1.5625vw), 50px);
    --home-gap-card: clamp(20px, calc(14.6667px + 0.6944vw), 28px);
    --home-display-gap: clamp(96px, calc(60px + 4.6875vw), 150px);
    --home-card-content-bottom: clamp(88px, calc(73.3333px + 1.9097vw), 110px);
    --home-card-actions-bottom: clamp(24px, calc(20px + 0.5208vw), 30px);
    --home-hero-min-height: clamp(680px, calc(586.6667px + 12.1528vw), calc(100vh - 84px));
    --home-card-min-height: clamp(540px, calc(466.6667px + 9.5486vw), 650px);
    --home-card-visual-height: clamp(560px, calc(500px + 7.8125vw), 650px);
    --home-page-promo-min-height: clamp(620px, calc(544px + 9.8958vw), 734px);
    --home-page-promo-visual-width: clamp(620px,
        calc(517.3333px + 13.3681vw),
        774px);
    --home-page-promo-visual-height: clamp(520px,
        calc(452px + 8.8542vw),
        622px);
    --home-intro-media-height: clamp(560px,
        calc(466.6667px + 12.1528vw),
        700px);
    --home-spotlight-media-width: clamp(560px,
        calc(426.6667px + 17.3611vw),
        760px);
    --home-hero-media-width: clamp(600px, calc(476.6667px + 16.059vw), 785px);
    --home-band-padding: clamp(84px, calc(66.6667px + 2.2569vw), 110px);
    --home-pack-top: clamp(24px, calc(13.3333px + 1.3889vw), 40px);
    --home-pack-width: clamp(140px, calc(72.6667px + 8.7674vw), 241px);
    --home-round-media-size: clamp(176px, calc(153.3333px + 2.9514vw), 210px);
    --home-circle-boy-size: clamp(176px, calc(154.6667px + 2.7778vw), 208px);
    --home-circle-ear-size: clamp(210px, calc(186px + 3.125vw), 246px);
    --home-instruction-pack-size: 300px;
  }
}

.shell {
  width: min(calc(100% - (var(--page-shell-gutter, 24px) * 2)), var(--shell));
  margin: 0 auto;
}

.main {
  display: flex;
  flex-direction: column;
  gap: calc(2 * var(--block-padding));
  ;
  padding-bottom: var(--home-main-gap, clamp(70px, 7.5vw, 140px));
}

.section-anchor {
  scroll-margin-top: 110px;
}

.brand-lockup,
.page--accord .accord-product-lockup,
.page--accord .accord-usage-lockup {
  display: inline-flex;
  align-items: flex-end;
  line-height: 1.4;
  width: 3.1em !important;
  font-size: var(--font-typ-h2) !important;
  transform: translateY(-0.2em);
}

.page--accord .brand-lockup,
.page--accord .accord-product-lockup,
.page--accord .accord-usage-lockup,
.page--accord footer .brand-lockup,
.brand-lockup.accord-page-promo-logo {
  width: 5.9em !important;
  transform: translateY(0.2em)
}

.header .brand-lockup,
footer .brand-lockup,
.page--accord footer .brand-lockup {
  font-size: var(--font-typ-h3) !important;
  height: 45px !important;
  display: flex;
  align-items: center;
}

.page--accord .header .brand-lockup {
  height: 50px !important;
  margin-bottom: -5px;
}

.brand-lockup img {
  width: 100% !important;
  height: auto;
}

.brand-lockup--inverse img {
  filter: brightness(0) invert(1);
}

.header .brand-lockup {
  transform: translateY(0);

}

.overview .intro-card .brand-lockup {
  transform: translateY(0);
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 64px;
  padding: 16px 24px;
  border: 0;
  border-radius: var(--radius-xs);
  font-size: var(--font-typ-p) !important;
  line-height: 1.4;
  font-weight: 600;
  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition);
  /*max-width: 220px;*/
  max-width: 12em !important;
  height: 2.9em !important;
  min-height: initial !important;
}

.instruction-actions .button {
  max-width: 15em !important;
}

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

.button svg path,
.inline-link svg path {
  stroke: currentColor;
  transition: stroke var(--transition);
}

.button--primary {
  background: var(--pink);
  color: var(--white);
}

.button--primary:hover {
  background: var(--white);
  color: var(--pink);
}

.button--secondary {
  background: var(--white);
  color: var(--text);
}

.button--secondary:hover {
  background: var(--pink);
  color: var(--white);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: var(--font-typ-p) !important;
  line-height: 1.4;
  font-weight: 600;
  color: var(--blue);
  transition:
    color var(--transition),
    transform var(--transition);
}

.inline-link:hover {
  color: var(--pink);
  transform: translateY(-1px);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--block-padding-small) !important;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  gap: 0;
  flex-wrap: wrap;
  font-size: var(--font-typ-h2) !important;
}


.section-head-row--split {
  justify-content: space-between;
  align-items: center;
}

.section-head-row--accord-title {
  align-items: baseline;
  gap: 28px;
  flex-wrap: nowrap;
}

.section-head-title {
  margin: 0;
  color: var(--pink);
  font-size: var(--font-typ-h2) !important;
  line-height: 1.2;
  font-weight: 600;

}

.section-head--inverse .section-head-title {
  color: var(--white);
}

.section-head-line {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.section-head--inverse .section-head-line {
  background: rgba(255, 255, 255, 0.16);
}

.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.bullet-list li {
  position: relative;
  padding-left: 18px;
  font-size: var(--font-typ-p) !important;
  line-height: 1.4;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 6px;
  height: 3px;
  border-radius: 20px 0 20px 0;
  background: var(--pink);
}

.header {
  padding: 20px 0;
  padding: 12px 0 10px 0;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line-soft);
}

/*
.page--accord .header {
  padding-top: 0px;
  padding-bottom: 0px;
}
  */

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav,
.header-inner>div[class^="menu-"][class$="-container"] {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
}

/*
.page--accord .nav,*/
.header-inner>div[class^="menu-"][class$="-container"] {
  padding-bottom: 20px;
}

.nav .menu,
.header-inner>div[class^="menu-"][class$="-container"]>.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav .menu>.menu-item,
.header-inner>div[class^="menu-"][class$="-container"]>.menu>.menu-item {
  position: relative;
}

.nav .menu>.menu-item.menu-item-has-children::before,
.header-inner>div[class^="menu-"][class$="-container"]>.menu>.menu-item.menu-item-has-children::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: max(100%, 260px);
  height: 16px;
}

.nav .menu>.menu-item>a,
.header-inner>div[class^="menu-"][class$="-container"]>.menu>.menu-item>a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: var(--font-typ-p) !important;
  line-height: 1.5;
  font-weight: 400;
  transition: color var(--transition);
}

@media (max-width: 1300px) and (min-width: 1024px){

  .nav .menu>.menu-item>a,
  .header-inner>div[class^="menu-"][class$="-container"]>.menu>.menu-item>a {
    font-size: var(--font-typ-p-small) !important;

  }
}

.nav .menu>.menu-item>a:hover,
.nav .menu>.menu-item.current-menu-item>a,
.nav .menu>.menu-item.current-menu-parent>a,
.nav .menu>.menu-item.current-menu-ancestor>a,
.nav .menu>.menu-item.is-active>a,
.header-inner>div[class^="menu-"][class$="-container"]>.menu>.menu-item>a:hover,
.header-inner>div[class^="menu-"][class$="-container"]>.menu>.menu-item.current-menu-item>a,
.header-inner>div[class^="menu-"][class$="-container"]>.menu>.menu-item.current-menu-parent>a,
.header-inner>div[class^="menu-"][class$="-container"]>.menu>.menu-item.current-menu-ancestor>a,
.header-inner>div[class^="menu-"][class$="-container"]>.menu>.menu-item.is-active>a {
  color: var(--pink);
}

.nav .menu>.menu-item.menu-item-has-children>a::after,
.header-inner>div[class^="menu-"][class$="-container"]>.menu>.menu-item.menu-item-has-children>a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition);
}

.nav .menu>.menu-item.menu-item-has-children:hover>a::after,
.nav .menu>.menu-item.menu-item-has-children:focus-within>a::after,
.header-inner>div[class^="menu-"][class$="-container"]>.menu>.menu-item.menu-item-has-children:hover>a::after,
.header-inner>div[class^="menu-"][class$="-container"]>.menu>.menu-item.menu-item-has-children:focus-within>a::after {
  margin-top: 4px;
  transform: rotate(-135deg);
}

.nav .menu .sub-menu,
.header-inner>div[class^="menu-"][class$="-container"]>.menu .sub-menu {
  position: absolute;
  right: calc(-1 * var(--block-padding));
  top: calc(100% + 16px);
  min-width: 260px;
  padding: 14px;
  margin: 0;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  list-style: none;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(2, 18, 36, 0.12);
  display: grid;
  gap: 10px;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
  white-space: nowrap;
}

.nav .menu>.menu-item.menu-item-has-children:hover>.sub-menu,
.nav .menu>.menu-item.menu-item-has-children:focus-within>.sub-menu,
.header-inner>div[class^="menu-"][class$="-container"]>.menu>.menu-item.menu-item-has-children:hover>.sub-menu,
.header-inner>div[class^="menu-"][class$="-container"]>.menu>.menu-item.menu-item-has-children:focus-within>.sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav .menu .sub-menu a,
.header-inner>div[class^="menu-"][class$="-container"]>.menu .sub-menu a {
  font-size: var(--font-typ-p) !important;
  line-height: 1.4;
  color: var(--text);
  transition: color var(--transition);
}

.nav .menu .sub-menu a:hover,
.nav .menu .sub-menu .current-menu-item>a,
.header-inner>div[class^="menu-"][class$="-container"]>.menu .sub-menu a:hover,
.header-inner>div[class^="menu-"][class$="-container"]>.menu .sub-menu .current-menu-item>a {
  color: var(--pink);
}

.nav-link,
.nav-dropdown>summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: var(--font-typ-p) !important;
  line-height: 1.5;
  font-weight: 400;
  cursor: pointer;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-dropdown>summary:hover,
.nav-dropdown[open]>summary {
  color: var(--blue);
}

.nav-link.is-active {
  color: var(--pink);
  font-weight: 600;
}

.nav-dropdown {
  position: relative;
}

.nav-chevron {
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition);
}

.nav-dropdown[open] .nav-chevron {
  margin-top: 4px;
  transform: rotate(-135deg);
}

.nav-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 16px);
  min-width: 260px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(2, 18, 36, 0.12);
  display: grid;
  gap: 10px;
  z-index: 20;
}

.nav-menu a {
  font-size: var(--font-typ-p) !important;
  line-height: 1.4;
  color: var(--text);
  transition: color var(--transition);
}

.nav-menu a:hover {
  color: var(--pink);
}

.burger {
  display: none;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
}

.burger::before,
.burger::after,
.burger-line {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.burger:focus-visible,
.mobile-close:focus-visible,
.mobile-menu-toggle:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

.overlay[hidden],
.mobile-menu[hidden] {
  display: none !important;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 34;
  background: rgba(64, 64, 64, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 35;
  display: block;
  width: 100%;
  height: 100dvh;
  padding: 0 0 56px;
  background: var(--white);
  box-shadow: none;
  transform: translateX(-100%);
  transition: transform var(--transition);
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 77px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-brand {
  display: inline-flex;
  align-items: center;
  color: var(--pink);
  text-decoration: none;
}

.mobile-menu-brand-mark {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  line-height: 1;
}

.mobile-menu-brand-bar {
  display: block;
  flex: none;
  background: currentColor;
  border-radius: 999px;
}

.mobile-menu-brand-bar--1 {
  width: 16px;
  height: 20px;
}

.mobile-menu-brand-bar--2 {
  width: 12px;
  height: 32px;
}

.mobile-menu-brand-bar--3 {
  width: 8px;
  height: 20px;
}

.mobile-menu-brand-reg {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  min-width: 12px;
  font-size: var(--font-typ-h3) !important;
  line-height: 1;
  font-weight: 500;
  transform: translateY(2px);
}

.mobile-menu-list.menu {
  width: min(calc(100% - 32px), 320px);
  margin: 56px auto 0;
  display: grid;
  gap: 24px;
  padding: 0;
  list-style: none;
}

.mobile-menu-list>.menu-item {
  border-bottom: 0;
}

.mobile-menu-list>.menu-item.menu-item-has-children {
  display: grid;
  gap: 20px;
}

.mobile-menu-list>.menu-item.menu-item-has-children>a {
  display: none;
}

.mobile-menu-list>.menu-item>a,
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: var(--font-typ-p) !important;
  line-height: 24px;
  font-weight: 600;
  text-align: left;
}

.mobile-menu-list>.menu-item>a:hover,
.mobile-menu-toggle:hover,
.mobile-menu-list>.menu-item.current-menu-item>a,
.mobile-menu-list>.menu-item.current-menu-parent>a,
.mobile-menu-list>.menu-item.current-menu-parent>.mobile-menu-toggle,
.mobile-menu-list>.menu-item.current-menu-ancestor>a,
.mobile-menu-list>.menu-item.current-menu-ancestor>.mobile-menu-toggle {
  color: var(--pink);
}

.mobile-menu-toggle.is-open {
  color: var(--pink);
}

.mobile-menu-toggle::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 16px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  flex: none;
  transform: rotate(45deg);
  transition: transform var(--transition);
}

.mobile-menu-toggle.is-open::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.mobile-menu .sub-menu[hidden] {
  display: none !important;
}

.mobile-menu-list .sub-menu {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mobile-menu-list .sub-menu .menu-item>a {
  display: block;
  padding: 0;
  color: var(--text);
  font-size: var(--font-typ-p) !important;
  line-height: 24px;
}

.mobile-menu-list .sub-menu .menu-item>a:hover,
.mobile-menu-list .sub-menu .menu-item.current-menu-item>a {
  color: var(--pink);
}

.mobile-close {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition:
    color var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.mobile-close::before,
.mobile-close::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-close:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.mobile-close::before {
  transform: rotate(45deg);
}

.mobile-close::after {
  transform: rotate(-45deg);
}

.header-mobile-nav {
  display: none;
  position: relative;
}

.header-mobile-nav[open]::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(64, 64, 64, 0.5);
  z-index: 34;
}

.header-mobile-nav>summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 5px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  list-style: none;
  z-index: 41;
}

.header-mobile-icon {
  position: relative;
  width: 20px;
  height: 20px;
  background: linear-gradient(currentColor 0 0) center / 20px 2px no-repeat;
  color: var(--text);
}

.header-mobile-icon::before,
.header-mobile-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.header-mobile-icon::before {
  top: 3px;
}

.header-mobile-icon::after {
  bottom: 3px;
}

.header-mobile-nav[open] .header-mobile-icon {
  background: none;
}

.header-mobile-nav[open] .header-mobile-icon::before {
  top: 9px;
  transform: rotate(45deg);
}

.header-mobile-nav[open] .header-mobile-icon::after {
  bottom: 9px;
  transform: rotate(-45deg);
}

.header-mobile-menu {
  position: fixed;
  inset: 0 0 auto 0;
  max-height: 100vh;
  padding-bottom: 40px;
  background: var(--white);
  overflow-y: auto;
  z-index: 35;
  box-shadow: 0 24px 80px rgba(2, 18, 36, 0.18);
}

.header-mobile-menu-top {
  display: flex;
  align-items: center;
  min-height: 77px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.header-mobile-brand {
  display: inline-flex;
  line-height: 0;
}

.header-mobile-brand img {
  width: 167px;
  height: auto;
}

.header-mobile-menu-body {
  width: min(calc(100% - 32px), 320px);
  margin: 56px auto 0;
  display: grid;
  gap: 25px;
}

.header-mobile-link {
  color: var(--text);
  font-size: var(--font-typ-p) !important;
  line-height: 24px;
  font-weight: 600;
}

.header-mobile-link--accent {
  color: var(--pink);
}

.header-mobile-link:hover {
  color: var(--blue);
}

.header-mobile-group {
  display: grid;
}

.header-mobile-group>summary {
  list-style: none;
}

.header-mobile-group>summary::-webkit-details-marker {
  display: none;
}

.header-mobile-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.header-mobile-group-arrow {
  position: relative;
  width: 24px;
  height: 24px;
  color: var(--pink);
  flex: 0 0 auto;
}

.header-mobile-group-arrow::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition);
}

.header-mobile-group[open] .header-mobile-group-arrow::before {
  transform: rotate(-135deg);
}

.header-mobile-submenu {
  display: grid;
  gap: 14px;
  padding-top: 4px;
}

.header-mobile-sublink {
  display: block;
  color: var(--text);
  font-size: var(--font-typ-p) !important;
  line-height: 24px;
}

.header-mobile-sublink:hover {
  color: var(--pink);
}

.nav-dropdown>summary.is-active,
.nav-dropdown[open]>summary.is-active {
  color: var(--pink);
  font-weight: 600;
}

.instruction-page {
  display: grid;
  gap: 64px;
  padding-top: 16px;
}

.instruction-page-head {
  display: grid;
  gap: 40px;
}

.breadcrumbs {
  display: block;
  gap: 14px;
  color: var(--text);
  font-size: var(--font-typ-small) !important;
  line-height: 1.56;
}

.breadcrumbs a,
.breadcrumbs-link {
  transition: color var(--transition);
}

.breadcrumbs a:hover,
.breadcrumbs-link:hover {
  color: var(--pink);
}

.breadcrumbs-separator,
.breadcrumbs-current,
.breadcrumb_last {
  opacity: 0.5;
}

.page-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.4em;
  font-size: var(--font-typ-h2);
}

.page-title {
  margin: 0;
  color: var(--pink);
  font-size: var(--font-typ-h2) !important;
  font-weight: 600;
}



.articles-page {
  display: grid;
  gap: 64px;
  padding-top: 16px;
}

.articles-page-head {
  display: grid;
  gap: 40px;
}

.articles-page-body {
  display: grid;
  gap: 48px;
}

.articles-page-grid {
  width: 100%;
}

.articles-page .article-card {
  min-height: 581px;
}

.articles-page-actions {
  display: flex;
  justify-content: center;
}

.articles-page-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 64px;
  padding: 16px 24px;
  border: 0;
  border-radius: var(--radius-xs);
  background: var(--paper);
  color: var(--text);
  font-size: var(--font-typ-p) !important;
  line-height: 1.6;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color var(--transition),
    transform var(--transition);
}

.articles-page-more:hover {
  transform: translateY(-1px);
}

.articles-page-more svg {
  flex: 0 0 auto;
}

.contacts-page {
  display: grid;
  gap: 64px;
  padding-top: 16px;
}

.contacts-page-head {
  display: grid;
  gap: 40px;
}

.contacts-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--block-padding);
  align-items: stretch;
}

.contacts-card {
  display: grid;
  justify-content: space-between;
  gap: calc(0.6 * var(--block-padding-small));
  padding: var(--block-padding-small) !important;
  border-radius: var(--radius);
  background: var(--paper);
}

.contacts-card .brand-lockup {
  font-size: var(--font-typ-h4) !important;
  transform: translateY(0);
}

.contacts-card .instruction-header-brand--accord {
  display: flex !important;
  width: 5.6em !important;
  align-items: flex-start;
}

.contacts-card-primary {
  display: grid;
  gap: calc(0.6 * var(--block-padding-small));
}


.contacts-detailes {
  display: grid;
  gap: calc(0.6 * var(--block-padding-small));
}

@media (min-width: 768px) {
  .contacts-detailes {
    grid-template-columns: 1fr 1fr;
    margin-top: auto;
  }

  .contacts-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1181px) {
  .contacts-card .instruction-header-brand--accord {
    margin-bottom: -0.7em;
  }
}

.contacts-detail {
  display: grid;
  gap: 0;
}

.contacts-card-primary span {
  white-space: nowrap;
}

.contacts-detail-label {
  opacity: 0.6;
  color: var(--text);
  font-size: var(--font-typ-small) !important;
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: 0;
}

.contacts-detail-value {
  margin: 0;
  color: var(--text);
  font-size: calc(0.9 * var(--font-typ-small)) !important;
  line-height: 1.5;
  font-weight: 500;
}

.contacts-detail--small .contacts-detail-value {
  font-size: var(--font-typ-p) !important;
  line-height: 1.4;
  font-weight: 400;
}

.contacts-card-secondary {
  display: grid;
  gap: 48px;
}

.contacts-card-divider {
  width: 100%;
  height: 1px;
  background: rgba(15, 23, 42, 0.12);
}

.contacts-card-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 40px 80px;
}

.contacts-map-card {
  position: relative;
  overflow: hidden;
  min-height: 657px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(0, 86, 145, 0.06), rgba(0, 86, 145, 0.06)),
    var(--blue-soft);
}

.contacts-map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.contacts-map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.contacts-feedback {
  width: 100%;
  padding: 144px 0;
  background: var(--blue);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.contacts-feedback-inner {
  display: grid;
  grid-template-columns: 569px minmax(0, 757px);
  justify-content: space-between;
  gap: 40px 32px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contacts-feedback-copy {
  display: grid;
  gap: 28px;
}

.contacts-feedback-title {
  margin: 0;
  color: var(--white);
  font-size: var(--font-typ-h2) !important;
  line-height: 1.2;
  font-weight: 600;
}

.contacts-feedback-text {
  margin: 0;
  color: var(--white);
  font-size: var(--font-typ-h5) !important;
  line-height: 1.3;
  font-weight: 600;
}

.contacts-feedback-form {
  display: grid;
  gap: 28px;
}

.contacts-feedback-fields {
  display: grid;
  gap: 20px;
}

.contacts-feedback-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contacts-feedback-field {
  display: flex;
}

.contacts-feedback-input {
  width: 100%;
  min-height: 64px;
  padding: 16px 24px;
  border: 0;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: var(--font-typ-p) !important;
  line-height: 1.5;
  backdrop-filter: blur(6px);
  outline: none;
  transition:
    background-color var(--transition),
    box-shadow var(--transition);
}

.contacts-feedback-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contacts-feedback-input:hover,
.contacts-feedback-input:focus {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.contacts-feedback-textarea {
  min-height: 144px;
  resize: vertical;
}

.contacts-feedback-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.contacts-feedback-submit {
  color: var(--blue);
  gap: 0;
}

.contacts-feedback-consent {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 320px;
  cursor: pointer;
}

.contacts-feedback-consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contacts-feedback-check {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 4px;
  background: var(--white);
}

.contacts-feedback-check::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 10px;
  height: 6px;
  border-left: 2.5px solid var(--blue);
  border-bottom: 2.5px solid var(--blue);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contacts-feedback-consent input:not(:checked)+.contacts-feedback-check::after {
  opacity: 0;
}

.contacts-feedback-consent-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-typ-small) !important;
  line-height: 1.5;
}

.contacts-feedback-consent-text a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-page {
  display: grid;
  gap: 48px;
  padding-top: 16px;
}

.article-page-head {
  display: grid;
  gap: 40px;
}

.article-page-content {
  display: grid;
  gap: 96px;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
}

.article-hero-section {
  display: grid;
  gap: 48px;
}

.article-hero-copy {
  display: grid;
  gap: 28px;
}

.article-hero-title {
  margin: 0;
  color: var(--pink);
  font-size: var(--font-typ-h2) !important;
  line-height: 1.1;
  font-weight: 600;
}

.article-page .article-hero-title {
  width: auto;
  max-width: none;
  text-wrap: balance;
}

.article-hero-lead {
  margin: 0;
  color: var(--text);
  font-size: var(--font-typ-p);
  line-height: 1.5;
}

.article-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  border-radius: var(--radius);
  background: var(--blue-soft);
}

.article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-sections {
  display: grid;
  gap: 56px;
}

.article-section {
  display: grid;
  gap: 40px;
}

.article-section-plain {
  display: grid;
  gap: 24px;
}

.article-section-plain>* {
  margin: 0;
}

.article-section-plain :where(h2, h3) {
  color: var(--text);
  font-weight: 600;
}

.article-section-plain h2 {
  font-size: var(--font-typ-h4);
  line-height: 1.2;
}

.article-section-plain h3 {
  font-size: var(--font-typ-h5);
  line-height: 1.3;
}

.article-section-plain :where(p, ul, ol) {
  color: var(--text);
  font-size: var(--font-typ-p-small);
  line-height: 1.5;
}

.article-section-plain ul,
.article-section-plain ol {
  display: grid;
  gap: 14px;
  padding-left: 1.4em;
}

.article-section-plain li::marker {
  color: var(--pink);
}

.article-section-plain a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-section-plain img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.article-section-title,
.article-section-subtitle,
.article-comparison-title {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.article-section-title {
  font-size: var(--font-typ-h2);
  line-height: 1.2;
}

.article-section-subtitle,
.article-comparison-title {
  font-size: var(-font-typ-h4);
  line-height: 1.2;
}

.article-rich-text {
  display: grid;
  gap: 24px;
}

.article-rich-text p {
  margin: 0;
  color: var(--text);
  font-size: var(--font-typ-p);
  line-height: 1.5;
}

.article-factors {
  display: grid;
  gap: 20px;
  max-width: 493px;
}

.article-factors-title {
  margin: 0;
  color: var(--text);
  font-size: var(--font-typ-h6);
  line-height: 1.4;
  font-weight: 500;
}

.article-bullet-list {
  gap: 14px;
}

.article-bullet-list li {
  font-size: var(--font-typ-p);
  line-height: 1.5;
}

.article-note {
  display: grid;
  gap: 14px;
  padding: 40px;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--blue);
}

.article-note strong {
  font-size: var(--font-typ-h5);
  line-height: 1.3;
  font-weight: 500;
}

.article-note p {
  margin: 0;
  font-size: var(--font-typ-h6);
  line-height: 1.4;
}

.article-comparison {
  display: grid;
  gap: 40px;
}

.article-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.article-table {
  display: grid;
  gap: 24px;
  min-width: 1016px;
}

.article-table-head,
.article-table-row {
  display: grid;
  grid-template-columns: 288px minmax(0, 1fr) minmax(0, 1fr) 176px;
  gap: 20px;
  align-items: center;
}

.article-table-head {
  padding: 0 28px;
  color: rgba(54, 54, 54, 0.7);
  font-size: var(--font-typ-small);
  line-height: 1.5;
}

.article-table-body {
  display: grid;
  gap: 10px;
}

.article-table-row {
  padding: 20px 28px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--text);
  font-size: var(--font-typ-p);
  line-height: 1.5;
  white-space: nowrap;
}

.article-table-cell {
  min-width: 0;
}

.article-table-cell-label,
.article-table-cell-line {
  display: none;
}

.article-table-cell-value {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.instruction-download-button {
  color: var(--blue);
}

.buy-head-link {
  width: auto;
}

.page-promo-card.page-promo-card {
  padding: calc(2 * var(--block-padding)) 0 0 var(--block-padding) !important;
  background: var(--blue-soft);
  min-height: auto;
}

.page-promo-card .intro-card-content {
  padding-bottom: var(--block-padding);
  max-width: 600px;
  gap: var(--home-display-gap, 150px);
  gap: 50px;
  min-height: auto;
}

.page-promo-card .intro-card-content-top {
  gap: 0;
}

.page-promo-card-copy {
  display: grid;
  gap: var(--home-gap-lg, 48px);
}

.page-promo-card-copy-top {
  display: grid;
  gap: 20px;
  padding-right: var(--block-padding);
}

.page-promo-card .intro-card-title {
  min-width: 0;
  max-width: 706px;
  line-height: 1.3;
  font-size: var(--font-typ-h5) !important;
}

.page-promo-card .intro-card-text {
  margin-top: 0;
  max-width: 706px;
  color: var(--blue);
  font-size: var(--font-typ-h6) !important;
  line-height: 1.4;
}

.page-promo-card .button {
  width: 208px;
  justify-content: flex-start;
}

.page-promo-card .intro-card-visual {
  right: 0;
  position: absolute;
  width: 100%;
  height: var(--home-page-promo-visual-height, 622px);
  text-align: right;
}

.page-promo-card .intro-card-visual:before {
  display: none !important;
}

.page-promo-card .intro-card-visual:after {
  display: none !important;
}

.page-promo-card .intro-card-visual img {
  right: 0;
  bottom: 0;
  width: auto;
  height: 70%;
  z-index: 1;
  top: auto;
}

.page-promo-card-nav {
  position: absolute;
  bottom: var(--home-card-padding-lg, 60px);
  right: var(--home-card-padding-lg, 60px);
  z-index: 3;
  display: flex;
  width: max-content;
  gap: 10px;
}

.page-promo-card-nav-button {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xs);
  background: var(--blue);
}

.page-promo-card-nav-button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
}

.page-promo-card-nav-button--prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.page-promo-card-nav-button--next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

.hero {
  position: relative;
  min-height: var(--home-hero-min-height, 820px);
  min-height: initial !important;
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
}

.hero-accord {
  position: relative;
  background: var(--red-deep);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat url("assets/img/home/hero-bg-main.png");
  opacity: 0.6;
  z-index: 0;
}

.hero-accord::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat url("assets/img/home/hero-bg.png");
  opacity: 0.6;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 800fr) minmax(0, 600fr);
  gap: 0px;
  min-height: var(--home-hero-min-height, 820px);
  min-height: initial !important;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--block-padding);
  width: 100%;
  padding: calc(1.5 * var(--block-padding)) 0 calc(1 * var(--block-padding)) 0 !important;
}

.hero-title {
  margin: 0;
  width: 100%;
  max-width: none;
  font-size: var(--font-typ-h1) !important;
  line-height: 1.1;
  font-weight: 600;
}

.hero-text {
  display: grid;
  gap: 2em;
  width: 100%;
  max-width: none;
}

.hero-text p {
  margin: 0;
  width: 100%;
  max-width: 670px;
  font-size: var(--font-typ-h6) !important;
  line-height: 1.4;
  font-weight: 200;
}

.hero-text p strong {
  font-weight: 400;
}

.hero-text p strong.hero-text--strong {
  font-weight: 500;
}

.hero-accord .hero-copy-main {
  display: grid;
  gap: var(--block-padding-small);
  width: 100%;
}

.hero-accord .hero-signal-group {
  display: grid;
  gap: calc(var(--block-padding-small) / 2);
  width: 100%;
  max-width: 760px;
}

.hero-accord .hero-signal-title {
  margin: 0;
  color: var(--white);
  font-size: var(--font-typ-h5) !important;
  line-height: 1.33;
  font-weight: 600;
}

.hero-accord .hero-signal-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.2em;
}

.hero-accord .hero-signal-list li {
  position: relative;
  padding-left: 18px;
  color: var(--white);
  font-size: var(--font-typ-h6) !important;
  line-height: 1.5;
  font-weight: 400;
}

.hero-accord .hero-signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 6px;
  height: 3px;
  border-radius: 20px 0 20px 0;
  background: var(--accord-color-signal);
}

.hero-media {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: end;
  width: min(100%, var(--home-hero-media-width, 785px));
  height: auto;
  aspect-ratio: 773/614;
  margin-bottom: calc(1 * var(--block-padding)) !important;
}

@media (min-width: 900px) {
  .hero-media {
    max-width: 50vh;
  }
}

@media (min-width: 1280px) {
  .page-template-main .hero-media {
    max-width: 460px;
  }
}

@media (min-width: 1440px) {
  .page-template-main .hero-media {
    max-width: 500px;
  }
}

@media (min-width: 1640px) {
  .page-template-main .hero-media {
    max-width: 550px;
  }
}

@media (min-width: 1700px) {
  .page-template-main .hero-media {
    max-width: 600px;
  }
}

@media (min-width: 1800px) {
  .page-template-main .hero-media {
    max-width: 650px;
  }
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-shadow {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  background: rgba(8, 47, 73, 0.92);
  filter: blur(32px);
}

.hero-shadow--small {
  right: calc((100vw - min(calc(100% - (var(--page-shell-gutter, 24px) * 2)), var(--shell))) / 2 + 162px);
  bottom: 95px;
  width: 562px;
  height: 96px;
}

.hero-shadow--large {
  right: calc((100vw - min(calc(100% - (var(--page-shell-gutter, 24px) * 2)), var(--shell))) / 2 + 148px);
  bottom: 119px;
  width: 671px;
  height: 112px;
}

.overview {
  display: flex;
  flex-direction: column;
  gap: calc(2 * var(--block-padding));
}

.intro-card,
.spotlight-card {
  position: relative;
  min-height: var(--home-card-min-height, 650px);
  padding: var(--block-padding) 0 0 var(--block-padding) !important;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  background-color: var(--paper);
}

.buy-page .intro-card {
  margin-top: 70px;
  margin-bottom: 70px;
}

.page-promo-card .intro-card {
  background: var(--blue-soft);
}

.intro-card-content,
.spotlight-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--block-padding);
  max-width: 695px;
  min-height: 100%;
}

.overview>.intro-card .intro-card-content {
  width: min(100%, calc(100% - 560px));
  max-width: none;
  padding-right: 40px;
}

.intro-card-content-top,
.spotlight-card-content-top {
  display: grid;
  gap: var(--home-gap-card, 28px);
}

.intro-card-title {
  margin: 0;
  color: var(--blue);
  font-size: var(--font-typ-h5) !important;
  line-height: 1.3;
  font-weight: 600;
  min-width: 862px;
}

.overview>.intro-card .intro-card-title {
  width: 100%;
  min-width: 0;
  max-width: none;
}

.intro-card-text {
  margin: 0;
  margin-top: auto;
  max-width: 695px;
  font-size: var(--font-typ-h6) !important;
  line-height: 1.4;
}

.overview>.intro-card .intro-card-text {
  width: 100%;
  max-width: none;
  margin-bottom: 60px;
}

.intro-card-visual {
  position: absolute;
  bottom: -12px;
  width: 100%;
  height: var(--home-card-visual-height, 650px);
  transform: translateY(-12px);
}

.spotlight-card-visual {
  position: absolute;
  width: 100%;
  height: var(--home-card-visual-height, 650px);
  transform: translateY(-12px);
}

.intro-card-visual::before,
.intro-card-visual::after,
.spotlight-card-visual::before,
.spotlight-card-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.intro-card-visual::before {
  left: 0;
}

.intro-card-visual::after {
  left: 66px;
}

.spotlight-card-visual::before {
  left: 85px;
}

.spotlight-card-visual::after {
  left: 151px;
}

.intro-card-visual img {
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  height: var(--home-intro-media-height, 700px);
  object-fit: contain;
}

.spotlight-card-visual img {
  position: absolute;
  right: 0;
  top: 0px;
  width: var(--home-spotlight-media-width, 760px);
  object-fit: contain;
  object-position: right bottom;
}

.intro-card-actions,
.spotlight-card-actions {
  position: absolute;
  right: var(--block-padding);
  bottom: var(--block-padding);
  z-index: 3;
}

.spotlight-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 436px);
  gap: 10px;
  bottom: var(--block-padding);
}

.spotlight-card-actions .button {
  width: 100%;
  justify-content: center;
}

.how {
  display: grid;
  gap: var(--block-padding-small) !important;
}

.how-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--block-padding-small) !important;
  align-items: center;
}

.how-list {
  display: grid;
  gap: var(--block-padding-small) !important;
  height: 100%;
}

.how-card {
  padding: var(--block-padding-small) !important;
  border-radius: var(--radius);
  background: var(--blue-soft);
  font-size: var(--font-typ-h6) !important;
  line-height: 1.4;
  max-height: 168px;
  display: flex;
  align-items: center;
}

.how-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 886 / 564;
  max-height: 572px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  max-height: 50vh;
}

.how-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  max-height: 572px;
}

.how-ring,
.how-dot {
  position: absolute;
  border-radius: 50%;
}

.how-ring--one {
  left: 209px;
  top: 113px;
  width: 320px;
  height: 320px;
  background: rgba(223, 28, 112, 0.2);
}

.how-ring--two {
  left: 260px;
  top: 164px;
  width: 208px;
  height: 208px;
  background: rgba(223, 28, 112, 0.2);
}

.how-ring--three {
  left: 303px;
  top: 207px;
  width: 112px;
  height: 112px;
  background: rgba(223, 28, 112, 0.2);
}

.how-dot {
  left: 353px;
  top: 257px;
  width: 20px;
  height: 20px;
  background: var(--pink);
  border: 2px solid var(--white);
}

.benefits-band {
  padding: calc(1.5 * var(--block-padding)) 0;
  background: var(--blue);
  overflow: hidden;
}

.benefits-band-inner {
  display: grid;
  gap: var(--block-padding-small);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--block-padding-small);
  ;
}

.benefits-grid>.feature-card:nth-child(1),
.benefits-grid>.feature-card:nth-child(4) {
  flex: 0 0 calc((100% / 5 * 2) - var(--block-padding-small));
}

.benefits-grid>.feature-card:nth-child(2),
.benefits-grid>.feature-card:nth-child(3) {
  flex: 0 0 calc(100% / 5 * 3);
}

.feature-card {
  position: relative;
  padding: var(--block-padding-small);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-card--soft {
  background: var(--blue-soft);
  color: var(--blue);
}

.feature-card--white {
  background: var(--white);
  color: var(--blue);
}

.feature-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--block-padding-small);
  min-width: 0;
  max-width: 420px;
}

.benefits-grid>.feature-card:nth-child(1) .feature-card-content {
  width: min(100%, calc(100% - 280px));
  max-width: none;
}

.benefits-grid>.feature-card:nth-child(2) .feature-card-content,
.benefits-grid>.feature-card:nth-child(3) .feature-card-content {
  width: min(100%, calc(100% - 310px));
  max-width: none;
}

.feature-card-title {
  margin: 0;
  font-size: var(--font-typ-h5) !important;
  line-height: 1.25;
  font-weight: 600;
}

.feature-card-text {
  margin: 0;
  font-size: var(--font-typ-p) !important;
  line-height: 1.4;
}

.feature-card-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.feature-card-media--packs img {
  position: absolute;
  right: 20px;
  top: var(--home-pack-top, 40px);
  width: var(--home-pack-width, 241px);
  height: auto;
  object-fit: contain;
}

.feature-card-media--boy::before {
  width: var(--home-circle-boy-size, 208px);
  height: var(--home-circle-boy-size, 208px);
}

.feature-card-media--boy img {
  position: absolute;
  right: 40px;
  top: var(--home-pack-top, 40px);
  width: var(--home-round-media-size, 210px);
  height: var(--home-round-media-size, 210px);
  object-fit: contain;
}

.feature-card-media--ear::before {
  width: var(--home-circle-ear-size, 246px);
  height: var(--home-circle-ear-size, 246px);
}

.feature-card-media--ear img {
  position: absolute;
  right: 40px;
  top: var(--home-pack-top, 40px);
  width: var(--home-round-media-size, 210px);
  height: var(--home-round-media-size, 210px);
  object-fit: cover;
  border-radius: 50%;
}

.feature-card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: calc(var(--block-padding-small) / 2);
  ;
}

.feature-card-list li {
  position: relative;
  padding-left: 18px;
  font-size: var(--font-typ-p) !important;
  line-height: 1.4;
  color: var(--text);
}

.feature-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 3px;
  border-radius: 20px 0 20px 0;
  background: var(--pink);
}

.spotlight-card-title {
  display: grid;
  gap: 0;
  color: var(--pink);
}

.spotlight-card-title-top {
  display: flex;
  align-items: flex-end;
  gap: 0.2em;
  flex-wrap: wrap;
  font-size: var(--font-typ-h2) !important;
}

.spotlight-card-title-text,
.spotlight-card-title-bottom {
  font-size: var(--font-typ-h2) !important;
  line-height: 1.2;
  font-weight: 600;
}

.usage {
  display: grid;
  gap: var(--block-padding-small);
}

.usage .usage-note {
  margin-top: calc(-0.8 * var(--block-padding-small));
}

.usage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--block-padding-small);
  align-items: stretch;
}

.usage-stack {
  display: grid;
  gap: var(--block-padding-small);
}

.usage-card {
  border-radius: var(--radius);
  padding: var(--block-padding-small);
  display: grid;
  gap: var(--block-padding-small);
}

.usage-card--light {
  background: var(--blue-soft);
}

.usage-card--dark {
  background: var(--blue);
  color: var(--white);
}

.usage-card-title {
  margin: 0;
  font-size: var(--font-typ-h6) !important;
  line-height: 1.3;
  font-weight: 600;
}

.usage-chips {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-top: auto;
}

.usage-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  background: #c5e1f8;
  color: var(--text);
  font-size: var(--font-typ-p) !important;
  line-height: 1.4;
}

.usage-card--dark .usage-chip {
  background: rgba(219, 234, 254, 0.1);
  color: var(--white);
}

.usage-chip svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.usage-method {
  padding: var(--block-padding-small);
  border-radius: var(--radius);
  background: var(--paper);
  display: grid;
  gap: var(--block-padding-small);
}

.usage-method-visual {
  position: relative;
  max-height: 30vh;
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.usage-method-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.usage-method-visual::before,
.usage-method-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.usage-method-copy {
  display: grid;
  gap: 20px;
}

.usage-method-title {
  margin: 0;
  font-size: var(--font-typ-h6) !important;
  line-height: 1.3;
  font-weight: 600;
}

.usage-method-text {
  margin: 0;
  font-size: var(--font-typ-p);
  font-weight: 400;
  line-height: 1.4;
}

.usage-note {
  margin: 0;
  font-size: var(--font-typ-p) !important;
  line-height: 1.6;
}

.instruction {
  display: grid;
  gap: 48px;
}

.instruction-layout {
  display: grid;
  grid-template-columns: minmax(0, 1017fr) minmax(0, 493fr);
  gap: 28px;
  align-items: start;
}

.instruction-panel {
  padding: var(--block-padding);
  border-radius: var(--radius);
  background: var(--paper);
  display: grid;
  gap: calc(2 * var(--block-padding-small));
}

.accordion {
  display: grid;
  gap: var(--block-padding-small);
}

.accordion-item {
  padding-bottom: 0;
}

.accordion-summary {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  min-height: 24px;
}

.contacts-feedback-submit {
  width: 100%;
  max-width: none;
  min-height: 56px;
  padding: 16px 20px;
  justify-content: center;
  gap: 14px;
  font-size: var(--font-typ-p);
  line-height: 24px;
}

.accordion-label {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  font-size: var(--font-typ-h5) !important;
  line-height: 1.3;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}

.accordion-item[open] .accordion-label {
  color: var(--blue);
}

.accordion-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--text);
  transition:
    color var(--transition),
    transform var(--transition);
  margin-top: 0.3em;
  font-size: var(--font-typ-h5) !important;
}

.accordion-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-50%, -60%) rotate(45deg);
  transition: transform var(--transition);
}

.accordion-item[open] .accordion-icon {
  color: var(--blue);
}

.accordion-item[open] .accordion-icon::before {
  transform: translate(-50%, -30%) rotate(-135deg);
}

.accordion-content {
  padding: 14px 0 0 38px;
  font-size: var(--font-typ-h6) !important;
  line-height: 1.4;
}

.instruction-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.instruction-aside {
  display: grid;
  gap: 20px;
  justify-items: center;
}

.instruction-pack {
  position: relative;
  width: var(--home-instruction-pack-size, 362px);
  justify-self: center;
  margin-right: auto;
  margin-left: auto;
  min-height: calc(var(--home-instruction-pack-size, 362px) + 20px);
}

.instruction-pack-circle {
  position: absolute;
  left: 50%;
  width: var(--home-instruction-pack-size, 362px);
  height: var(--home-instruction-pack-size, 362px);
  border-radius: 350px;
  background: var(--blue);
  overflow: hidden;
  transform: translateX(-50%);
}

.instruction-pack-circle img {
  margin-left: auto;
  margin-right: auto;
  width: var(--home-instruction-pack-size, 362px);
  height: var(--home-instruction-pack-size, 362px);
  object-fit: contain;
}

.instruction-brand {
  width: 100%;
  max-width: 494px;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.instruction-brand img {
  width: 142px;
  margin-left: auto;
  margin-right: auto;
}

.instruction-brand-text {
  margin: 0;
  max-width: 420px;
  font-size: var(--font-typ-h6) !important;
  line-height: 1.4;
}

.instruction-brand-text strong {
  font-weight: 600;
}

.buy {
  display: grid;
  gap: 48px;
  margin-bottom: 70px;
  padding-top: 16px;
}

.buy-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.buy-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  aspect-ratio: 285 / 170;
}

.buy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat var(--page-buy-card-bg-image);
  opacity: 0;
  transition: opacity var(--transition);
}

.buy-card:hover::before {
  opacity: 1;
}

.buy-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buy-more {
  display: none;
}

.page--buy .buy-grid .buy-card:nth-child(n + 7) {
  display: block;
}

.page--buy .buy-more {
  display: none;
}

.articles-more {
  display: none;
}

.articles {
  display: grid;
  gap: 48px;
}

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

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.article-card--featured,
.article-card:hover {
  background: var(--blue-soft);
}

.article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(8, 47, 73, 0.12);
}

.article-card--featured .article-card-media::after,
.article-card--featured:hover .article-card-media::after {
  opacity: 1;
}

.article-card--featured .article-card-content {
  background: transparent;
  border-color: transparent;
}

.article-card--featured .article-card-title {
  color: var(--blue);
}

.article-card-media {
  position: relative;
  aspect-ratio: 493 / 256;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.article-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-media::before {
  content: "";
  position: absolute;
  left: -237px;
  top: 69px;
  width: 603px;
  height: 637px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-orb);
}

.article-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 89, 133, 0.2);
  opacity: 0;
  transition: opacity var(--transition);
}

.article-card:hover .article-card-media::after {
  opacity: 1;
}

.article-card-tags {
  position: absolute;
  left: 30px;
  bottom: 35px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 8px 14px;
  border-radius: 5px;
  background: var(--white);
  color: var(--text);
  font-size: var(--font-typ-small) !important;
  font-weight: 400;
  line-height: 1.5;
}

.article-card-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  background: transparent;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background-clip: padding-box;
  transition:
    background-color var(--transition),
    border-color var(--transition);
}

.article-card:hover .article-card-content {
  background: transparent;
  border-color: transparent;
}

.article-card-copy {
  display: grid;
  gap: 14px;
}

.article-card-title {
  margin: 0;
  color: var(--text);
  font-size: var(--font-typ-h6) !important;
  line-height: 1.3;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

.article-card:hover .article-card-title {
  color: var(--blue);
}

.article-card-text {
  margin: 0;
  color: var(--text);
  font-size: var(--font-typ-p) !important;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.meta::after {
  content: "";
  width: 16px;
  height: 16px;
  background: center / 16px 16px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4.00016 12L12.0002 4M12.0002 4H3.3335M12.0002 4V12.6667' stroke='%23005691' stroke-width='2'/%3E%3C/svg%3E");
  opacity: 0;
  transform: translateX(-4px);
  flex: 0 0 auto;
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.article-card:hover .meta::after {
  opacity: 1;
  transform: translateX(0);
}

.article-card--featured .meta::after {
  opacity: 1;
  transform: translateX(0);
}

.meta-list {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: var(--font-typ-p) !important;
  line-height: 1.6;
}

.meta-icon {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex: 0 0 auto;
}

.meta-icon--eye {
  background: center / 20px 20px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M18.8661 9.38607C18.2075 7.94599 15.6252 3.25 9.99988 3.25C4.37459 3.25 1.79221 7.94599 1.13367 9.38607C1.04527 9.57905 0.999512 9.78883 0.999512 10.0011C0.999512 10.2134 1.04527 10.4231 1.13367 10.6161C1.79221 12.0547 4.37459 16.7507 9.99988 16.7507C15.6252 16.7507 18.2075 12.0547 18.8661 10.6146C18.9543 10.4219 19 10.2123 19 10.0003C19 9.78835 18.9543 9.57883 18.8661 9.38607ZM9.99988 15.2506C5.26938 15.2506 3.06202 11.2259 2.49949 10.0086C3.06202 8.77478 5.26938 4.75008 9.99988 4.75008C14.7191 4.75008 16.9272 8.75753 17.5003 10.0003C16.9272 11.2432 14.7191 15.2506 9.99988 15.2506Z' fill='%23005691'/%3E%3Cpath d='M9.99971 6.25C9.25799 6.25 8.53293 6.46994 7.91621 6.88202C7.29949 7.2941 6.81882 7.8798 6.53498 8.56506C6.25114 9.25031 6.17687 10.0044 6.32157 10.7318C6.46627 11.4593 6.82345 12.1275 7.34792 12.652C7.87239 13.1765 8.54061 13.5336 9.26808 13.6783C9.99555 13.823 10.7496 13.7488 11.4348 13.4649C12.1201 13.1811 12.7058 12.7004 13.1179 12.0837C13.53 11.467 13.7499 10.7419 13.7499 10.0002C13.7487 9.00595 13.3532 8.05276 12.6502 7.34972C11.9471 6.64668 10.994 6.25119 9.99971 6.25ZM9.99971 12.2503C9.55468 12.2503 9.11964 12.1183 8.74961 11.8711C8.37958 11.6238 8.09118 11.2724 7.92087 10.8613C7.75056 10.4501 7.706 9.9977 7.79283 9.56122C7.87965 9.12474 8.09395 8.7238 8.40863 8.40912C8.72332 8.09444 9.12425 7.88013 9.56073 7.79331C9.99721 7.70649 10.4496 7.75105 10.8608 7.92136C11.2719 8.09166 11.6234 8.38007 11.8706 8.7501C12.1179 9.12013 12.2498 9.55516 12.2498 10.0002C12.2498 10.597 12.0128 11.1693 11.5908 11.5913C11.1688 12.0132 10.5965 12.2503 9.99971 12.2503Z' fill='%23005691'/%3E%3C/svg%3E");
}

.meta-icon--clock {
  background: center / 20px 20px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10.4673 6.29346C10.5785 6.29346 10.6694 6.38352 10.6694 6.49463V10.4683C10.6692 10.5792 10.5783 10.6694 10.4673 10.6694H7.89697C7.786 10.6694 7.69602 10.5792 7.6958 10.4683C7.6958 10.3571 7.78587 10.2662 7.89697 10.2661H10.2661V6.49463C10.2662 6.38364 10.3563 6.29366 10.4673 6.29346Z' fill='%23005691' stroke='%23005691'/%3E%3Cpath d='M9.99999 2.28564C5.74629 2.28564 2.28564 5.74629 2.28564 9.99993C2.28564 14.2536 5.74629 17.7142 9.99999 17.7142C14.2536 17.7142 17.7142 14.2536 17.7142 9.99993C17.7142 5.74629 14.2536 2.28564 9.99999 2.28564ZM9.99999 16.3116C6.51967 16.3116 3.68826 13.4802 3.68826 9.99993C3.68826 6.51964 6.51967 3.68823 9.99999 3.68823C13.4802 3.68823 16.3116 6.51964 16.3116 9.99993C16.3116 13.4802 13.4802 16.3116 9.99999 16.3116Z' fill='%23005691'/%3E%3C/svg%3E");
}

.meta-icon svg {
  width: 100%;
  height: 100%;
}

.meta-arrow {
  display: none;
}

.footer {
  padding: 112px 0;
  background: var(--blue);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns:
    minmax(0, 1.25fr) minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand-text,
.footer-subtitle,
.footer-nav a {
  opacity: 0.7;
}

.footer-brand-text--mobile {
  display: none;
}

.footer-brand-text,
.footer-policy a,
.footer-company-text {
  margin: 0;
  font-size: var(--font-typ-small) !important;
  line-height: 1.56;
}

.footer-title {
  margin: 0 0 5px;
  font-size: var(--font-typ-h6) !important;
  line-height: 1.4;
  font-weight: 600;
}

.footer-title-link {
  color: inherit;
  text-decoration: none;
  transition:
    color var(--transition),
    opacity var(--transition);
}

.footer-title-link:hover {
  opacity: 0.7;
}

.footer-subtitle {
  margin: 0;
  font-size: var(--font-typ-p) !important;
  line-height: 1.5;
}

.footer-column {
  display: grid;
  gap: 40px;
  align-content: start;
}

.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-nav .menu {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav .menu-item {
  margin: 0;
}

.footer-nav a {
  font-size: var(--font-typ-p) !important;
  line-height: 1.5;
  transition: opacity var(--transition);
}

.footer-nav a:hover,
.footer-policy a:hover {
  opacity: 1;
}

.footer-policy {
  display: grid;
  gap: 14px;
}

.footer-policy a {
  width: max-content;
  max-width: 100%;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-company {
  display: grid;
  gap: 14px;
}

.footer-company-mark {
  display: block;
  width: 126px;
  max-width: 100%;
  height: auto;
  opacity: 0.5;
  object-fit: contain;
}

.footer-company-text {
  opacity: 0.7;
}

@media (min-width: 1181px) and (max-width: 1599px) {
  .footer-inner {
    grid-template-columns:
      minmax(0, 1.15fr) minmax(0, 0.78fr) minmax(0, 0.78fr) minmax(0, 1.14fr);
    gap: 32px;
  }

  .footer-inner>.footer-column:last-child {
    min-width: 0;
  }

  .footer-nav a {
    line-height: 1.56;
  }

  .footer-policy a,
  .footer-company-text {
    line-height: 1.5;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
}

@media (min-width: 1181px) {
  .how-grid {
    align-items: stretch;
  }

  .how-visual {
    height: 100%;
    aspect-ratio: auto;
    max-height: initial;
  }
}

@media (max-width: 1400px) {

  .nav .menu,
  .header-inner>div[class^="menu-"][class$="-container"]>.menu {
    gap: 28px;
  }

  .hero-shadow--small {
    right: 160px;
  }

  .hero-shadow--large {
    right: 144px;
  }
}

@media (max-width: 1180px) {


  .hero {
    min-height: auto;
  }

  .how-grid,
  .usage-layout,
  .instruction-layout,
  .articles-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    gap: clamp(24px, 3vw, 40px);
    align-items: center;
  }

  .hero-copy {
    padding: 88px 0;
  }

  .hero-media {
    justify-self: end;
    margin: 0;
  }

  .hero-shadow--small,
  .hero-shadow--large {
    display: none;
  }

  .intro-card,
  .spotlight-card {
    min-height: auto;
  }

  .intro-card-visual,
  .spotlight-card-visual {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    margin: 32px auto 0;
  }

  .spotlight-card-visual {
    max-width: 660px;
    margin: 32px 0 0 auto;
  }

  .intro-card-actions,
  .spotlight-card-actions {
    position: absolute;
    margin-top: 32px;
    bottom: 20px;
    left: 20px;
  }

  .spotlight-card-content,
  .intro-card-content {
    max-width: 100%;
  }

  .overview>.intro-card .intro-card-content {
    margin-bottom: 0px;
  }

  .spotlight-card-visual img {
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 660px;
    height: auto;
    max-height: none;
  }

  .overview>.intro-card .intro-card-content {
    width: 100%;
    padding-right: 30px;
  }

  .overview>.intro-card .intro-card-visual {
    margin-top: 40px;
  }

  .page-promo-card {
    padding: 56px;
  }

  .page-promo-card .intro-card-content {
    gap: 56px;
  }

  .page-promo-card .intro-card-title,
  .page-promo-card .intro-card-text {
    max-width: 560px;
  }

  .page-promo-card .intro-card-visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 661px;
    height: 500px;
    margin: 32px auto 0;
  }

  .page-promo-card .intro-card-visual::before {
    left: 60px;
    top: 24px;
    width: 620px;
    height: 620px;
  }

  .page-promo-card .intro-card-visual::after {
    left: 126px;
    top: 92px;
    width: 500px;
    height: 500px;
  }

  .page-promo-card .intro-card-visual img {
    left: 22px;
    width: 620px;
    height: 500px;
  }

  .page-promo-card-nav {
    position: static;
    justify-self: end;
    margin: 24px 0 0 auto;
  }

  .article-page-content {
    width: 100%;
    gap: 72px;
  }

  .articles-page .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-hero-media {
    min-height: 360px;
  }

  .article-table {
    min-width: 920px;
  }

  .contacts-layout {
    grid-template-columns: 1fr;
  }

  .contacts-map-card {
    min-height: 560px;
  }

  .contacts-feedback {
    padding: 112px 0;
  }

  .contacts-feedback-inner {
    grid-template-columns: 1fr;
  }

  .contacts-feedback-copy {
    max-width: 680px;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .feature-card-content {
    max-width: 520px;
  }

  .feature-card {
    padding: 30px;
  }

  .buy-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 641px) and (max-width: 1180px) {
  .shell {
    width: min(calc(100% - (var(--page-shell-gutter, 20px) * 2)), var(--shell));
  }

  .main {
    gap: 88px;
    padding-bottom: 96px;
  }

  .section-head,
  .instruction,
  .buy,
  .articles,
  .instruction-page,
  .articles-page,
  .contacts-page,
  .article-page,
  .article-hero-section,
  .article-sections,
  .overview,
  .contacts-feedback-inner {
    gap: 48px;
  }

  .instruction-page-head,
  .articles-page-head,
  .contacts-page-head,
  .article-page-head,
  .articles-page-body,
  .contacts-feedback-copy,
  .contacts-feedback-form {
    gap: 28px;
  }

  .article-page-content {
    gap: 64px;
  }

  .article-section,
  .article-section-plain {
    gap: 28px;
  }

  .section-head-row,
  .page-title-row,
  .spotlight-card-title-top {
    gap: 0.4em;
  }

  .section-head-row--split {
    align-items: flex-end;
    gap: 18px 28px;
  }


  .hero-inner {
    gap: var(--block-padding-small);
  }

  .hero-copy {
    gap: var(--block-padding-small);
    padding: var(--page-shell-gutter) 0 var(--page-shell-gutter) 0;
  }

  .hero-media {
    justify-self: center;
    width: min(100%, 720px);
  }

  .hero .button-row {
    width: 100%;
  }

  .overview {
    gap: 96px;
  }

  .intro-card,
  .spotlight-card {
    gap: 28px;
    padding: 40px;
  }

  .intro-card-content,
  .spotlight-card-content {
    gap: 28px;
    max-width: none;
    min-height: 0;
  }

  .intro-card-content-top,
  .spotlight-card-content-top,
  .page-promo-card-copy,
  .page-promo-card-copy-top {
    gap: 20px;
  }

  .intro-card-title {
    min-width: 0;
  }

  .intro-card-text,
  .page-promo-card .intro-card-text {
    max-width: none;
  }

  .overview>.intro-card .intro-card-content {
    width: 100%;
    padding-right: 0;
  }

  .overview>.intro-card .intro-card-text {
    margin-bottom: 0;
  }

  .intro-card-visual,
  .spotlight-card-visual,
  .page-promo-card .intro-card-visual {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    order: 3;
    width: 100%;
    max-width: 660px;
    height: clamp(360px, 46vw, 520px);
    margin: 0 auto;
    transform: none;
  }

  .page-promo-card .intro-card-visual {
    max-width: initial;
    margin-top: -130px;
  }

  .spotlight-card-visual {
    max-width: 720px;
  }

  .overview>.intro-card .intro-card-visual {
    margin-top: 0;
  }

  .intro-card-visual img,
  .spotlight-card-visual img,
  .page-promo-card .intro-card-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: contain;
    object-position: center bottom;
  }

  .spotlight-card-visual img,
  .page-promo-card .intro-card-visual img {
    object-position: right bottom;
  }

  .intro-card-actions,
  .spotlight-card-actions {
    position: static;
    order: 2;
    justify-self: start;
    width: auto;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .intro-card-actions .button,
  .spotlight-card-actions .button {
    min-width: 180px;
  }

  .how-grid,
  .usage-layout,
  .instruction-layout {
    gap: 24px;
  }

  .how-list,
  .usage-stack,
  .accordion {
    gap: 20px;
  }

  .how-card,
  .usage-card,
  .usage-method,
  .feature-card,
  .instruction-panel {
    padding: var(--block-padding-small);
  }

  .benefits-band {
    padding: 88px 0;
  }

  .benefits-band-inner {
    gap: 40px;
  }

  .benefits-grid {
    gap: 20px;
  }

  .feature-card {
    min-height: 240px;
  }

  .benefits-grid>.feature-card:nth-child(1) .feature-card-content,
  .benefits-grid>.feature-card:nth-child(2) .feature-card-content,
  .benefits-grid>.feature-card:nth-child(3) .feature-card-content {
    width: min(100%, calc(100% - 240px));
    max-width: none;
  }

  .feature-card-content {
    gap: 20px;
    max-width: none;
    height: 100%;
  }

  .feature-card-media--packs img {
    top: 24px;
    width: auto;
    height: calc(100% - 48px);

  }

  .feature-card-media--boy img,
  .feature-card-media--ear img {
    top: var(--block-padding-small);
    right: var(--block-padding-small);
    width: auto;
    height: calc(100% - calc(2 * var(--block-padding-small)));
  }

  .feature-card-media--boy::before {
    width: 180px;
    height: 180px;
  }

  .feature-card-media--ear::before {
    width: 210px;
    height: 210px;
  }

  .instruction-panel {
    gap: 64px;
  }

  .instruction-aside {
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    justify-items: stretch;
  }

  .instruction-pack {
    width: min(100%, 300px);
    min-height: 300px;
  }

  .instruction-pack-circle {
    width: 300px;
    height: 300px;
  }

  .instruction-pack-circle img {
    width: 300px;
    height: 300px;
  }

  .instruction-brand {
    max-width: none;
    justify-items: start;
    text-align: left;
  }

  .instruction-brand img {
    margin-left: 0;
    margin-right: 0;
  }

  .instruction-brand-text {
    max-width: 440px;
  }

  .page-promo-card {
    min-height: auto;
    padding: 40px;
  }

  .page-promo-card .intro-card-content {
    max-width: none;
    min-height: 0;
    gap: 32px;
  }

  .page-promo-card .intro-card-title,
  .page-promo-card .intro-card-text {
    max-width: none;
  }

  .page-promo-card .button {
    width: auto;
    min-width: 180px;
    max-width: max-content;
  }

  .page-promo-card-nav {
    margin: 0;
  }

  .contacts-card {
    gap: 48px;
    padding: 40px;
  }

  .contacts-card-meta {
    gap: 24px 48px;
  }

  .contacts-map-card {
    min-height: 500px;
  }

  .contacts-feedback {
    padding: 80px 0;
  }

  .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: calc(var(--block-padding-small) / 2);
  }

  .article-card-content {
    gap: var(--block-padding-small);
    padding: var(--block-padding-small);
  }

  .article-card-tags {
    left: var(--block-padding-small);
    bottom: var(--block-padding-small);
  }

  .footer {
    padding: 88px 0;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 560px;
  }

  .footer-column {
    gap: 24px;
  }


  .footer-subtitle,
  .footer-nav a,
  .footer-brand-text,
  .footer-company-text {
    line-height: 1.5;
  }
}


@media (min-width: 1024px) {
  .hero-title {
    width: 15em;
  }

  .hero-text p {
    min-width: 25em;
    line-height: 1.3;
  }

  .overview>.intro-card .intro-card-title {
    min-width: 30em;
  }
}

@media (min-width: 1024px) and (max-width: 1179px) {
  .articles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tag {
    padding: 0.2em 0.5em;
  }

  .article-card-content {
    gap: calc(var(--block-padding) / 2);
    padding: calc(var(--block-padding) / 2);
  }

  .article-card-tags {
    left: calc(var(--block-padding) / 2);
    bottom: calc(var(--block-padding) / 2);
  }

}

@media (min-width: 1180px) {
  .overview>.intro-card {
    min-height: initial;

  }

  .overview>.intro-card .intro-card-text {
    margin-bottom: 0;
    width: 75%;
    margin-top: var(--block-padding-small);
  }

  .overview>.intro-card .intro-card-content {
    padding-bottom: var(--block-padding) !important;

    width: 30em;
    font-size: var(--font-typ-h5);
  }

  .overview>.intro-card .intro-card-visual {
    height: 95%;
  }
}

@media (min-width: 1024px) and (max-width: 1180px) {
  .header-inner {
    gap: var(--block-padding-small);
  }

  .header .brand-lockup--small img {
    width: 148px;
  }

  .nav .menu,
  .header-inner>div[class^="menu-"][class$="-container"]>.menu {
    gap: calc(var(--block-padding-small) / 5 * 3) calc(var(--block-padding-small) / 5 * 3);
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(calc(100% - (var(--page-shell-gutter, 16px) * 2)), var(--shell));
  }

  .contacts-page {
    gap: 48px;
  }

  .contacts-page-head {
    gap: 28px;
  }

  .contacts-card {
    padding: 40px 28px;
  }

  .contacts-map-card {
    min-height: 460px;
  }

  .contacts-feedback {
    padding: 96px 0;
  }

  .contacts-feedback-copy {
    gap: 20px;
  }

  .contacts-feedback-form {
    gap: 24px;
  }

  .contacts-feedback-row {
    grid-template-columns: 1fr;
  }

  .contacts-feedback-actions {
    gap: 20px;
  }

  .articles-page {
    gap: 48px;
  }

  .articles-page-head {
    gap: 28px;
  }

  .articles-page-body {
    gap: 40px;
  }

  .instruction-page {
    gap: 48px;
  }

  .instruction-page-head {
    gap: 28px;
  }

  .article-page {
    gap: 40px;
  }

  .article-page-head {
    gap: 28px;
  }

  .article-page-content {
    gap: 56px;
  }

  .article-hero-section {
    gap: 40px;
  }

  .article-sections {
    gap: 48px;
  }

  .article-section,
  .article-section-plain {
    gap: 32px;
  }

  .article-hero-media {
    min-height: 320px;
  }

  .article-note {
    padding: 32px 28px;
  }

  .page-title-brand img {
    width: 180px;
    transform: translateY(6px);
  }

  .page-promo-card {
    padding: 40px 28px;
  }

  .page-promo-card .intro-card-content {
    gap: 40px;
    padding-bottom: 200px;
  }

  .page-promo-card-copy {
    gap: 32px;
  }

  .page-promo-card .intro-card-visual {
    height: 420px;
  }

  .page-promo-card .intro-card-visual::before {
    left: 24px;
    top: 36px;
    width: 540px;
    height: 540px;
  }

  .page-promo-card .intro-card-visual::after {
    left: 96px;
    top: 98px;
    width: 420px;
    height: 420px;
  }

  .page-promo-card .intro-card-visual img {
    right: 0;
    width: auto;
    height: 300px;
    left: auto;
    top: auto;
  }

  .main {
    gap: 70px;
    padding-bottom: 88px;
  }

  .nav .menu,
  .header-inner>div[class^="menu-"][class$="-container"]>.menu {
    gap: 18px 22px;
  }

  .nav-menu {
    position: static;
    margin-top: 12px;
    box-shadow: none;
  }

  .intro-card,
  .spotlight-card,
  .instruction-panel {
    padding: 0px;
  }

  .usage-card,
  .usage-method {
    padding: 20px;
  }

  .intro-card-visual,
  .spotlight-card-visual {
    height: 500px;
  }

  .overview {
    display: flex;
    flex-direction: column;
    gap: 70px;
  }

  .spotlight-card-visual img {
    right: -30px;
    width: 620px;
    height: auto;
  }

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

  .articles-grid {
    gap: 20px;
  }

  .instruction-actions {
    gap: 18px;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .main {
    gap: 72px;
    padding-bottom: 88px;
  }

  .overview {
    gap: 72px;
  }

  .hero-inner {
    gap: 28px;
    padding-bottom: 32px;


    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title  "
      "text   "
      "media  "
      "actions";
    align-content: start;
    gap: 30px;
    /*min-height: 747px;*/
    padding: 30px 0px 20px 0px;
  }

  .hero-copy {
    padding-top: 56px;
    display: contents;
  }

  .hero .button {
    min-height: 56px;
    padding: 16px 20px;
    line-height: 24px;
  }

  .hero .button-row {
    gap: 12px;
    grid-area: actions;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    font-size: var(--font-typ-p);
    max-width: 25em;
    margin-bottom: var(--block-padding);
  }

  .hero-media {
    grid-area: media;
    justify-self: center;
    align-self: start;
    width: 70%;
    max-width: 300px;
    height: auto;
    margin: 0;
  }

  .intro-card,
  .spotlight-card,
  .instruction-panel,
  .page-promo-card {
    padding: 32px;
  }

  .intro-card-visual,
  .spotlight-card-visual,
  .page-promo-card .intro-card-visual {
    height: clamp(320px, 52vw, 440px);
  }

  .page-promo-card .intro-card-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    left: initial;
    width: 100%;
    height: 400px;
    margin: 0;
    transform: none;
    overflow: hidden;
  }

  .intro-card-actions,
  .spotlight-card-actions {
    width: 100%;
  }

  .intro-card-actions .button,
  .spotlight-card-actions .button,
  .page-promo-card .button {
    flex: 1 1 220px;
  }

  .how-grid,
  .usage-layout {
    gap: 16px;
  }

  .how-card,
  .usage-card,
  .usage-method,
  .feature-card {
    padding: 24px;
  }



  .instruction-layout {
    gap: 20px;
  }

  .instruction-aside {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 24px;
  }

  .instruction-pack {
    width: min(100%, 260px);
    min-height: 260px;
  }

  .instruction-pack-circle {
    width: 260px;
    height: 260px;
  }

  .instruction-pack-circle img {
    width: 260px;
    height: 260px;
  }

  .contacts-feedback {
    padding: 72px 0;
  }

  .footer-inner {
    gap: 28px 20px;
  }

  .footer-column {
    gap: 20px;
  }
}

@media (max-width: 1023px) {
  .nav {
    display: none;
  }

  .header-inner>div[class^="menu-"][class$="-container"] {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .header-mobile-nav {
    display: block;
  }

  .header-mobile-nav[open]>summary {
    position: fixed;
    top: 16px;
    right: 16px;
  }

  .header {
    padding: 0;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
  }

  .header .brand-lockup--small img {
    width: 130px;
  }
}

@media (min-width: 768px) {
  .hero .button-row {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 0;
  }

  .hero .button {
    width: auto;
    flex: 0 0 auto;
  }
}

@media (max-width: 640px) {
  .page {
    background:
      center top / 100% auto no-repeat url("assets/img/home/m-home-bg.svg"),
      var(--white);
  }

  .page--accord.page {
    background:
      center top / 100% auto no-repeat url("assets/img/home-accord/m-home-bg.svg"),
      var(--white);
  }

  .button-row,
  .instruction-actions {
    flex-direction: column;
    align-items: stretch;

  }

  .button,
  .inline-link {
    width: 100%;
    justify-content: center;
  }

  .nav {
    display: none;
  }

  .header {
    padding: 0;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
  }

  .header .brand-lockup {
    transform: none;
    max-width: none;
  }


  .header .brand-lockup--small img {
    width: 118px;
  }

  .how {
    gap: 28px;
  }

  .how .section-head {
    gap: 28px;
  }

  .how .section-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .how .section-head-title {
    line-height: 40px;
  }


  .header-mobile-nav {
    display: block;
  }

  .burger {
    display: inline-flex;
  }

  .header-mobile-nav[open]>summary {
    position: fixed;
    top: 16px;
    right: 16px;
  }

  .instruction-page {
    gap: 28px;
    padding-top: 30px;
  }

  .page--contacts .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .instruction-page-head {
    gap: 20px;
  }

  .contacts-page {
    gap: 40px;
    padding-top: 30px;
  }

  .contacts-page-head {
    gap: 20px;
  }

  .contacts-page .breadcrumbs {
    gap: 10px;
    line-height: 20px;
  }

  .contacts-page .page-title {
    line-height: 1.1;
  }

  .contacts-layout {
    gap: 10px;
  }

  .contacts-card {}

  .contacts-card-primary {}

  .contacts-detail-label {
    line-height: 1.5;
  }

  .contacts-detail-value {
    line-height: 1.4;
  }

  .contacts-detail--small {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    flex-wrap: wrap;
  }

  .contacts-detail--small .contacts-detail-label {
    line-height: 1.5;
  }

  .contacts-detail--small .contacts-detail-value {
    line-height: 24px;
  }

  .header-mobile-brand img {
    width: 118px;
    height: auto;
  }

  .contacts-card-secondary {
    gap: 28px;
  }

  .contacts-card-meta {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contacts-map-card {
    min-height: 384px;
    border-radius: 20px;
  }

  .contacts-feedback {
    padding: 64px 0;
  }

  .contacts-feedback-inner {
    gap: 28px;
  }

  .contacts-feedback-copy {
    gap: 20px;
  }

  .contacts-feedback-title {
    line-height: 1.2;
  }

  .contacts-feedback-text {
    line-height: 1.3;
  }

  .contacts-feedback-form {
    gap: 20px;
  }

  .contacts-feedback-fields {
    gap: 10px;
  }

  .contacts-feedback-row {
    gap: 10px;
  }

  .contacts-feedback-input {
    min-height: 56px;
    padding: 16px 20px;
    line-height: 24px;
  }

  .contacts-feedback-textarea {
    min-height: 112px;
  }

  .contacts-feedback-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .contacts-feedback-submit {
    width: 100%;
    max-width: none;
    min-height: 56px;
    padding: 16px 20px;
    justify-content: center;
    gap: 14px;
    line-height: 24px;
  }

  .contacts-feedback-submit svg {
    display: none;
  }

  .contacts-feedback-consent {
    gap: 5px;
    max-width: none;
  }

  .contacts-feedback-check {
    width: 28px;
    height: 28px;
    border-radius: 5px;
  }

  .contacts-feedback-check::after {
    width: 9px;
    height: 5px;
    border-left-width: 2px;
    border-bottom-width: 2px;
  }

  .contacts-feedback-consent-text {
    line-height: 1.5;
  }

  .article-page {
    gap: 28px;
    padding-top: 30px;
  }

  .articles-page {
    gap: 28px;
    padding-top: 30px;
  }

  .articles-page-head {
    gap: 20px;
  }

  .articles-page-body {
    gap: 28px;
  }

  .articles-page .articles-grid {
    grid-template-columns: 1fr;
  }

  .articles-page .article-card {
    min-height: auto;
  }

  .articles-page-more {
    width: auto;
    max-width: max-content;
    min-height: 56px;
    padding: 16px 20px;
    gap: 10px;
    line-height: 24px;
  }

  .article-page-head {
    gap: 20px;
  }

  .article-page-content {
    gap: 40px;
  }

  .article-hero-section {
    gap: 24px;
  }

  .article-hero-copy {
    gap: 14px;
  }

  .article-hero-title {
    line-height: 40px;
  }

  .article-hero-lead,
  .article-rich-text p,
  .article-section-plain p,
  .article-section-plain li,
  .article-bullet-list li {
    line-height: 24px;
  }

  .article-hero-media {
    min-height: 220px;
    border-radius: 16px;
  }

  .article-sections {
    gap: 28px;
  }

  .article-section,
  .article-section-plain {
    gap: 20px;
  }

  .article-section-title {
    line-height: 40px;
  }

  .article-section-subtitle,
  .article-comparison-title {
    line-height: 1.3;
  }

  .article-section-plain h2 {
    line-height: 40px;
  }

  .article-section-plain h3 {
    line-height: 24px;
  }

  .article-factors {
    gap: 16px;
  }

  .article-factors-title {
    line-height: 24px;
  }

  .article-note {
    gap: 10px;
    padding: 20px;
    border-radius: 16px;
  }

  .article-note strong {
    line-height: 24px;
  }

  .article-note p {
    line-height: 24px;
  }

  .article-comparison {
    gap: 24px;
  }

  .article-table {
    min-width: 0;
    gap: 16px;
  }

  .article-table-head {
    display: none;
  }

  .article-table-body {
    gap: 10px;
  }

  .article-table-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
    border-radius: 1px;
    line-height: 24px;
    white-space: normal;
  }

  .article-table-cell {
    display: flex;
    align-items: baseline;
    gap: 10px;
    width: 100%;
  }

  .article-table-cell-label {
    display: block;
    flex: 0 0 auto;
    color: rgba(54, 54, 54, 0.7);
    line-height: 1.5;
  }

  .article-table-cell-line {
    display: block;
    flex: 1 1 auto;
    min-width: 12px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-2px);
  }

  .article-table-cell-value {
    flex: 0 1 auto;
    text-align: right;
    line-height: 1.5;
  }

  .breadcrumbs {
    gap: 10px;
    line-height: 24px;
  }

  .page-title-row {
    gap: 14px;
  }

  .section-head-row--accord-title {
    gap: 14px;
    flex-wrap: wrap;
  }

  .page-title {
    line-height: 1.1;
  }

  .page-title-brand img {
    width: 122px;
    transform: translateY(-6px);
  }

  .buy-head-link {
    display: none;
  }

  .page-promo-card {
    min-height: auto;
    padding: 20px;
  }

  .page-promo-card .intro-card-content {
    gap: 28px;
  }

  .page-promo-card-copy {
    gap: 24px;
  }

  .page-promo-card-copy-top {
    gap: 14px;
  }

  .page-promo-card .intro-card-title,
  .page-promo-card .intro-card-text {
    max-width: 300px;
  }

  .page-promo-card .intro-card-title {
    line-height: 24px;
  }

  .page-promo-card .intro-card-text {
    line-height: 24px;
  }

  .page-promo-card .button {
    width: auto;
    max-width: max-content;
    justify-content: flex-start;
  }

  .page-promo-card .intro-card-visual {
    position: relative;
    width: 100%;
    height: 300px;
    margin: 8px 0 0;
  }

  .page-promo-card .intro-card-visual::before {
    left: 50%;
    top: 44px;
    width: 320px;
    height: 320px;
    transform: translateX(-38%);
  }

  .page-promo-card .intro-card-visual::after {
    left: 50%;
    top: 92px;
    width: 240px;
    height: 240px;
    transform: translateX(-18%);
    background: var(--paper);
  }

  .page-promo-card .intro-card-visual img {
    right: 0;
    position: absolute;
    width: 340px;
    height: 300px;
    object-fit: contain;
    object-position: bottom right;
  }

  .page-promo-card-nav {
    display: none;
  }

  .hero {
    min-height: 797px;
  }

  .usage-stack {
    gap: 10px;
  }

  .usage-layout {
    gap: 10px;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "text"
      "media"
      "actions";
    align-content: start;
    gap: 30px;
    min-height: 747px;
    padding: 30px 0px 0px;
  }

  .usage-note {
    display: none;
  }

  .hero-copy {
    display: contents;
  }

  .hero-title {
    grid-area: title;
    width: 100%;
    max-width: none;
    line-height: 40px;
  }

  .hero-text {
    grid-area: text;
    width: 100%;
    max-width: none;
    gap: 1.5em;
  }

  .hero-text p {
    max-width: none;
    line-height: 1.4;
  }

  .hero-text p strong {
    font-weight: 500;
  }

  .hero-media {
    grid-area: media;
    justify-self: center;
    align-self: start;
    width: 90%;
    max-width: 300px;
    height: auto;
    margin: 0;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .hero .button-row {
    grid-area: actions;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 328px;
    margin-bottom: 20px;
  }

  .hero .button {
    min-height: 56px;
    padding: 16px 20px;
    line-height: 24px;
  }

  .hero .button svg {
    display: none;
  }

  .hero-shadow {
    display: block;
  }

  .hero-shadow--small {
    left: calc(50% - 64px);
    right: auto;
    bottom: 44px;
    width: 192px;
    height: 32px;
  }

  .page-promo-card-nav {
    bottom: 20px;
    right: 40%;
  }

  .hero::before {
    content: "";
    position: absolute;
    margin-top: auto;
    inset: 0;
    background: bottom / cover no-repeat url("assets/img/home/bg-hero-m.png");
    opacity: 1;
    z-index: 0;
  }

  .hero-accord::before {
    content: "";
    position: absolute;
    margin-top: auto;
    inset: 0;
    background: bottom / cover no-repeat url("assets/img/home/bg-hero-m.png");
    opacity: 1;
    z-index: 0;
  }

  .hero-shadow--large {
    left: calc(50% - 80px);
    right: auto;
    bottom: 36px;
    width: 224px;
    height: 40px;
  }

  .usage-method-title {
    margin: 0;
    line-height: 1.4;
  }

  .how-grid {
    gap: 10px;
    max-height: none;
  }

  .how-list {
    gap: 10px;
    height: auto;
  }

  .how-card {
    max-height: none;
    min-height: auto;
    padding: 20px;
    border-radius: 16px;
    line-height: 1.4;
  }

  .how-visual {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 886 / 564;
    border-radius: 16px;
    background: var(--paper);
    overflow: hidden;
  }

  .how-visual img {
    position: static;
    margin: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: darken;
    z-index: 1;
  }

  .intro-card {
    min-height: 720px;
    border-radius: 16px;
  }

  .intro-card-content {
    display: grid;
    align-content: start;
    gap: 10px;
    justify-content: start;
    max-width: 288px;
    min-height: 0;
    padding-bottom: 0;
  }

  .overview>.intro-card {
    min-height: initial;
  }

  .overview>.intro-card .intro-card-content {
    width: 100%;
    max-width: none;
    padding: calc(2 * var(--page-shell-gutter)) var(--page-shell-gutter);
  }

  .intro-card-content-top {
    gap: 20px;
    padding-right: var(var(--block-padding-small));
  }


  .intro-card-title {
    min-width: 0;
    line-height: 1.3;
  }

  .intro-card-text {
    margin-top: 0;
    max-width: 290px;
    line-height: 1.4;
    white-space: nowrap;
  }

  .overview>.intro-card .intro-card-text {
    width: 100%;
    max-width: none;
    white-space: normal;
    padding-right: var(--page-shell-gutter);
  }

  .intro-card-visual {
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 300px;
    margin: 0;
    transform: none;
    overflow: hidden;
  }

  .overview>.intro-card .intro-card-visual {
    position: relative;
    right: auto;
    left: auto;
    height: auto;
    margin-top: 20px;
    aspect-ratio: 355 / 300;
  }

  .intro-card-visual::before {
    top: 58px;
    left: 26px;
    width: 384px;
    height: 320px;
  }

  .intro-card-visual::after {
    top: 93px;
    left: 52px;
    width: 320px;
    height: 320px;
    background: rgba(248, 248, 248, 0.5);
  }

  .intro-card-visual img {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: cover;
    bottom: 0;
    object-position: bottom;
    z-index: 1;
  }

  .intro-card-actions {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 5px;
    margin-top: 0;
  }

  .overview>.intro-card .intro-card-actions {
    position: absolute;
    bottom: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .intro-card-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    gap: 0;
    line-height: 24px;
  }

  .intro-card-actions .button span {
    width: 100%;
    min-width: 0;
    text-align: center;
    white-space: normal;
  }

  .intro-card-actions .button svg {
    display: none;
  }

  .page-promo-card.intro-card {
    width: 100%;
    min-height: initial !important;
    margin: 0 auto;
    padding: var(--block-padding) var(--block-padding-small) 0;
    border-radius: 16px;
    background: var(--blue-soft);
  }

  .page-promo-card .intro-card-content {
    display: grid;
    align-content: start;
    justify-content: start;
    width: 100%;
    max-width: initial;
    min-height: 0;
    padding-bottom: 240px;
    gap: 20px;
    padding-right: var(--block-padding-small);
  }

  .page-promo-card .intro-card-content-top {
    gap: 0;
  }


  .page-promo-card-copy {
    gap: 20px;
  }

  .page-promo-card-copy-top {
    gap: 10px;
  }

  .page-promo-card .intro-card-title {
    max-width: initial;
    line-height: 24px;
  }

  .page-promo-card .intro-card-text {
    max-width: initial;
    color: var(--blue);
    line-height: 24px;
    white-space: normal;
  }

  .page-promo-card .button {
    width: auto;
    max-width: max-content;
    min-height: 56px;
    padding: 16px 20px;
    gap: 0;
    justify-content: center;
    color: var(--blue);
    background: var(--white);
    line-height: 24px;
  }

  .page-promo-card .button svg {
    display: none;
  }

  .page-promo-card .intro-card-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 230px;
    margin: 0;
    transform: none;
    overflow: hidden;
  }

  .page-promo-card .intro-card-visual img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 230px;
    transform: none;
    object-fit: contain;
    object-position: rightbottom;
    z-index: 1;
  }

  .page-promo-card-nav {
    position: absolute;
    bottom: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 5px;
    width: max-content;
    margin: 0;
    transform: translateX(-50%);
  }

  .page-promo-card-nav::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: var(--blue);
    flex: 0 0 auto;
  }

  .page-promo-card .page-promo-card-nav-button {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: var(--blue);
    flex: 0 0 auto;
  }

  .page-promo-card .page-promo-card-nav-button {
    position: static;
    opacity: 0.3;
  }

  .page-promo-card .page-promo-card-nav-button::before {
    content: none;
  }

  .spotlight-card {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .spotlight-card-content {
    display: grid;
    align-content: start;
    justify-content: start;
    gap: 20px;
    padding: 0;
    min-height: 0;
    padding-bottom: 0;
  }

  .spotlight-card-content-top {
    gap: 20px;
  }

  .spotlight-card-title {
    display: block;
  }



  .spotlight-card-title-text,
  .spotlight-card-title-bottom {
    display: inline;
    line-height: 1.2;
    font-weight: 600;
  }

  .spotlight-card-title-text::after {
    content: " ";
  }

  .spotlight-card .bullet-list {
    gap: 10px;
  }

  .spotlight-card .bullet-list li {
    padding-left: 16px;
    line-height: 24px;
  }

  .spotlight-card .bullet-list li::before {
    top: 12px;
  }

  .spotlight-card-visual {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    height: none;
    margin: 0;
    transform: none;
    overflow: hidden;
  }

  .spotlight-card-visual img {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
  }

  .spotlight-card-actions {
    position: absolute;
    bottom: 28px;
    left: 20px;
    z-index: 3;
    display: grid;
    width: calc(100% - 40px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    margin-top: 0;
  }

  .spotlight-card-actions .button {
    min-width: 0;
    min-height: 56px;
    padding: 16px 14px;
    gap: 0;
    /*font-size: var();*/
    line-height: 24px;
  }

  .spotlight-card-actions .button span {
    width: 100%;
    min-width: 0;
    text-align: center;
    white-space: normal;
  }

  .spotlight-card-actions .button svg {
    display: none;
  }

  .feature-card {
    padding: 30px;
  }

  .feature-card-media--packs,
  .feature-card-media--boy,
  .feature-card-media--ear {
    position: relative;
    min-height: 220px;
    margin-top: 24px;
  }

  .feature-card-media--packs img {
    right: 0;
    left: 0;
    margin: auto;
    top: 12px;
  }

  .feature-card-media--boy::before,
  .feature-card-media--ear::before {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .feature-card-media--boy img,
  .feature-card-media--ear img {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }


  .benefits-band .section-head {
    gap: 28px;
  }

  .benefits-band .section-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .benefits-band .section-head-title {
    line-height: 1.2;
  }

  .usage .section-head-title {
    line-height: 1.2;
    font-weight: 600;
  }


  .benefits-band .benefits-grid {
    gap: 10px;
  }

  .benefits-band .benefits-grid>.feature-card:nth-child(3) {
    order: 4;
  }

  .benefits-band .benefits-grid>.feature-card:nth-child(4) {
    order: 3;
  }

  .benefits-band .feature-card {
    min-height: auto;
    padding: 20px;
    border-radius: 15px;
  }

  .benefits-band .feature-card-content {
    max-width: none;
    min-height: 0;
  }

  .benefits-band .benefits-grid>.feature-card:nth-child(2) .feature-card-content,
  .benefits-band .benefits-grid>.feature-card:nth-child(3) .feature-card-content {
    width: 100%;
  }

  .benefits-band .feature-card--soft .feature-card-content {
    gap: 10px;
  }

  .benefits-band .feature-card--white .feature-card-content {
    gap: 14px;
  }

  .benefits-band .feature-card-title {
    color: var(--blue);
    line-height: 1.3;
    font-weight: 600;
  }

  .benefits-band .feature-card-text,
  .benefits-band .feature-card-list li {
    line-height: 1.4;
    font-weight: 400;
  }

  .benefits-band .feature-card-list {
    gap: 10px;
  }

  .benefits-band .feature-card-list li {
    padding-left: 16px;
  }

  .benefits-band .feature-card-list li::before {
    top: 12px;
  }

  .benefits-band .feature-card-media--boy,
  .benefits-band .feature-card-media--ear {
    display: none;
  }

  .benefits-band .feature-card-media--packs {
    position: absolute;
    inset: 0;
    min-height: 0;
    margin-top: 0;
  }

  .benefits-band .feature-card-media--packs img {
    top: 6px;
    right: var(--block-padding-small);
    left: auto;
    width: 149px;
    height: 140px;
    margin: 0;
  }

  .benefits-band .benefits-grid>.feature-card:first-child .feature-card-content {
    width: calc(100% - 140px);
    height: 100%;

  }

  .benefits-band .benefits-grid>.feature-card:first-child {
    min-height: 152px;
  }

  .instruction {
    gap: 28px;
  }

  .instruction .section-head {
    gap: 28px;
  }

  .instruction .section-head-title {
    line-height: 40px;
    max-width: 272px;
  }

  .instruction-layout {
    gap: 28px;
  }

  .instruction-panel {
    padding: 20px 20px 24px;
    border-radius: 16px;
    gap: 48px;
  }

  .accordion {
    gap: 20px;
  }

  .accordion-item {
    padding-bottom: 0;
  }

  .accordion-summary {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .accordion-label {
    order: 1;
    line-height: 1.3;
  }

  .accordion-icon {
    order: 2;
    color: var(--text);
  }

  .accordion-item[open] .accordion-icon {
    color: var(--blue);
  }

  .accordion-content {
    padding: 14px 0 0;
    line-height: 1.4;
  }

  .instruction-actions {
    gap: 14px;
  }

  .instruction-actions .button {
    min-height: 56px;
    padding: 16px 20px;
    line-height: 24px;
  }

  .instruction-actions .button svg {
    display: none;
  }

  .instruction-actions .inline-link {
    width: auto;
    margin: 0 auto;
    gap: 14px;
    line-height: 24px;
  }

  .instruction-aside {
    gap: 28px;
  }

  .instruction-pack {
    width: 224px;
    min-height: 224px;
  }

  .instruction-pack-circle {
    left: 50%;
    right: auto;
    width: 224px;
    height: 224px;
    transform: translateX(-50%);
  }

  .instruction-pack-circle img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 220px;
    height: 220px;
    margin: 0;
    transform: translate(-50%, -50%);
  }

  .instruction-brand {
    gap: 14px;
  }


  .instruction-brand-text {
    max-width: 300px;
    line-height: 24px;
  }

  .buy {
    gap: 28px;
    margin-bottom: 0px;
  }

  .buy .section-head {
    gap: 28px;
  }

  .buy .section-head-title {
    line-height: 40px;
  }

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

  .buy-card {
    border-radius: 20px;
    aspect-ratio: 160 / 96;
  }

  .buy-card img {
    object-fit: cover;
    padding: 0;
    mix-blend-mode: darken;
  }

  .buy-grid .buy-card:nth-child(n + 7) {
    display: none;
  }

  .buy-more {
    display: inline-flex;
    width: auto;
    margin: 0 auto;
    gap: 10px;
    line-height: 24px;
  }

  .buy-more svg {
    flex: 0 0 auto;
  }

  .articles {
    gap: 28px;
  }

  .articles .section-head {
    gap: 28px;
  }

  .articles .section-head-title {
    line-height: 40px;
    max-width: 300px;
  }

  .articles .section-head-row--split .inline-link {
    display: none;
  }

  .articles-grid {
    gap: 20px;
  }

  .article-card {
    border-radius: 16px;
    box-shadow: none;
    transform: none;
  }

  .article-card-media {
    aspect-ratio: auto;
    height: 180px;
    border-radius: 16px 16px 0 0;
  }

  .article-card-media::before {
    left: -237px;
    top: 0;
    width: 489px;
    height: 517px;
  }

  .article-card-media::after {
    display: none;
  }

  .article-card-media img {
    object-fit: cover;
  }

  .article-card-tags {
    left: 20px;
    bottom: 24px;
    gap: 6px;
  }

  .tag {
    padding: 4px 10px;
    line-height: 1.5;
  }

  .article-card-content {
    gap: 28px;
    padding: 20px;
    background: var(--paper);
    border: 0;
    border-radius: 0 0 16px 16px;
  }

  .article-card-copy {
    gap: 14px;
  }

  .article-card-title {
    line-height: 1.3;
  }

  .article-card-text {
    line-height: 1.5;
    -webkit-line-clamp: 2;
  }

  .meta {
    gap: 20px;
  }

  .meta::after {
    display: none;
  }

  .meta-list {
    gap: 20px;
  }

  .meta-item {
    line-height: 24px;
  }

  .articles-more {
    display: inline-flex;
    width: auto;
    margin: 0 auto;
    gap: 10px;
    line-height: 24px;
  }

  .articles-more svg {
    flex: 0 0 auto;
  }

  .page--contacts .footer {
    padding: 64px 0;
  }

  .footer {
    padding: 70px 0;
  }

  .footer-inner {
    gap: 0;
  }

  .footer-brand {
    justify-content: flex-start;
    gap: 0;
  }


  .footer-brand .footer-brand-text {
    display: none;
  }

  .footer-column {
    gap: 20px;
    margin-top: 40px;
  }

  .footer-inner>.footer-column:nth-child(2) {
    margin-bottom: 28px;
  }

  .footer-inner>.footer-column:nth-child(3) {
    margin-bottom: 40px;
  }

  .footer-column:last-child {
    gap: 28px;
  }

  .footer-title {
    margin-bottom: 5px;
    line-height: 1.4;
    font-weight: 600;
  }

  .footer-subtitle {
    line-height: 1.5;
  }

  .footer-nav {
    gap: 10px;
  }

  .footer-nav a {
    line-height: 1.5;
    opacity: 1;
  }

  .footer-policy {
    gap: 14px;
  }

  .footer-policy a {
    line-height: 20px;
  }

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

  .footer-company-mark {
    flex: 0 0 auto;
    width: 77px;
    min-width: 77px;
    height: auto;
  }

  .footer-company-text,
  .footer-brand-text--mobile {
    line-height: 20px;
  }

  .footer-company-text {
    flex: 1 1 auto;
  }

  .footer-brand-text--mobile {
    display: block;
    max-width: none;
  }

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

  .meta-list {
    gap: 20px;
  }
}

/* Keep intro/spotlight card media pinned to the bottom-right corner. */

.overview>.intro-card .intro-card-content,
.spotlight-card-content {
  padding-bottom: var(--home-card-content-bottom, 110px);
}

.overview>.intro-card .intro-card-visual,
.spotlight-card-visual {
  right: 0;
  bottom: 0;
  margin: 0;
  transform: none;
  overflow: hidden;
  pointer-events: none;
}

.overview>.intro-card .intro-card-visual img,
.spotlight-card-visual img {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.overview>.intro-card .intro-card-actions,
.spotlight-card-actions {
  bottom: var(--card-actions-bottom);
}

@media (max-width: 1180px) {

  .overview>.intro-card .intro-card-content,
  .spotlight-card-content {
    max-width: min(100%, 520px);
    padding-bottom: 104px;
  }

  .overview>.intro-card .intro-card-content {
    width: min(100%, 520px);
    padding-right: 0;
  }

  .overview>.intro-card .intro-card-visual,
  .spotlight-card-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: clamp(360px, 46vw, 520px);
    margin: 0;
  }

  .spotlight-card-visual {
    height: clamp(380px, 48vw, 540px);
  }

  .overview>.intro-card .intro-card-actions,
  .spotlight-card-actions {
    position: absolute;
    left: 30px;
    right: auto;
    bottom: 30px;
    margin: 0;
  }

  .overview>.intro-card .intro-card-actions {
    max-width: calc(100% - 60px);
  }

  .spotlight-card-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(calc(100% - 60px), 436px);
    gap: 10px;
  }

  .instruction-page .page-title-brand--accord img {
    transform: translateY(10px);
  }
}

@media (max-width: 640px) {

  .overview>.intro-card .intro-card-content {
    padding-bottom: 240px;
  }

  .spotlight-card-content {
    padding-bottom: 260px;
  }


  .overview>.intro-card .intro-card-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    margin: 0;
    aspect-ratio: auto;
  }

  .spotlight-card-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    margin: 0;
    aspect-ratio: auto;
  }

  .overview>.intro-card .intro-card-actions,
  .spotlight-card-actions {
    bottom: var(--page-shell-gutter);
    left: 20px;
    right: 20px;
    margin: 0;
  }

  .overview>.intro-card .intro-card-actions {
    max-width: 340px;
    left: initial;
  }

  .spotlight-card-actions {
    width: auto;
  }
}

@media (min-width: 640px) and (max-width: 1180px) {
  .overview>.intro-card .intro-card-actions {
    left: var(--page-shell-gutter);
    bottom: var(--page-shell-gutter);
  }

  .overview>.intro-card {
    min-height: initial;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .overview>.intro-card {
    min-height: initial;
    padding: calc(2 * var(--page-shell-gutter)) var(--page-shell-gutter) var(--page-shell-gutter) var(--page-shell-gutter);
  }


  .overview>.intro-card .intro-card-content {
    width: 100%;
    max-width: 100%;
    padding-bottom: 330px;
  }

  .overview>.intro-card .intro-card-visual {
    height: 370px;
  }

  .overview>.intro-card .intro-card-text {
    margin-bottom: 0px;
    width: 80%;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .overview>.intro-card {
    padding: calc(var(--page-shell-gutter) / 2);
  }

  .overview>.intro-card .intro-card-actions {
    left: calc(var(--page-shell-gutter) / 2);
    bottom: calc(var(--page-shell-gutter) / 2);
  }

}

@media (min-width: 1024px) and (max-width: 1180px) {


  .overview>.intro-card .intro-card-visual {
    height: 70%;
  }

  .overview>.intro-card .intro-card-content {
    width: 80%;
    max-width: 80%;
    padding-bottom: 160px;

  }

  .overview>.intro-card .intro-card-text {
    max-width: 80%;
  }

  .overview>.intro-card .intro-card-visual {
    height: 400px;
  }
}

@media (min-width: 1180px) {
  .overview>.intro-card .intro-card-actions {
    bottom: var(--block-padding);
  }
}



@media (min-width: 641px) and (max-width: 1023px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid>.feature-card:nth-child(1) .feature-card-content,
  .benefits-grid>.feature-card:nth-child(2) .feature-card-content,
  .benefits-grid>.feature-card:nth-child(3) .feature-card-content {
    width: min(100%, calc(100% - 210px));
    height: 100%;
  }

}

@media (min-width: 1024px) and (max-width: 1180px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    min-height: 300px;
  }

  .feature-card-media--packs img {
    width: auto;
    height: calc(100% - 2 * var(--block-padding-small) - 3.7em);
    top: initial;
    bottom: var(--block-padding-small);
    font-size: var(--font-typ-h5);
  }

  .benefits-grid>.feature-card:nth-child(1) .feature-card-content,
  .benefits-grid>.feature-card:nth-child(2) .feature-card-content,
  .benefits-grid>.feature-card:nth-child(3) .feature-card-content {
    width: 100%;
  }

  .feature-card-media--boy img,
  .feature-card-media--ear img {
    top: initial;
    width: 35%;
    height: initial;
    bottom: var(--block-padding-small);
  }

  .benefits-grid .feature-card-list li {
    width: 55%;
  }

  .benefits-grid>.feature-card:nth-child(3) .feature-card-list li:nth-child(1) {
    width: 100%;
  }
}

@media (min-width: 1181px) {
  .feature-card-media--packs img {
    width: 60%;
    height: auto;
    top: initial;
    bottom: var(--home-card-padding-md, 40px);
  }

  .benefits-grid>.feature-card:nth-child(1) .feature-card-content,
  .benefits-grid>.feature-card:nth-child(2) .feature-card-content,
  .benefits-grid>.feature-card:nth-child(3) .feature-card-content,
  .benefits-grid>.feature-card:nth-child(4) .feature-card-content {
    width: 100%;
    height: 100%;
    max-width: initial;
  }

  .feature-card-title {
    width: 80%;
    max-width: calc(100% - 150px);
    letter-spacing: -0.5px;
  }

  .benefits-grid>.feature-card:nth-child(4) .feature-card-content .feature-card-text {
    width: 16em;
  }

  .feature-card-media {
    position: absolute;
    inset: initial;
    right: initial;
    bottom: initial;
    z-index: 1;
    font-size: var(--font-typ-h5);
    /*height: calc(100% - var(--block-padding-small) - 2.5em);*/
    bottom: 0px;
    width: calc(100% - var(--block-padding-small));
    right: 0;
    line-height: 0;
    min-height: calc(175px + var(--block-padding-small));
    height: 175px;
  }

  .benefits-grid>.feature-card:nth-child(2) {
    height: calc(175px + var(--block-padding-small));
  }

  .feature-card-media--boy img {
    right: calc(0.5 * var(--block-padding-small));
    top: initial;
    width: auto;
    height: calc(100% - var(--block-padding-small));
    object-fit: contain;
    bottom: calc(0.5 * var(--block-padding-small));
  }

  .feature-card-media--ear img {
    right: calc(1 * var(--block-padding-small));
    top: initial;
    width: auto;
    height: calc(100% - var(--block-padding-small));
    object-fit: contain;
    bottom: calc(1 * var(--block-padding-small));
  }

  .benefits-grid .feature-card-list li {
    width: calc(100% - 175px - var(--block-padding-small));
  }

  .benefits-grid .feature-card-list li:nth-of-type(1),
  .benefits-grid .feature-card-list li:nth-of-type(2) {
    width: 100%;
  }

  .feature-card-media--packs img {
    width: auto;
    height: 60%;
    top: initial;
    bottom: 10%;
  }
}


@media (min-width: 1680px) {
  .feature-card-media--packs img {
    width: auto;
    height: 70%;
    top: initial;
    bottom: 10%;
  }
}

@media (min-width: 640px) and (max-width: 1180px) {
  .spotlight-card .spotlight-card-actions {
    left: var(--page-shell-gutter);
    bottom: var(--page-shell-gutter);
  }

  .spotlight-card {
    min-height: initial;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .spotlight-card {
    min-height: initial;
    padding: calc(2 * var(--page-shell-gutter)) var(--page-shell-gutter) var(--page-shell-gutter) var(--page-shell-gutter);
  }



  .spotlight-card .spotlight-card-content {
    width: 100%;
    max-width: 100%;
    padding-bottom: 250px;
  }

  .spotlight-card .spotlight-card-visual {
    height: 370px;
  }

  .spotlight-card .spotlight-card-text {
    margin-bottom: 0px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {

  .spotlight-card .spotlight-card-content {
    padding-bottom: 200px;
  }
}

@media (min-width: 900px) and (max-width: 1023px) {

  .spotlight-card .spotlight-card-content {
    padding-bottom: 120px;
  }
}

@media (min-width: 900px) and (max-width: 1180px) {

  .usage-method {
    grid-template-columns: 2fr 1fr;
  }

  .usage-method-visual {
    order: 1;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .spotlight-card {
    padding: calc(var(--page-shell-gutter) / 2);
  }

  .spotlight-card .spotlight-card-actions {
    left: calc(var(--page-shell-gutter) / 2);
    bottom: calc(var(--page-shell-gutter) / 2);
  }

}

@media (min-width: 1024px) and (max-width: 1180px) {
  .spotlight-card {
    min-height: initial;
  }

  .spotlight-card .spotlight-card-visual {
    height: 70%;
  }

  .spotlight-card .spotlight-card-content {
    width: 80%;
    max-width: 80%;
    padding-bottom: 120px;

  }

  .spotlight-card .feature-card-list li {
    width: 80%;
  }

  .spotlight-card .spotlight-card-visual {
    height: 400px;
  }
}

@media (min-width: 1180px) {
  .spotlight-card {
    min-height: initial;
  }

  .spotlight-card .feature-card-list {
    margin-top: var(--block-padding-small);
  }

  .spotlight-card-visual {
    height: 100%;
  }

  .spotlight-card .spotlight-card-actions {
    bottom: var(--block-padding);
  }

  .spotlight-card-content {
    padding-bottom: var(--block-padding);
  }
}


@media (min-width: 1181px) {
  .usage-method-visual img {
    aspect-ratio: 2/1;
    max-height: calc(6 * var(--block-padding));
    width: auto;
  }

  .usage-method-copy {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-top: auto;
  }
}

@media (min-width: 1600px) {

  .hero-title,
  .page-title,
  .article-hero-title {
    width: 950px;
  }

  .instruction-page .page-title-brand--accord img {
    transform: translateY(16px);
  }

  .page--accord .accord-overview .accord-story-kicker-row {
    width: 1000px;
  }

  .instruction-page .page-title {
    width: auto;
  }

}

@media (max-width: 640px) {

  .instruction-actions {
    align-items: center;
  }


}


/* Accord page */
.page--accord {
  --page-pink: var(--accord-color-accent);
  --page-blue: var(--accord-color-link);
  --page-blue-deep: var(--accord-color-link-deep);
  --page-blue-soft: var(--accord-color-accent-soft);
  --page-blue-soft-alt: var(--accord-color-card);
  --page-band: var(--accord-color-band);
  --page-paper: var(--accord-color-plate);
  --page-buy-card-bg-image: url("assets/img/logo/bg-accord.png");
}

.page--accord .shell {
  width: min(calc(100% - (var(--page-shell-gutter, 24px) * 2)), var(--shell));
  max-width: none;
  margin-inline: auto;
  gap: var(--block-padding-small);
}

.page--accord .hero-accord {
  padding-block: 0;
}

.page--accord .hero-accord .hero-inner {
  min-height: initial;
}

.page--accord .button--primary {
  background: var(--accord-color-link);
}

.page--accord .button--secondary {
  background: var(--white);
  color: var(--accord-color-link);
}

.page--accord .button--primary:hover {
  background: var(--white);
  color: var(--accord-color-link);
}

.page--accord .button--secondary:hover {
  background: var(--accord-color-link);
  color: var(--white);
}

.page--accord .inline-link:hover,
.page--accord .buy-more:hover {
  color: var(--accord-color-accent);
}

.page--accord .footer {
  background: var(--accord-color-band);
}

.page--accord .footer-nav a:hover,
.page--accord .footer-policy a:hover {
  color: var(--accord-color-signal);
}

.page--accord .footer-title-link:hover {
  color: var(--accord-color-signal);
  opacity: 1;
}

.page--accord .accordion-item[open] .accordion-label,
.page--accord .accordion-item[open] .accordion-icon {
  color: var(--accord-color-accent);
}

.articles .inline-link svg path,
.articles-more svg path {
  stroke: currentColor;
}

.page--accord .articles .inline-link,
.page--accord .articles-more {
  color: var(--accord-color-accent);
}

.page--accord .articles .inline-link:hover,
.page--accord .articles-more:hover {
  color: var(--accord-color-link);
}

.page--accord .article-card--featured .article-card-content,
.page--accord .article-card:hover .article-card-content {
  background: transparent;
}

.page--accord .article-card--featured,
.page--accord .article-card:hover {
  background: var(--accord-color-accent-soft);
}

.page--accord .article-card--featured .article-card-title,
.page--accord .article-card:hover .article-card-title {
  color: var(--accord-color-accent);
}

.page--accord .article-card-media::after {
  background: rgba(223, 28, 112, 0.2);
}

.page--accord .meta-icon {
  color: var(--accord-color-accent);
}

.page--accord .meta::after {
  background: center / 16px 16px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4.00016 12L12.0002 4M12.0002 4H3.3335M12.0002 4V12.6667' stroke='%23DF1C70' stroke-width='2'/%3E%3C/svg%3E");
}

.page--accord .article-note {
  color: var(--accord-color-accent);
}

.accord-lockup {
  display: inline-flex;
  align-items: flex-end;
  gap: 18px;
}

.accord-lockup .brand-lockup {
  width: 5em !important;
}


.accord-lockup-text {
  color: var(--accord-color-accent);
  /*font-size: clamp(28px, 2.3vw, 48px);*/
  line-height: 1;
  font-weight: 600;
}

.accord-lockup--inverse .accord-lockup-text {
  color: var(--white);
}

.accord-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: calc(var(--block-padding-small) / 2);
}

.accord-list li {
  position: relative;
  padding-left: 18px;
  font-size: var(--font-typ-p);
  line-height: 1.4;
  color: var(--text);
  font-size: var(--font-typ-h6);
  max-width: 26em;
}

.accord-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 3px;
  border-radius: 20px 0 20px 0;
  background: var(--pink);
}

.accord-hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0px;
  background: var(--red-deep);
}

.accord-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 2%;
  width: 34vw;
  min-width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

.accord-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 586px);
  align-items: start;
  gap: clamp(40px, 4vw, 90px);
}

.accord-hero-copy {
  width: min(100%, 954px);
  display: grid;
  align-content: start;
  gap: var(--home-gap-hero, 50px);
}

.accord-hero-heading {
  display: grid;
  gap: 20px;
}

.accord-hero-title {
  margin: 0;
  color: var(--white);
  font-size: var(--font-typ-h1);
  line-height: 1.22;
  font-weight: 600;
  width: 954px;
}

.accord-hero-lead {
  margin: 0;
  max-width: 682px;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-typ-h6);
  line-height: 1.5;
}

.accord-signal-group {
  display: grid;
  max-width: 760px;
  gap: var(--home-gap-card, 28px);
}

.accord-signal-title {
  margin: 0;
  color: var(--white);
  font-size: var(--font-typ-h5);
  line-height: 1.33;
  font-weight: 600;
}

.accord-hero .accord-list {
  gap: 14px;
}

.accord-hero .accord-list li {
  color: var(--white);
  font-size: var(--font-typ-h6);
  line-height: 1.5;
  font-weight: 400;
}

.accord-hero .accord-list li::before {
  top: 50%;
  transform: translateY(-50%);
  background: var(--accord-color-signal);
}

.accord-hero-actions {
  width: fit-content;
}

.accord-hero-actions .button {
  min-width: 186px;
}

.accord-hero-visual {
  position: relative;
  min-height: 694px;
  display: flex;
  align-items: start;
  justify-content: flex-end;
}

.accord-hero-product {
  position: relative;
  z-index: 2;
  width: min(100%, 586px);
  height: auto;
  filter: drop-shadow(0 28px 44px rgba(48, 7, 24, 0.22));
}

.accord-overview {
  display: grid;
}

.accord-story-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "copy ."
    "copy actions";
  column-gap: var(--block-padding-small);
  align-items: stretch;
  width: 100%;
  max-width: 1540px;
  padding: var(--block-padding) !important;
  background: var(--paper);
  border-radius: var(--radius);
}

.accord-story-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  padding-bottom: 0;
  max-width: 856px;
  gap: var(--home-display-gap, 150px);
  min-height: auto;
}

.accord-story-header {
  display: grid;
  gap: 10px;
}

.accord-story-kicker-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  width: 100%;
  gap: 24px;
}

.accord-story-kicker,
.accord-story-title {
  margin: 0;
  color: var(--accord-color-accent);
  line-height: 1.16;
  font-weight: 600;
}

.accord-story-title {
  font-size: var(--font-typ-h4) !important;
  margin-top: 0.2em;
  max-width: 15em;
}

@media (min-width: 1024px) {
  .accord-story-title {
    font-size: var(--font-typ-h2) !important;
    margin-top: 0;
    line-height: 1em;
  }
}

.accord-story-brand {
  min-width: 0;
  line-height: 0;
}

.accord-story-brand img {
  width: clamp(119px, 18.4vw, 228px);
  height: auto;
}

.accord-story-brand-2 img {
  width: clamp(223px, 18.4vw, 427px);
  height: auto;
}

.accord-story-list {
  max-width: 100%;
}

@media(min-width: 640px) {
  .accord-story-list {
    max-width: 80%;
  }

}

.accord-story-card .intro-card-visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(100%, 710px);
  height: var(--home-card-visual-height, 650px);
  margin: 0;
  transform: none;
  overflow: hidden;
  pointer-events: none;
}

.accord-story-card .intro-card-visual img {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  width: 100%;
  height: 100%;
  transform: none;
  object-fit: contain;
  object-position: right bottom;
}

.accord-story-actions {
  position: relative;
  z-index: 2;
  justify-self: end;
  align-self: end;
  margin: 0;
}

.accord-story-actions .button {
  min-width: 186px;
}

.accord-advantage {
  overflow: hidden;
  padding: var(var(--block-padding) 0) 0;
  background: var(--red-deep);
}

.accord-advantage-inner {
  display: grid;
}

.accord-advantage-head {
  display: grid;
  gap: 12px;
}

.accord-advantage-title {
  margin: 0;
  max-width: 18ch;
  color: var(--white);
  font-size: clamp(36px, 4.6vw, 72px);
  line-height: 1.16;
  font-weight: 600;
}

.accord-advantage .section-head-title:first-of-type {
  margin-bottom: -0.1em;
  margin-top: -0.2em;
}

.accord-advantage-brand {
  width: fit-content;
  margin-left: min(580px, 37.7%);
}


.accord-advantage-brand .accord-lockup-text {
  font-size: clamp(32px, 3vw, 48px);
}

.accord-advantage-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--block-padding-small);
}

.accord-note-card,
.accord-product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.accord-note-card {
  padding: calc(0.8 * var(--block-padding-small)) var(--block-padding-small) var(--block-padding-small) var(--block-padding-small);
  display: grid;
  gap: calc(0.6 * var(--block-padding-small));
}

.accord-note-card--soft {
  background: var(--accord-color-accent-soft);
}

.accord-note-card--white {
  background: var(--white);
}

.accord-note-card--small {
  grid-column: span 5;
}

.accord-note-card--wide {
  grid-column: span 7;
}

.accord-note-card--support {
  grid-column: span 5;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.accord-note-card--feature {
  align-content: space-between;
}

.accord-note-card-mark {
  justify-self: end;
  width: 96px;
  height: 96px;
  background: rgba(124, 23, 61, 0.2);
}

.accord-note-card-mark--icon {
  display: grid;
  place-items: center;
  background: none;
  opacity: 0.2;
  max-width: 90px;
  max-height: 90px;
}

.accord-note-card-mark--icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.accord-note-card--benefits {
  align-content: start;
}

.accord-note-card-title {
  margin: 0;
  color: var(--accord-color-accent);
  font-size: var(--font-typ-h6) !important;
  font-weight: 600;
}

.accord-note-card-text {
  margin: 0;
  color: var(--text);
  font-size: var(--font-typ-p) !important;
  line-height: 1.5;
}

.accord-note-card-list li::before {
  background: var(--accord-color-band);
}

.accord-note-card--benefits .accord-note-card-list {
  gap: calc(var(--block-padding-small) / 3);
}

.accord-note-card--benefits .accord-note-card-list li {
  font-size: var(--font-typ-p);
  line-height: 1.2;
}

.accord-note-card--support .accord-note-card-title {
  font-size: var(--font-typ-p);
  line-height: 1.2;
  max-width: 10em;
}

.accord-note-card--benefits .accord-note-card-list li {
  color: var(--text);
  font-weight: 400;
}


.accord-product-card {
  grid-column: span 7;
  padding: var(--block-padding-small);
  background: var(--white);
}

.accord-product-card-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 396px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.accord-note-card--support,
.accord-product-card--advantage {
  min-height: 240px;

}

.accord-product-brand {
  display: inline-flex;
  width: fit-content;
  line-height: 0;
}

.accord-product-brand img {
  width: min(100%, 225px);
  height: auto;
}

.accord-product-lockup {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  width: fit-content;
}

.accord-product-lockup-main,
.accord-product-lockup-sub {
  display: inline-flex;
  line-height: 0;
}

.accord-product-lockup--duo .accord-product-lockup-main {
  width: 100%;
}

.accord-product-lockup-main img {
  width: min(100%, 132px);
  height: auto;
}

.accord-product-lockup--duo .accord-product-lockup-main img {
  width: 100%;
}

.accord-product-lockup-sub img {
  width: min(100%, 136px);
  height: auto;
}

.accord-product-card-actions {
  display: grid;
  gap: 10px;
  width: min(100%, 282px);
  margin-top: calc(0.6 * var(--block-padding-small));
}

.accord-product-card-actions .button {
  justify-content: space-between;
}

.accord-product-card-actions .button--secondary {
  width: max-content;
  background: var(--paper);
}

.accord-product-card-actions .button--primary {
  width: 100%;
}

.accord-product-pack {
  position: absolute;
  right: -6px;
  bottom: 0;
  width: min(54%, 475px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.18));
}

.accord-support-media {
  justify-self: end;
  width: 252px;
  aspect-ratio: 1;
  border-radius: 350px;
  overflow: hidden;
  background: var(--accord-color-link);
}

.accord-support-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accord-usage {
  display: grid;
  gap: var(--block-padding-small) !important;
}

.accord-usage-head {
  display: grid;
  gap: var(--block-padding-small) !important;
}

.accord-usage-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.3em;
  font-size: var(--font-typ-h2);
}

.accord-usage-title {
  margin: 0;
  color: var(--accord-color-accent);
  font-size: var(--font-typ-h2);
  line-height: 1.2;
  font-weight: 600;
}

.accord-usage-lockup {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
}

.accord-usage-lockup-main,
.accord-usage-lockup-sub {
  display: inline-flex;
  line-height: 0;
}

.accord-usage-lockup-main img {
  width: clamp(160px, 14vw, 228px);
  height: auto;
}

.accord-usage-lockup-sub img {
  width: clamp(132px, 11vw, 189px);
  height: auto;
}

.accord-usage-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--block-padding-small);
  align-items: stretch;
}


.accord-usage-side {
  display: flex;
  grid-column: 1;
}

.accord-usage-card {
  flex: 1 1 auto;
  padding: var(--block-padding-small);
  background: var(--accord-color-accent-soft);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--block-padding-small);
}

.accord-usage-card-title {
  margin: 0;
  color: var(--accord-color-accent);
  font-size: var(--font-typ-h5) !important;
  line-height: 1.33;
  font-weight: 600;
}

.accord-usage-list {
  width: 100%;
  gap: 14px;
}

.accord-usage-visual {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  grid-column: 1;
}

@media (min-width: 1024px) {
  .accord-usage-layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .accord-usage-visual {
    grid-column: span 5;
  }

  .accord-usage-side {
    grid-column: span 7;
  }

  .accord-usage-card {
    padding: calc(4 * var(--block-padding)) var(--block-padding) var(--block-padding) var(--block-padding);

  }

}

.accord-usage-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accord-instruction {
  display: grid;
  gap: clamp(32px, 4vw, 48px);
}

.accord-instruction-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(24px, 2vw, 28px);
  align-items: start;
}

.page--accord .instruction-panel {
  background: var(--paper);
}

.page--accord .instruction-pack-circle {
  background: var(--accord-color-link);
}

.page--accord .instruction-brand-text strong {
  color: var(--accord-color-accent);
}

@media (max-width: 1180px) {
  .accord-hero {
    min-height: auto;
    padding: 56px 0;
  }

  .accord-hero-inner,
  .accord-story-card,
  .accord-instruction-layout {
    grid-template-columns: 1fr;
  }


  .accord-hero-lead {
    max-width: none;
  }

  .accord-hero-copy {
    width: 100%;
    gap: 36px;
  }

  .accord-hero-visual {
    min-height: 0;
    justify-content: center;
  }

  .accord-hero-product {
    width: min(100%, 520px);
  }

  .accord-story-card {
    grid-template-rows: auto auto;
    grid-template-areas:
      "copy"
      "actions";
    min-height: auto;
  }

  .accord-story-card::before {
    top: 34%;
    right: -18%;
    width: min(720px, 76vw);
  }

  .accord-story-card::after {
    right: -2%;
    bottom: -36%;
    width: min(560px, 64vw);
  }

  .accord-story-copy {
    max-width: none;
    gap: 36px;
  }

  .accord-story-actions {
    justify-self: start;
  }

  .accord-advantage {
    padding: 88px 0;
  }

  .accord-advantage-head {
    gap: 16px;
  }

  .accord-advantage-brand {
    margin-left: 0;
  }

  .accord-advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .accord-note-card--small,
  .accord-note-card--wide,
  .accord-product-card,
  .accord-note-card--support {
    grid-column: auto;
  }

  .accord-product-card-copy {
    width: min(100%, 52%);
  }

  .accord-product-pack {
    width: min(46%, 320px);
  }
}

@media (max-width: 768px) {
  .accord-hero {
    padding: 48px 0 40px;
  }

  .accord-hero-copy,
  .accord-story-copy,
  .accord-usage-card {
    gap: var(--block-padding-small);
  }

  .accord-signal-group {
    gap: var(--block-padding-small);
  }

  .accord-story-card,
  .accord-note-card,
  .accord-product-card {
    padding: var(--block-padding-small);
  }

  .accord-story-kicker-row {
    gap: 18px;
  }

  .accord-story-card::before {
    top: 42%;
    right: -24%;
    width: min(520px, 88vw);
  }

  .accord-story-card::after {
    right: -14%;
    bottom: -30%;
    width: min(420px, 74vw);
  }

  .accord-advantage-grid {
    grid-template-columns: 1fr;
  }

  .accord-advantage {
    padding: 72px 0;
  }

  .accord-advantage-brand {
    margin-left: 0;
  }

  .accord-product-card {
    min-height: auto;
  }

  .accord-product-card-copy {
    width: 100%;
    min-height: 0;
    gap: 24px;
  }

  .accord-product-pack {
    position: static;
    width: min(100%, 320px);
    margin-top: 24px;
    margin-left: auto;
  }

  .accord-note-card--support {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .accord-support-media {
    width: 220px;
  }

  .accord-usage-title-row {
    align-items: flex-end;
  }

  .accord-usage-lockup-main img {
    width: min(100%, 184px);
  }

  .accord-usage-lockup-sub img {
    width: min(100%, 148px);
  }

  .accord-usage-visual {
    min-height: 320px;
  }
}

@media (min-width: 641px) and (max-width: 1180px) {


  .accord-story-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "copy";
    align-content: start;
    row-gap: 0;
  }



  .accord-story-kicker-row {
    width: 100%;
    gap: 18px 24px;
  }

  .accord-story-card .intro-card-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: clamp(320px, 36vw, 420px);
    margin: 0;
    transform: none;
    overflow: hidden;
    pointer-events: none;
  }

  .accord-story-card .intro-card-visual img {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: contain;
    object-position: right bottom;
  }

  .accord-story-actions {
    position: absolute;
    right: auto;
    bottom: 32px;
    left: 32px;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(calc(100% - 64px), 436px);
    gap: 10px;
    margin: 0;
  }

  .accord-story-actions .button {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .page--accord .shell {
    width: auto;
    max-width: none;
    margin-inline: 16px;
  }

  .page--accord .hero-accord {
    padding-top: 30px;
    padding-bottom: clamp(20px, 6vw, 40px);
  }

  .page--accord .hero-accord .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "signals"
      "media"
      "actions";
    align-content: start;
    gap: 28px;
    min-height: 0;
    padding: 0;
  }

  .hero-accord .hero-copy {
    display: contents;
  }

  .hero-accord .hero-copy-main {
    grid-area: main;
    gap: 20px;
  }

  .accord-hero-actions,
  .accord-story-actions,
  .accord-product-card-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .accord-hero-actions .button,
  .accord-story-actions .button,
  .accord-product-card-actions .button {
    width: 100%;
    min-width: 0;
  }

  .accord-hero::after {
    display: none;
  }

  .hero-accord .hero-title {
    grid-area: auto;
    max-width: none;
    line-height: 40px;
  }

  .hero-accord .hero-text {
    grid-area: auto;
    gap: 0;
  }

  .hero-accord .hero-text p {
    line-height: 1.3;
  }

  .hero-accord .hero-signal-group {
    grid-area: signals;
    gap: 14px;
  }

  .hero-accord .hero-signal-title {
    font-size: 20px;
    line-height: 24px;
  }

  .hero-accord .hero-signal-list {
    gap: 10px;
  }

  .hero-accord .hero-signal-list li {
    padding-left: 16px;
    line-height: 1.4;
  }

  .hero-accord .hero-signal-list li::before {
    top: 12px;
    background: var(--white);
  }

  .hero-accord .hero-media {
    grid-area: media;
    justify-self: stretch;
    align-self: start;
    width: 100%;
    height: 173px;
    aspect-ratio: auto;
    margin: 0;
    width: 70%;
    max-width: 300px;
    height: auto;
    justify-self: center;
    margin-top: -20px;
  }

  .hero-accord .hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .hero-accord .button-row {
    grid-area: actions;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: none;
    margin: 0;
    font-size: var(--font-typ-p);
    max-width: 25em;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-accord .button {
    min-height: 56px;
    padding: 16px 20px;
    font-size: 16px;
    line-height: 24px;
    justify-content: center;
  }

  .hero-accord .button svg {
    display: none;
  }

  .accord-story-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "copy";
    align-content: start;
    row-gap: 0;
    width: auto;
    padding: 30px 20px 20px;
    border-radius: 16px;
    padding: calc(2 * var(--page-shell-gutter)) var(--page-shell-gutter) var(--page-shell-gutter);
  }

  .accord-story-card::before,
  .accord-story-card::after {
    display: none;
  }

  .accord-story-copy {
    z-index: 2;
    display: grid;
    align-content: start;
    justify-content: start;
    width: 100%;
    min-height: 0;
    gap: 28px;
    padding-bottom: 270px;
  }

  .accord-story-header {
    gap: 20px;
  }

  .accord-story-kicker-row {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: start;
    align-items: end;
    width: auto;
    column-gap: 6px;
    row-gap: 10px;
  }

  .accord-story-kicker {
    grid-column: 1 / -1;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 0.3em;
  }

  .accord-story-brand img {
    width: 112px;
    transform: none;
  }

  .accord-story-brand-2 img {
    width: 223px;
    transform: none;
  }



  .accord-story-list li::before {
    top: 12px;
    transform: none;
  }

  .accord-story-card .intro-card-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    margin: 0;
    transform: none;
    aspect-ratio: auto;
    overflow: hidden;
    pointer-events: none;
  }

  .accord-story-card .intro-card-visual::before,
  .accord-story-card .intro-card-visual::after {
    display: none;
  }

  .accord-story-card .intro-card-visual img {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: contain;
    object-position: right bottom;
    z-index: 1;
  }

  .accord-story-actions {
    position: absolute;
    right: var(--page-shell-gutter);
    bottom: var(--page-shell-gutter);
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: auto;
  }

  .accord-story-actions .button {
    min-height: 56px;
    padding: 16px 20px;
    font-size: 16px;
    line-height: 24px;
    justify-content: center;
    gap: 0;
  }

  .accord-story-actions .button--secondary {
    color: var(--accord-color-link);
  }

  .accord-story-actions .button span {
    width: 100%;
    min-width: 0;
    text-align: center;
    white-space: normal;
  }

  .accord-story-actions .button svg {
    display: none;
  }

  .accord-usage {
    gap: 28px;
  }

  .accord-usage-head {
    gap: 28px;
  }

  .accord-usage-title-row {
    display: grid;
    justify-items: start;
    gap: 10px;
  }

  .accord-usage-title {
    font-size: 36px;
    line-height: 40px;
  }

  .accord-usage-lockup {
    gap: 6px;
  }

  .accord-usage-lockup-main img {
    width: 112px;
  }

  .accord-usage-lockup-sub img {
    width: 96px;
  }

  .accord-usage-layout {
    gap: 10px;
  }

  .accord-usage-card {
    min-height: auto;
    padding: 20px;
    gap: 14px;
    border-radius: 16px;
  }

  .accord-usage-card-title {
    font-size: 20px;
    line-height: 24px;
  }


  .accord-usage-break {
    display: none;
  }

  .accord-usage-visual {
    min-height: 210px;
    border-radius: 16px;
  }

  .accord-advantage-title {
    font-size: 42px;
    line-height: 1.14;
  }

  .accord-note-card-title,
  .accord-note-card--support .accord-note-card-title {
    font-size: var(--font-typ-h5);
    line-height: 1.3;
  }

  .accord-advantage-brand {
    margin-left: 0;
    gap: 6px;
  }


  .accord-advantage {
    padding: 64px 0;
  }

  .accord-advantage-inner {
    gap: 0px;
  }

  .benefits-band.accord-advantage .section-head {
    gap: 10px;
  }

  .benefits-band.accord-advantage .section-head-row {
    display: grid;
    grid-template-columns: auto auto;
    align-items: end;
    justify-content: start;
    column-gap: 6px;
    row-gap: 2px;
  }

  .benefits-band.accord-advantage .section-head-title {
    grid-column: 1 / -1;
    font-size: 36px;
    line-height: 40px;
  }


  .benefits-band.accord-advantage .section-head-row .brand-lockup--inverse img {
    width: 112px;
  }

  .benefits-band.accord-advantage .section-head-row .accord-story-brand-2 img {
    width: 96px;
    transform: none;
  }

  .accord-advantage-head {
    gap: 10px;
  }

  .accord-advantage-title {
    font-size: 36px;
    line-height: 40px;
  }

  .accord-advantage-brand .accord-lockup-text {
    font-size: 24px;
    line-height: 32px;
  }

  .accord-advantage-grid {
    gap: 10px;
  }

  .accord-note-card,
  .accord-product-card {
    border-radius: 16px;
  }

  .accord-note-card {
    min-height: auto;
    padding: 20px;
    gap: 20px;
  }

  .accord-note-card--feature {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
  }

  .accord-note-card-mark {
    width: 36px;
    height: 36px;
  }

  .accord-note-card--feature .accord-note-card-mark {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: end;
  }

  .accord-note-card--feature .accord-note-card-title {
    grid-column: 1;
    grid-row: 1;
    max-width: 100%;
  }

  .accord-note-card--benefits .accord-note-card-title {
    max-width: none;
  }

  .accord-note-card--benefits .accord-note-card-list li {
    font-size: 18px;
    line-height: 1.44;
  }

  .accord-note-card--benefits .accord-note-card-list {
    gap: 10px;
  }

  .accord-note-card--benefits .accord-note-card-list li::before {
    top: 12px;
    transform: none;
  }

  .accord-note-card--support {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    order: 3;
  }

  .accord-support-media {
    justify-self: end;
    width: 80px;
  }

  .accord-product-card--advantage {
    order: 4;
  }

  .accord-product-card--advantage .accord-product-card-copy {
    min-height: 232px;
    gap: 180px;
  }

  .accord-product-brand img {
    width: min(100%, 131px);
  }

  .accord-product-lockup {
    gap: 6px;
  }

  .accord-product-lockup-main img {
    width: min(100%, 98px);
  }

  .accord-product-lockup-sub img {
    width: min(100%, 102px);
  }

  .accord-product-card--advantage .accord-product-card-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .accord-product-card--advantage .accord-product-card-actions .button {
    min-height: 56px;
    padding: 16px 20px;
    font-size: 16px;
    line-height: 24px;
    justify-content: center;
    gap: 0;
  }

  .accord-product-card--advantage .accord-product-card-actions .button span {
    width: 100%;
    min-width: 0;
    text-align: center;
    white-space: normal;
  }

  .accord-product-card--advantage .accord-product-card-actions .button svg {
    display: none;
  }

  .accord-product-card--advantage .accord-product-card-actions .button--secondary,
  .accord-product-card--advantage .accord-product-card-actions .button--primary {
    width: 100%;
  }

  .accord-product-card--advantage .accord-product-pack {
    position: absolute;
    top: 48px;
    left: 39px;
    right: auto;
    bottom: auto;
    width: 235px;
    height: 165px;
    object-fit: contain;
    margin: 0;
  }
}

/* Accord brand lockups: align by visible shape, not by raw SVG box. */
/*
.page--accord .header .brand-lockup--small,
.page--accord .header-mobile-brand,
.page--accord .footer-brand .brand-lockup--footer,
.page--accord .accord-story-brand,
.page--accord .benefits-band.accord-advantage .section-head-row .brand-lockup--inverse,
.page--accord .accord-product-lockup-main,
.page--accord .accord-product-lockup-sub,
.page--accord .accord-usage-lockup-main,
.page--accord .accord-usage-lockup-sub,
.page--accord .instruction-brand>div>.brand-lockup:not(.accord-story-brand-2),
.page--accord .instruction-brand .accord-story-brand-2,
.page--accord .accord-story-brand-2 {
  display: inline-flex;
  align-items: flex-start;
  overflow: visible;
  line-height: 0;
  vertical-align: bottom;
}

.page--accord .header .brand-lockup--small,
.page--accord .header-mobile-brand,
.page--accord .footer-brand .brand-lockup--footer {
  height: clamp(35px, 4.24vw, 70px);
  transform: none;
}

.page--accord .accord-story-brand,
.page--accord .benefits-band.accord-advantage .section-head-row .brand-lockup--inverse {
  height: clamp(33px, 5.45vw, 68px);
  transform: none;
}

.page--accord .accord-story-brand-2 {
  height: clamp(33px, 5.45vw, 68px);
  transform: none;
}

.page--accord .accord-product-lockup-main,
.page--accord .accord-product-lockup-sub {
  height: clamp(31px, 2.95vw, 42px);
  transform: none;
}

.page--accord .accord-usage-lockup-main,
.page--accord .accord-usage-lockup-sub {
  height: clamp(33px, 4.75vw, 68px);
  transform: none;
}


.page--accord .instruction-brand .accord-story-brand-2 {
  height: clamp(34px, 3.2vw, 46px);
  transform: none;
}

.page--accord .accord-pink-logo-image,
.page--accord .accord-white-logo-image,
.page--accord .accord-secondary-logo-image {
  display: block;
  height: auto;
  max-width: none;
  transform-origin: center bottom;
}

@media (max-width: 640px) {
  .page--accord .accord-story-brand {
    height: 33px;
  }

  .page--accord .accord-story-brand-2,
  .page--accord .benefits-band.accord-advantage .section-head-row .brand-lockup--inverse,
  .page--accord .accord-usage-lockup-sub {
    height: 33px;
  }

  .page--accord .accord-product-lockup-main,
  .page--accord .accord-product-lockup-sub {
    height: 31px;
  }

  .page--accord .accord-usage-lockup-main,
  .page--accord .footer-brand .brand-lockup--footer {
    height: 33px;
  }

  .page--accord .instruction-brand>div>.brand-lockup:not(.accord-story-brand-2),
  .page--accord .instruction-brand .accord-story-brand-2 {
    height: 34px;
  }
}
*/
/* Accord duo logos */
.page--accord .accord-duo-logo-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}


.page--accord .accord-overview .accord-story-brand {
  width: clamp(220px, 28vw, 388px);
  height: clamp(34px, 4.6vw, 70px);
}

.page--accord .benefits-band.accord-advantage .section-head-row .brand-lockup--inverse {
  width: clamp(184px, 24vw, 360px);
  height: clamp(41px, 5.3vw, 80px);
  min-width: 0;
}


.page--accord .accord-product-lockup--duo .accord-product-lockup-main {
  height: 100%;
}


.page--accord .accord-usage-lockup-main {
  display: inline-flex;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}

.page--accord .accord-usage-lockup-main img {
  width: 100%;
}

.page--accord .accord-instruction-duo-logo {
  width: min(100%, 228px);
  height: 36px;
}

.page--accord .accord-overview .accord-story-header {
  gap: 0px;
}

.page--accord .accord-overview .accord-story-kicker-row {
  gap: 0px 24px;
  max-width: 100%;
  font-size: var(--font-typ-h2) !important;
}

.page--accord .accord-overview .accord-story-brand {
  width: min(100%, 228px);
  height: clamp(41px, 5.3vw, 80px);
}

.page--accord .accord-overview .accord-story-brand {
  display: none;
}

.page--accord .accord-overview .accord-story-brand-2 img {
  width: 100%;
  height: auto;
}

.page--accord .benefits-band.accord-advantage .section-head-row .accord-story-brand {
  display: none;
}

.page--accord .benefits-band.accord-advantage .section-head-row .accord-story-brand-2 {
  display: inline-flex;
  width: min(60%, 527px);
  height: auto;
}

.page--accord .benefits-band.accord-advantage .section-head-row .accord-story-brand-2 img {
  width: 100%;
  object-fit: cover;
}

.page--accord .benefits-band.accord-advantage .section-head-row .brand-lockup--inverse {
  width: min(100%, 228px);
  height: 51px;
}

.page--accord .accord-product-card--advantage {
  overflow: hidden;
  z-index: 1;
}

.page--accord .accord-product-card--advantage .accord-product-lockup {
  font-size: var(--font-typ-h3) !important;
}

.page--accord .accord-product-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: auto;
}


.page--accord .accord-product-pack {
  right: -40px;
  width: 475px;
  height: 320px;
  object-fit: contain;
  object-position: right bottom;
  filter: none;
}

.page--accord .accord-product-card--advantage .accord-product-card-copy {
  width: min(100%, 24em);
  font-size: var(--font-typ-p);
  height: 100%;
}




.page--accord .accord-product-card-actions .button--primary {
  justify-content: space-between;

}

@media (max-width: 1180px) {
  .page--accord .accord-product-pack {
    right: -6px;
    bottom: 0;
    width: min(46%, 320px);
  }
}

@media (max-width: 768px) {
  .page--accord .accord-product-pack {
    position: absolute;
    top: 0;
    left: initial;
    bottom: auto;
    width: 235px;
    height: 100%;
    object-fit: contain;
    margin: 0;
    font-size: var(--font-typ-h2);
    right: 0;
  }
}

@media (max-width: 640px) {
  .page--accord .accord-overview .accord-story-brand {
    display: none;
  }

  .page--accord .benefits-band.accord-advantage .section-head-row .brand-lockup--inverse {
    width: min(100%, 223px);
    height: 50px;
  }

  .page--accord .accord-overview .accord-story-brand-2 {
    display: inline-flex;
    transform: translateY(0px);
    width: clamp(223px, 26vw, 427px);
    height: auto;
  }


  .page--accord .benefits-band.accord-advantage .section-head-row .accord-story-brand-2 img {
    width: 100%;
  }

  .page--accord .accord-product-card-actions {
    width: 100%;
  }

  .page--accord .accord-product-pack {
    position: absolute;
    top: 2em;
    left: calc(50% - 117px);
    right: auto;
    bottom: auto;
    width: 235px;
    height: 165px;
    object-fit: contain;
    margin: 0;
    font-size: var(--font-typ-h2);
  }
}

@media (min-width: 640px) {
  .accord-story-copy {

    justify-content: start;
    width: 100%;
    min-height: 0;
    gap: var(--block-padding);
    padding-bottom: 112px;
  }

  .page--accord .accord-overview .accord-story-kicker-row {
    display: flex;
    align-items: flex-end;
    font-size: var(--font-typ-h2);
    gap: 0.4em;
  }

  .accord-story-kicker {
    margin-bottom: 0;
  }


  .accord-note-card--feature {
    grid-template-columns: auto 90px;
    align-items: end;
    grid-auto-rows: 100%;
  }

  .accord-note-card-mark--icon {
    order: 1;
    align-self: start;
  }

  .accord-note-card--feature .accord-note-card-title {
    max-width: 15em;
  }

  .accord-support-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 200px;
    top: var(--block-padding-small);
    right: var(--block-padding-small);
  }

  .accord-support-media img {
    position: absolute;
    object-fit: cover;
    bottom: 0;
    right: 0;
  }

}

@media (max-width: 768px) {
  .accord-product-card--advantage .accord-product-card-actions .button span {
    width: 100%;
    min-width: 0;
    text-align: center;
    white-space: normal;
  }

  .accord-product-card--advantage .accord-product-card-actions .button svg {
    display: none;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .page--accord .hero-accord {
    padding: 30px 0 30px 0;
  }

  .hero-accord .button-row {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-accord .button {
    min-height: 56px;
    line-height: 24px;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .accord-advantage-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 1180px) {

  .page--accord header .brand-lockup img {
    transform: translateY(4px);
  }

  .accord-product-card-actions .button {
    width: 12em;
  }

}

@media (min-width: 901px) {
  .page--accord .hero-media {
    font-size: var(--font-typ-h6);
    max-width: calc(100% - 0em);
    display: flex;
  }

  .hero-media img {
    width: 100%;
    height: auto;
    margin-top: auto;
  }
}

@media (min-width: 1024px) {
  .page--accord .accord-product-card-actions {
    grid-template-columns: 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0;
  }

  .accord-note-card--support,
  .accord-product-card--advantage {
    min-height: 220px;
  }

  .accord-support-media {
    height: 240px;
    aspect-ratio: 1/1;
    inset: auto;
    top: auto;
    right: auto;
    top: calc(0.8 * var(--block-padding-small));
    right: calc(0.8 * var(--block-padding-small));
    max-height: calc(100% - 1.6 * var(--block-padding-small));
    width: auto;
  }

  .page--accord .accord-product-pack {
    right: -5%;
    width: 60%;
    max-height: 105%;
  }

  .accord-product-card-actions .button--secondary,
  .page--accord .accord-product-card-actions .button--primary {
    width: 11em;
  }
}

@media (min-width: 1180px) {


  .page--accord .hero-media {
    max-width: calc(100% - 2em);
  }

  .accord-story-actions {
    position: absolute;
    right: var(--block-padding);
    bottom: var(--block-padding)
  }

  .accord-story-title {
    max-width: 11em;
  }

  .accord-story-copy {
    padding-bottom: 0;
  }

  .accord-story-card .intro-card-visual {
    height: 90%;
  }

  .accord-story-list {
    max-width: 60%;
  }
}

@media (min-width: 1260px) {
  .page--accord .hero-media {
    max-width: calc(100% - 4.5em);
  }

}

@media (min-width: 640px) and (max-width: 1023px) {}

@media (min-width: 1024px) and (max-width: 1180px) {}

@media (min-width: 900px) {
  .page--accord .hero-title {
    min-width: 65vw;
  }

  .page--accord .hero-text {
    width: 90%;
    max-width: 500px;
  }
}

@media (min-width: 1024px) {}


@media (min-width: 1180px) {


  .page--accord .hero-accord .hero-inner {
    min-height: var(--home-hero-min-height, 820px);
  }

  .page--accord .hero-copy {
    padding: calc(var(--page-shell-gutter) / 2) 0 calc(var(--page-shell-gutter) / 2);
  }

  .page--accord .hero-text {
    max-width: initial;
    min-width: 65em;
  }

  .page--accord .hero-text p {
    max-width: initial;
  }
}


@media (min-width: 1400px) {
  .page--accord .hero-media {
    max-width: 53vh;
    max-width: calc(100% - 6em);
    margin-bottom: calc(0.7 * var(--block-padding)) !important;
  }

  .accord-story-list {
    max-width: 70%;
  }
}

@media (min-width: 1640px) {
  .page--accord .hero-media {
    max-width: calc(100% - 6em);
  }
}

@media (min-width: 1800px) {}

@media (min-width: 1750px) {
  .accord-story-list {
    max-width: 100%;
  }
}




































/* Instruction page variants */
.instruction-header-brand--accord,
.instruction-mobile-brand--accord,
.instruction-submenu--accord,
.instruction-mobile-submenu--accord,
.instruction-page-variant--accord,
.buy-variant--accord,
.page-promo-card--accord,
.footer-brand-lockup--accord {
  display: none;
}

.instruction-page-variant {
  gap: 64px;
}

.buy-variant {
  gap: 48px;
}

.instruction-page-variant--default,
.buy-variant--default {
  display: grid;
}

.page--accord .instruction-header-brand--default,
.page--accord .instruction-mobile-brand--default,
.page--accord .instruction-submenu--default,
.page--accord .instruction-mobile-submenu--default,
.page--accord .instruction-page-variant--default,
.page--accord .buy-variant--default,
.page--accord .page-promo-card--default,
.page--accord .footer-brand-lockup--default {
  display: none;
}

.page--accord .header .instruction-header-brand--default,
.page--accord .header-mobile-menu-top .instruction-mobile-brand--default {
  display: none;
}

.page--accord .instruction-header-brand--accord,
.page--accord .instruction-mobile-brand--accord,
.page--accord .footer-brand-lockup--accord {
  display: inline-flex;
}

.page--accord .header .instruction-header-brand--accord,
.page--accord .header-mobile-menu-top .instruction-mobile-brand--accord {
  display: inline-flex;
}

.page--accord .instruction-submenu--accord,
.page--accord .instruction-mobile-submenu--accord {
  display: block;
}

.page--accord .instruction-page-variant--accord,
.page--accord .buy-variant--accord,
.page--accord .page-promo-card--accord,
.page-promo-card--accord {
  display: grid;
}

/*
.page--accord .instruction-header-brand--accord,
.page--accord .instruction-mobile-brand--accord,
.page--accord .footer-brand-lockup--accord,
.page--accord .accord-page-promo-logo {
  align-items: flex-start;
  min-width: 0;
  line-height: 0;
  overflow: hidden;
}*/

.page--accord .instruction-header-brand--accord {
  width: min(100%, 318px);
  height: 50px;
}

.page--accord .instruction-mobile-brand--accord {
  width: min(100%, 220px);
  height: 50px;
}

.page-title-brand--accord {
  width: min(100%, clamp(223px, 26vw, 428px));
  min-width: 0;
  flex: 0 1 auto;
  align-items: flex-end;
  transform: none;
  line-height: 0;
  overflow: hidden;
}

.instruction-page .page-title-brand--accord {
  width: min(100%, clamp(223px, 26vw, 428px));
  overflow: visible;
}

.instruction-page-variant--accord .page-title-row {
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 28px;
}

.page--accord .footer-brand-lockup--accord {
  width: min(100%, 330px);
  height: 50px;
}

.page--accord .accord-page-promo-logo,
.accord-page-promo-logo {
  width: min(100%, 352px);
  height: 56px;
}

.page--accord .instruction-header-brand--accord img,
.page--accord .instruction-mobile-brand--accord img,
.page--accord .footer-brand-lockup--accord img,
.page--accord .accord-page-promo-logo img,
.accord-page-promo-logo img {
  width: 100%;
  height: auto;
}

.page-title-brand--accord img {
  width: 100%;
  height: auto;
  transform: none;
}

.instruction-page .page-title-brand--accord img {
  width: 100%;
}

.instruction-aside--accord .instruction-brand,
.instruction-brand--accord {
  max-width: 396px;
}

.instruction-aside--accord .instruction-brand>div,
.instruction-brand--accord>div {
  display: grid;
  gap: 0;
  width: 100%;
  justify-items: center;
}

.instruction-aside--accord .instruction-brand .accord-story-brand-2,
.instruction-brand--accord .accord-story-brand-2 {
  display: none;
}

.instruction-aside--accord .instruction-brand .accord-duo-logo-image,
.instruction-brand--accord .accord-duo-logo-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.instruction-aside--accord .instruction-brand .accord-story-brand-2 img,
.instruction-brand--accord .accord-story-brand-2 img {
  width: 100%;
  height: auto;
}

.instruction-aside--accord .instruction-brand-text,
.instruction-brand--accord .instruction-brand-text {
  max-width: 15em;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.page--accord .buy-grid--accord {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page--accord .buy-grid--accord .buy-card {
  background: #f8f8f8;
}

.page--accord .buy-grid--accord .buy-card--accent {
  background: var(--accord-color-plate);
}

.page-promo-card--accord,
.page--accord .page-promo-card--accord {
  background: var(--accord-color-plate) !important;
}

.page-promo-card--accord .intro-card-visual,
.page--accord .page-promo-card--accord .intro-card-visual {
  isolation: isolate;
}

.page-promo-card--accord .intro-card-visual::before,
.page--accord .page-promo-card--accord .intro-card-visual::before {
  background: rgba(0, 86, 145, 0.12);
}

.page-promo-card--accord .intro-card-visual::after,
.page--accord .page-promo-card--accord .intro-card-visual::after {
  background: rgba(255, 255, 255, 0.56);
}

.page-promo-card--accord .intro-card-title,
.page--accord .page-promo-card--accord .intro-card-title {
  color: var(--pink);
}

.page-promo-card--accord .intro-card-text,
.page--accord .page-promo-card--accord .intro-card-text {
  max-width: 755px;
  color: var(--text);
}

.page-promo-card--accord .button,
.page--accord .page-promo-card--accord .button {
  color: var(--accord-color-link);
}

.page-promo-card--accord .page-promo-card-nav-button,
.page--accord .page-promo-card--accord .page-promo-card-nav-button {
  background: var(--accord-color-band);
}

.page-promo-card--accord .page-promo-card-nav::before,
.page--accord .page-promo-card--accord .page-promo-card-nav::before {
  background: var(--accord-color-band);
}

/*
.page-promo-card--accord .intro-card-visual img,
.page--accord .page-promo-card--accord .intro-card-visual img {
  left: 34px;
  top: 10px;
  right: auto;
  width: var(--home-page-promo-visual-width, 740px);
  height: var(--home-page-promo-visual-height, 622px);
  z-index: 2;
  transform: none;
  object-fit: contain;
  object-position: right bottom;
}*/

@media (min-width: 641px) and (max-width: 1180px) {

  .instruction-page-variant,
  .buy-variant {
    gap: 48px;
  }

  .page--accord .instruction-header-brand--accord {
    width: min(100%, 220px);
  }

  .page--accord .accord-page-promo-logo {
    width: min(100%, 320px);
    min-width: 0;
  }

  .page--accord .buy-grid--accord {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /*
  .page-promo-card--accord .intro-card-visual img,
  .page--accord .page-promo-card--accord .intro-card-visual img {
    left: 18px;
    width: 620px;
    height: 500px;
  }
  */
}

@media (max-width: 640px) {

  .instruction-page-variant,
  .buy-variant {
    gap: 28px;
  }

  .instruction-page-variant--accord .page-title-row {
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 14px;
  }

  .page--accord .instruction-header-brand--accord,
  .page--accord .instruction-mobile-brand--accord {
    width: 184px;
    height: 36px;
  }

  .page-title-brand--accord,
  .page--accord .accord-page-promo-logo {
    width: min(100%, 223px);
    min-width: 0;
    height: auto;
  }

  .page-title-brand--accord img {
    transform: none;
  }

  .instruction-aside--accord .instruction-brand>div>.brand-lockup:not(.accord-story-brand-2),
  .instruction-brand--accord>div>.brand-lockup:not(.accord-story-brand-2) {
    width: min(100%, 223px);
    height: 35px;
  }

  .page--accord .footer-brand-lockup--accord {
    width: 184px;
    height: 36px;
  }

  .page--accord .buy-grid--accord {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-promo-card--accord .intro-card-visual img,
  .page--accord .page-promo-card--accord .intro-card-visual img {
    left: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 230px;
    object-fit: contain;
    object-position: right bottom;
  }
}


.screen-reader-text {
  display: none;
}

.nav-links {
  position: relative;
  display: flex;
  gap: calc(var(--block-padding-small) / 2);
}

.page-numbers {
  font-size: var(--font-typ-p);
  width: 2em;
  height: 2em;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-xs);
  border: 0;
  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition);
  background: var(--paper);
  color: var(--page-blue);
}

.page-numbers.current {
  background: var(--accord-color-accent);
  color: #fff;
}

.page-numbers.next,
.page-numbers.prev {
  width: 6em;
}

.page-numbers:hover {
  background: var(--page-blue);
  color: #fff;
}

.disclaimer {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: calc(var(--block-padding-small) / 3) calc(var(--block-padding-small) / 2);
  background-color: var(--accord-color-band);
  /*background-color: rgba(223, 28, 112, 0.63);*/
  width: 100%;
  color: #fff;
  font-size: calc(var(--font-typ-small) * 0.9);
  letter-spacing: -0.1px;
  z-index: 9999;
  letter-spacing: -0.1px;
  z-index: 9999;
  transform-origin: bottom;
  transform: scale(1, 1.5);
}

@media (min-width: 768px) {

  .disclaimer {
    font-size: calc(var(--font-typ-small) * 0.85);
    transform: scale(1, 2);
    padding: 3px var(--block-padding-small);
  }
}

.disclaimer div {
  text-align: center;
}

.accordion-content table td {
  border-bottom: 1px solid #fff;
}

html,
body,
.page {
  height: auto !important;
  max-height: auto !important;
  overflow-y: visible !important;
}

html {
  height: 100vh !important;
  max-height: 100vh !important;
  overflow-y: auto;
}





.myths {
    box-sizing: border-box;
    padding-top: 20px;
    overflow: hidden;
}

.page--default .myths {
    background: var(--blue);
}

.page--accord .myths {
    background: var(--red-deep);
}

@media (min-width: 641px) {
    .myths {
        padding: 70px 0 0 0;
    }
}

@media (min-width: 1023px) {
    .myths {
        padding: 90px 0 0 0;
    }
}

.page--default .myths .shell,
.page--accord .myths .shell {
    position: relative;
    box-sizing: border-box;
    max-width: var(--shell);
    margin: 0 auto;
    padding-inline: var(--container-padding);
}

.page--default .myths .section-head,
.page--accord .myths .section-head {
    margin-bottom: 50px;
}

.myths .section-head-title {
    margin: 0;
    font: var(--font-h2);
    color: #FFFFFF;
}

.myths-layout {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: var(--home-gap-card);
    align-items: center;
}

.myths-col {
    display: flex;
    flex-direction: column;
    gap: var(--home-gap-card);
    max-width: 494px;
}

.myths-col--left {
    width: 100%;
}

.myths-col--right {
    padding-bottom: 20px;
    width: 100%;
}

.myths-figure {
    display: flex;
    justify-content: center;
    align-items: end;
}

.myths-figure img {
    display: block;
    width: 100%;
    height: auto;
      max-width: 1200px;
}

.myth-card {
    display: block;
    box-sizing: border-box;
    padding: clamp(20px, calc(20px + 10 * ((100vw - 320px) / 1220)), 30px);
    padding: 15px 20px;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.myth-card--white {
    background: var(--white);
}

.page--default .myth-card--white:hover {
    background: var(--blue-soft);
}

.page--accord .myth-card--white:hover {
    background: var(--accord-color-accent-soft);
}

.page--default .myth-card--accent {
    background: var(--blue-soft);
}

.page--accord .myth-card--accent {
    background: var(--accord-color-accent-soft);
}

.myth-card-quote {
    display: block;
    width: 18px;
    height: auto;
    margin-bottom: 5px;
}

.myth-card-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: 18px;
    font: var(--font-small);
}

.myth-card-label img {
    display: block;
    width: 20px;
    height: 20px;
}

.page--accord .myth-card-label img {
    filter: brightness(0) saturate(100%) invert(11%) sepia(87%) saturate(6382%) hue-rotate(333deg) brightness(88%) contrast(101%);
}

.myth-card-text {
    margin: 0;
    font: var(--font-p);
}

.myth-card-text--bold {
    font-weight: 600;
}

@media (min-width: 600px) {
    .myths-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, auto) auto;
        gap: var(--home-gap-card);
        align-items: stretch;
    }

    .myths-col--left,
    .myths-col--right {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 3;
        width: 100%;
        max-width: none;
    }

    .myths-col--left {
        grid-column: 1;
    }

    .myths-col--right {
        grid-column: 2;
        padding-bottom: 0;
    }

    .myths-figure {
        grid-column: 1 / -1;
        grid-row: 4;
        position: static;
        justify-self: center;
    }

    .myth-card {
        border-radius: 20px;
        height: 100%;
    }
}

@media (min-width: 1200px) {
    .myths-layout {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: repeat(3, auto);
    }

    .myths-col {
        padding-bottom: 110px;
    }

    .myths-col--left,
    .myths-col--right {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 3;
    }

    .myths-col--left {
        grid-column: 1;
    }

    .myths-col--right {
        grid-column: 3;
    }

    .myths-figure {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    .myth-card {
        height: 100%;
    }

    .myth-card-quote {
        width: 25px;
        height: 40px;
    }
}

