
   
    @font-face {
      font-family: 'Evolventa';
      src: url('../fonts/Evolventa-Regular.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    
    @font-face {
      font-family: 'Evolventa';
      src: url('../fonts/Evolventa-Bold.ttf') format('truetype');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    :root {
      --pink: #FFB5E4;
      --yellow: #FAE888;
      --black: #2D2D2D;
      --beige: #FFFBEE;

      --container: 1440px;
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --transition: 0.25s ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 200px;
    }

    @media (max-width: 1024px) {
      html {
        scroll-padding-top: 120px;
      }
    }

    @media (max-width: 768px) {
      html {
        scroll-padding-top: 100px;
      }
    }

    body {
      background: var(--pink);
      color: var(--black);
      font-family: 'Geologica', sans-serif;
    }

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

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

    .section{
      position: relative;
    }

    .section-beige{
      background: var(--beige);
    }

    .container {
      padding: 25px;
    }

    .site-header {
      position: fixed;
      top: 25px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;

      width: calc(100% - 50px);
      max-width: var(--container);

      display: flex;
      align-items: center;
      justify-content: space-evenly;
      gap: 10px;
      height: 109px;

      background: var(--beige);
      border-radius: 30px;
      padding: 28px 10px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
      width: 200px;
      height: auto;
    }

    .nav {
      height: 100%;
    }

    .nav__list {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 25px;
      background: var(--pink);
      border-radius: 999px;
      padding: 0 35px;
      height: 100%;
    }

    .nav__link {
      position: relative;
      display: inline-block;
      padding: 4px 0;
      color: #2D2D2D;
      font-size: 18px;
      font-weight: 400;
    }

    .nav__link::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 3px;
      background: var(--yellow);
      transition: width 0.3s ease;
    }

    .nav__link:hover::after {
      width: 100%;
    }

    .header-contact {
      position: relative;
      overflow: hidden;
      isolation: isolate;

      border-radius: 999px;
      background: var(--black);
      color: #fff;

      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

      padding: 0 45px;
      height: 100%;

      border: 1px solid var(--black);

      transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
    }

    .header-contact::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--yellow);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
      z-index: -1;
    }

    .header-contact:hover {
      color: var(--black);
      box-shadow: 0 10px 24px rgba(45, 45, 45, 0.18);
    }

    .header-contact:hover::before {
      transform: scaleX(1);
    }

    .header-contact__phone {
      font-size: 14px;
      font-weight: 400;
      white-space: nowrap;
    }

    .header-contact__text {
      font-size: 18px;
      font-weight: 400;
      line-height: 0.9;
      white-space: nowrap;
    }

    .hero-shell {
      max-width: var(--container);
      margin: 0 auto;
      background: var(--beige);
      border-radius: 30px;
      min-height: 710px;
      display: flex;
      flex-direction: column;
      padding: 120px 10px 0;
    }

    .hero {
      flex: 1;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }

    .hero__content {
      max-width: 1050px;
      margin: 0 auto;
      text-align: center;
    }

    .hero__badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      border-radius: 999px;
      background: var(--yellow);
      color: var(--black);
      font-size: 18px;
      font-weight: 400;
      margin-bottom: 20px;
    }

    .hero__title {
      color: #2D2D2D;
      text-align: center;
      font-family: 'Evolventa', 'Geologica', sans-serif;
      font-size: 55px;
      font-weight: 700;
      line-height: normal;
      margin-bottom: 10px;
    }

    .hero__subtitle {
      color: #2D2D2D;
      text-align: center;
      font-family: 'Evolventa', 'Geologica', sans-serif;
      font-size: 25px;
      font-weight: 400;
      line-height: normal;
      max-width: 980px;
      margin: 0 auto 64px;
    }

    .hero-features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 50px;
      max-width: 980px;
      margin: 0 auto 56px;
    }

    .hero-feature {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      text-align: center;
    }

    .hero-feature__icon {
      height: 41px;
      width: auto;
      flex-shrink: 0;
    }

    .hero-feature__text {
      color: var(--black);
      font-size: 18px;
      font-weight: 400;
    }

    .hero__btn {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      height: 53px;
      margin-bottom: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 34px;
      border-radius: 10px;
      background: var(--black);
      color: #fff;
      font-size: 18px;
      font-weight: 400;
      border: 1px solid var(--black);
      transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
    }

    .hero__btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--yellow);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
      z-index: -1;
    }

    .hero__btn:hover {
      color: var(--black);
      box-shadow: 0 10px 24px rgba(45, 45, 45, 0.18);
    }

    .hero__btn:hover::before {
      transform: scaleX(1);
    }

    .hero-bottom {
      max-width: var(--container);
      margin: 10px auto 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }

    .hero-bottom__item {
      height: 81px;
      border-radius: 30px;
      background: var(--beige);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 18px 35px;
    }

    .hero-bottom__item--accent {
      background: var(--yellow);
      border: 1px solid var(--black);
      padding: 18px 10px;
    }

    .hero-bottom__icon {
      height: 41px;
      width: auto;
      flex-shrink: 0;
    }

    .hero-bottom__text {
      color: var(--black);
      font-size: 18px;
      font-weight: 400;
      line-height: 1.25;
    }

    .mobile-actions,
    .mobile-menu-panel {
      display: none;
    }

    .mobile-hero_text{
      display: none;
    }

    .hero-mobile_bottom__item--accent{
      display: none;
    }

    @media (max-width: 1200px) {
      .container {
        padding: 20px;
      }

      .site-header {
        top: 20px;
        width: calc(100% - 40px);
      }

      .logo {
        width: 145px;
      }

      .nav__list {
        gap: 20px;
        padding: 0 20px;
      }

      .header-contact {
        padding: 0 30px;
      }

      .hero__title {
        font-size: 46px;
      }

      .hero__subtitle {
        font-size: 22px;
      }

      .hero-bottom {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 1024px) {
      body {
        overflow-x: hidden;
      }

      .container {
        padding: 15px;
      }

      .site-header {
        top: 12px;
        left: 15px;
        right: 15px;
        transform: none;
        width: auto;
        max-width: none;
        height: 82px;
        border-radius: 24px;
        padding: 12px 14px;
        justify-content: space-between;
        gap: 12px;
      }

      .logo {
        gap: 0;
        width: 150px;
      }

      .nav,
      .header-contact {
        display: none;
      }

      .mobile-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
      }

      .mobile-phone {
        width: 35px;
        height: 35px;
        border-radius: 15px;
        background: var(--yellow);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .mobile-phone img {
        width: 18px;
        height: 18px;
        object-fit: contain;
      }

      .burger {
        width: 35px;
        height: 35px;
        border-radius: 6px;
        background: var(--black);
        position: relative;
        border: none;
        cursor: pointer;
        flex-shrink: 0;
        padding: 0;
      }

      .burger span {
        position: absolute;
        width: 17px;
        height: 3px;
        background: var(--beige);
        transition: top 0.25s ease, transform 0.25s ease, opacity 0.2s ease;
      }

      .burger span:nth-child(1) {
        top: 9px;
        left: 7px;
      }

      .burger span:nth-child(2) {
        top: 16px;
        right: 7px;
      }

      .burger span:nth-child(3) {
        top: 23px;
        left: 7px;
      }

      .hero-shell {
        min-height: auto;
        border-radius: 24px;
        padding: 82px 12px 0;
        overflow: hidden;
      }

      .hero {
        padding-top: 50px;
        padding-bottom: 24px;
      }

      .hero__content {
        max-width: 100%;
      }

      .hero__badge {
        font-size: 14px;
        padding: 7px 15px;
        margin-bottom: 10px;
      }

      .hero__title {
        font-size: 32px;
        line-height: 1.18;
        margin-bottom: 18px;
      }

      .hero__subtitle {
        font-size: 16px;
        line-height: 1.35;
        margin: 0 auto 36px;
        max-width: 100%;
      }

      .hero-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        max-width: 100%;
        margin: 0 auto 34px;
      }

      .hero-feature__icon {
        height: 40px;
      }

      .hero-feature__text {
        font-size: 16px;
        line-height: 1.25;
      }

      .hero__btn {
        height: 45px;
        margin-bottom: 0;
        font-size: 16px;
        padding: 12px 28px;
      }

      .hero-bottom {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 10px;
      }

      .hero-bottom__item {
        height: auto;
        min-height: 150px;
        border-radius: 24px;
        padding: 18px 14px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }

      .hero-bottom__item--accent {
        padding: 18px 14px;
      }

      .hero-bottom__icon {
        height: 48px;
      }

      .hero-bottom__text {
        font-size: 16px;
        line-height: 1.3;
      }

      .mobile-menu-panel {
        display: block;
        position: fixed;
        top: 82px;
        left: 12px;
        right: 12px;
        bottom: 12px;
        background: var(--beige);
        z-index: 999;
        border-radius: 24px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: 0.25s ease;
        padding: 20px;
        overflow-y: auto;
      }

      .mobile-menu-title {
        font-size: 18px;
        font-weight: 700;
        font-family: 'Evolventa', 'Geologica', sans-serif;
        margin-bottom: 25px;
        color: var(--black);
      }

      .mobile-menu-nav {
        display: flex;
        flex-direction: column;
        gap: 15px;
      }

      .mobile-menu-link {
        font-size: 16px;
        font-weight: 300;
        line-height: 1.1;
        color: var(--black);
      }

      body.menu-open {
        overflow: hidden;
      }

      body.menu-open .mobile-menu-panel {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }

      body.menu-open .burger span {
        top: 50%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
      }

      body.menu-open .burger span:nth-child(1) {
        transform: translate(-50%, -50%) rotate(45deg);
      }

      body.menu-open .burger span:nth-child(2) {
        opacity: 0;
      }

      body.menu-open .burger span:nth-child(3) {
        transform: translate(-50%, -50%) rotate(-45deg);
      }

      .mobile-hero_text{
        display: block;
      }

      .desc-hero_text{
        display: none;
      }

      .hero-mobile_bottom__item--accent{
        display: flex;
      }
      .hero-desc_bottom__item--accent{
        display: none;
      }
    }

    @media (max-width: 768px) {
      .container{
        padding: 10px;
      }

      .hero-shell{
        padding-top: 55px;
        border-radius: 20px;
      }

      .site-header{
        height: 55px;
        padding: 10px;
        border-radius: 20px;
        left: 10px;
        right: 10px;
      }

      .mobile-menu-panel{
        top: 80px;
      }

      .logo {
        width: 130px;
      }

      .hero__title {
        font-size: 20px;
      }

      .hero__subtitle {
        font-size: 12px;
      }

      .hero-feature__icon{
        height: 27px;
      }

      .hero-feature__text,
      .hero-bottom__text {
        font-size: 12px;
      }

      .hero__btn{
        font-size: 14px;
      }

      .hero-bottom__item{
        min-height: unset;
        padding: 10px;
        gap: 5px;
        border-radius: 20px;
      }

      .hero-bottom__icon{
        height: 25px;
      }

      .mobile-menu-panel{
        left: 10px;
        right: 10px;
      }
    }

    /* Second Block
    =============================================================*/

    .paper-section {
      position: relative;
      width: 100%;
      margin: 70px 0;
    }

    .paper-strip {
      width: 100%;
      height: 250px;
      background: url('../images/paper_white.svg');
      background-repeat: repeat-x;
      position: absolute;
      top: -60px;
      z-index: -1;
    }

    .paper-strip_bottom{
      transform: rotate(180deg);
      top: unset;
      bottom: -60px;
    }

    .paper-body {
      width: 100%;
      background: var(--beige);
      padding: 40px 0;
    }

    .paper-container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 25px;
    }

    .best-paper_container {
      padding: 0;
    }

    .sub_title {
      font-size: 30px;
      font-weight: 700;
      font-family: 'Evolventa', 'Geologica', sans-serif;
      color: var(--black);
      text-align: center;
      margin-bottom: 10px;
    }

    .best-paper_text {
      max-width: 950px;
      margin: 0 auto;
      font-weight: 400;
      text-align: center;
      font-family: 'Evolventa', 'Geologica', sans-serif;
      font-size: 25px;
      line-height: 1.25;
      color: var(--black);
    }

    .best-paper_layout {
      position: relative;
      margin-top: 60px;
      display: grid;
      grid-template-columns: minmax(240px, 1fr) 360px minmax(240px, 1fr);
      align-items: center;
      column-gap: 20px;
    }

    .best-paper_side {
      display: flex;
      flex-direction: column;
    }

    .best-paper_side--left {
      align-items: flex-end;
      text-align: right;
      position: relative;
      z-index: 1;
    }

    .best-paper_side--right {
      align-items: flex-start;
      text-align: left;
      position: relative;
      z-index: 1;
    }

    .best-paper_item {
      display: flex;
      align-items: center;
      gap: 18px;
     
    }

    .best-paper_side--left .best-paper_item {
      justify-content: flex-end;
    }

    .best-paper_side--right .best-paper_item {
      justify-content: flex-start;
    }

    .best-paper_item + .best-paper_item {
      margin-top: 58px;
    }

    .best-paper_item-text{
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .best-paper_item-text h3 {
      font-family: 'Evolventa', 'Geologica', sans-serif;
      font-size: 18px;
      font-weight: 700;
      text-align: center;
      line-height: 1.2;
      color: var(--black);
      margin-bottom: 10px;
    }

    .best-paper_item-text p {
      font-family: 'Evolventa', 'Geologica', sans-serif;
      font-size: 16px;
      font-weight: 400;
      text-align: center;
      line-height: 1.35;
      color: var(--black);
    }

    .best-paper_arrow {
      flex-shrink: 0;
      width: 96px;
      height: auto;
      transition: .3s ease;
    }

    .best-paper_item:hover .best-paper_arrow {
      transform: scale(1.1);
    } 

    .best-paper_center {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .best-paper_image {
      display: block;
      width: 100%;
      max-width: 360px;
      height: auto;
      box-shadow: 0 4px 4px 0 rgba(151, 151, 151, 0.30);
    }

    .best-paper_bottom-text {
      font-family: 'Evolventa', 'Geologica', sans-serif;
      font-size: 18px;
      font-weight: 700;
      line-height: 1.2;
      color: var(--black);
      text-align: center;
      width: 100%;
      max-width: 360px;
      margin-top: 50px;
    }

    .best-paper_dot {
      position: absolute;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      z-index: 1;
      transition: .3s ease;
    }

    .best-paper_dot:hover{
      transform: scale(1.1);
    }

    .best-paper_dot--yellow {
      top: -18px;
      left: 25%;
      background: #F1DB68;
    }

    .best-paper_dot--green {
      left: 6%;
      top: 52%;
      background: #B3E59D;
    }

    .best-paper_dot--orange {
      right: 20px;
      top: 18%;
      background: #FBAB8B;
    }

    .best-paper_dot--pink {
      right: 23%;
      bottom: 17%;
      background: #E79BCB;
    }

    /* ЛЕВАЯ СТОРОНА */
    .best-paper_item--1 { margin-right: clamp(20px, 3vw, 40px); }
    .best-paper_item--2 { 
      margin-right: clamp(60px, 4vw, 80px); 
      position: relative;
      /* flex-direction: column;  */
    }
    .best-paper_item--3 { margin-right: clamp(10px, 3vw, 35px); gap: 40px; }

    /* ПРАВАЯ СТОРОНА */
    .best-paper_item--4 { margin-left: clamp(20px, 2vw, 40px); }
    .best-paper_item--5 { margin-left: clamp(30px, 3vw, 70px); }
    .best-paper_item--6 { 
      margin-left: clamp(20px, 3vw, 65px); 
      position: relative;
    }
    .best-paper_item--7 { 
      margin-left: clamp(100px, 14vw, 200px); 
      position: relative;
    }

    .best-paper_item--2 .best-paper_arrow{
      position: absolute;
      top: 40px;
      right: -60px;
    }

    .best-paper_item--6 .best-paper_arrow{
      position: absolute;
      bottom: -65px;
      left: -30px;
    }

    .best-paper_item--7 .best-paper_arrow{
      position: absolute;
      bottom: -30px;
      left: -80px;
    }

    .best-paper_item--3 .best-paper_arrow{
      width: 57px;
    }

    .best-paper_item--4 .best-paper_arrow{
      width: 70px;
    }

    .best-paper_mobile {
      display: none;
    }

    @media (max-width: 1200px) {
      .best-paper_layout {
        grid-template-columns: 1fr 300px 1fr;
        column-gap: 10px;
      }

      .best-paper_image {
        max-width: 300px;
      }

      .best-paper_arrow {
        width: 82px;
      }

      .best-paper_item + .best-paper_item {
        margin-top: 20px;
      }

      .best-paper_item{
        gap: 10px;
      }
    }

    @media (max-width: 1024px){
      .paper-body{
        padding: 20px 0;
      }
      .best-paper_layout {
        display: none;
      }

      .sub_title{
        font-size: 24px;
      }

      .best-paper_text{
        font-size: 20px;
        max-width: 755px;
      }

      .best-paper_mobile{
        margin-top: 60px;
        display: flex;
        flex-direction: column;
        gap: 30px;
      }

      .best-paper_image {
        max-width: 200px;
      }

      .best-paper_mobile-sheet{
        max-width: 190px;
      }

      .best-paper_top,
      .best-paper_bottom{
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
      }

      .best-paper_item-text h3{
        margin-bottom: 5px;
      }

      .best-paper_item-text p{
        font-size: 14px;
      }

      .best-paper_mobile-item{
        position: relative;
      }
      .best-paper_mobile-arrow{
        position: absolute;
      }

      .best-paper_top-text,
      .best-paper_bottom-text{
        display: flex;
        flex-direction: column;
        gap: 30px;
      }

      .best-paper_bottom-text{
        align-items: flex-start;
        margin-top: 0;
      }

      .best-paper_mobile-paper--top{
        margin-top: 27px;
      }

      .best-paper_mobile-arrow--4,
      .best-paper_mobile-arrow--1,
      .best-paper_mobile-arrow--2,
      .best-paper_mobile-arrow--3{
        right: 0;
      }
      .best-paper_mobile-item--4{
        margin-bottom: 10px;
      }
      .best-paper_mobile-arrow--4{
        transform: rotate(240deg);
        top: 15px;
        right: -80px;
        width: 70px;
      }
      .best-paper_mobile-item--1{
        margin-right: 60px;
      }
      .best-paper_mobile-arrow--1{
        transform: scaleX(-1) rotate(10deg);
        bottom: -30px;
        right: -30px;
      }

      .best-paper_mobile-arrow--2{
        transform: rotate(-8deg);
        bottom: 10px;
        right: 20px;
      }
      .best-paper_mobile-item--3{
        margin-right: 40px;
      }
      .best-paper_mobile-arrow--3{
        transform: scaleX(-1) rotate(9deg);
        bottom: 15px;
        left: 100%;
      }


      .best-paper_mobile-arrow--5{
        left: -20px;
        bottom: -40px;
      }

      .best-paper_mobile-item--7{
        margin-left: 130px;
      }
      .best-paper_mobile-arrow--7{
        transform: rotate(190deg);
        top: 22px;
        left: -60px;
      }

      .best-paper_mobile-arrow--6{
        transform: scaleY(-1) rotate(10deg);
        bottom: 70%;
        left: 0;
      }

      .best-paper_mobile-item--8{
        right: 85px;
      }
      .best-paper_mobile-arrow--8{
        left: -60px;
        transform: rotate(45deg);
        bottom: -25px;
      }

      .best-paper_dot{
        z-index: 0;
      }

      .best-paper_dot--orange{
        left: 120px;
        top: 22%;
        right: unset;
      }

      .best-paper_dot--yellow{
        right: 120px;
        top: 18%;
        left: unset;
      }

      .best-paper_dot--green {
        left: unset;
        right: 150px;
        top: 55%;
      }
      .best-paper_dot--pink {
        right: 100px;
      }
    }

    @media(max-width: 768px){
      .paper-container{
        padding: 0 10px;
      }
      .sub_title{
        font-size: 20px;
      }
      .best-paper_text{
        font-size: 12px;
        max-width: 350px;
      }

      .best-paper_mobile {
        margin-top: 30px;
      }

      .best-paper_image{
        max-width: 150px;
      }

      .best-paper_top-text{
        gap: 20px;
      }

      .best-paper_item-text h3{
        font-size: 12px;
      }
      .best-paper_item-text p{
        font-size: 10px;
      }
      .best-paper_mobile-item--4 {
        margin-bottom: 9px;
      }
      .best-paper_mobile-arrow--4{
        width: 50px;
        top: 8px;
        right: -40px;
      }
      .best-paper_mobile-item--1{
        margin-bottom: 6px;
      }
      .best-paper_mobile-arrow--1{
        width: 62px;
        bottom: -22px;
      }
      .best-paper_mobile-arrow--2{
        width: 36px;
        bottom: 8px;
      }
      .best-paper_mobile-item--3 {
        margin-right: 25px;
      }
      .best-paper_mobile-arrow--3{
        transform: scaleX(-1) rotate(4deg);
        bottom: 8px;
        left: 102%;
        width: 41px;
      }

      .best-paper_bottom{
        align-items: flex-start;
      }

      .best-paper_bottom-text{
        gap: 17px;
      }

      .best-paper_mobile-sheet {
        max-width: 135px;
      }

      .best-paper_mobile-arrow--5 {
        left: -10px;
        bottom: -21px;
        width: 57px;
        transform: rotate(15deg);
      }

      .best-paper_mobile-item--7 {
        margin-left: 60px;
      }
      .best-paper_mobile-arrow--7 {
        left: -40px;
        width: 36px;
      }

      .best-paper_mobile-arrow--6 {
        top: -20px;
        left: 5px;
        width: 60px;
        bottom: unset;
      }

      .best-paper_mobile-item--8 {
        right: 65px;
      }
      .best-paper_mobile-arrow--8{
        width: 53px;
        left: -35px;
        bottom: -15px;
      }

      .best-paper_dot{
        width: 18px;
        height: 18px;
      }

      .best-paper_dot--orange{
        left: 17px;
        top: 27%;
      }

      .best-paper_dot--yellow{
        right: 37px;
        top: 18%;
      }

      .best-paper_dot--green {
        right: 64px;
        top: 60%;
      }
      .best-paper_dot--pink {
        right: 25px;
        bottom: 13%;
      }
    }

     /* Third Block
    =============================================================*/
    .free-test-pack {
      padding: 0;
    }

    .free-test-pack__container {
      max-width: 1180px;
      margin: 0 auto;
    }

    .free-test-pack__title {
      color: var(--black);
      text-align: center;
      font-family: 'Evolventa', 'Geologica', sans-serif;
      font-size: 30px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
      margin: 0 auto 20px;
    }

    .free-test-pack__label {
      width: 100%;
      max-width: 396px;
      margin: 0 auto 35px;
      border-radius: 999px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      padding: 9px 30px;
    }

    .free-test-pack__label-icon {
      width: 35.75px;
      height: 38.002px;
      flex-shrink: 0;
      object-fit: contain;
    }

    .free-test-pack__label-text {
      color: var(--black);
      text-align: center;
      font-size: 20px;
      font-style: normal;
      font-weight: 300;
      line-height: normal;
      letter-spacing: -0.8px;
    }

    .free-test-pack__flex {
      display: flex;
      justify-items: center;
      justify-content: center;
      gap: 40px;
      margin-bottom: 35px;
    }

    .free-test-pack__card {
      width: 100%;
      max-width: 228px;
      border-radius: 25px;
      background: #F3F3F3;
      padding: 10px;
    }

    .free-test-pack__card-image-wrap {
      border-radius: 15px;
      overflow: hidden;
      background: #F7D9EC;
      margin-bottom: 14px;
    }

    .free-test-pack__card-image {
      width: 100%;
      display: block;
    }

    .free-test-pack__card-title {
      color: #2D2D2D;
      text-align: center;
      font-family: 'Geologica', sans-serif;
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
    }

    .free-test-pack__card-subtitle {
      color: #2D2D2D;
      text-align: center;
      font-family: 'Geologica', sans-serif;
      font-size: 14px;
      font-style: normal;
      font-weight: 250;
      line-height: normal;
    }

    .free-test-pack__bottom {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .free-test-pack__text {
      color: #2D2D2D;
      text-align: center;
      font-family: 'Geologica', sans-serif;
      font-size: 20px;
      font-style: normal;
      font-weight: 250;
      line-height: normal;
      max-width: 640px;
      margin: 0 auto 26px;
    }

    .free-test-pack__btn-wrap{
      position: relative;
    }

    .free-test-pack__arrow {
      position: absolute;
      right: -85px;
      bottom: 75px;
      width: 77px;
      height: auto;
      pointer-events: none;
      transform: rotate(-45deg);
    }

    /* tablet */
    @media (max-width: 1024px) {
      .free-test-pack__container {
        padding-bottom: 5px;
      }
      .free-test-pack__title{
        font-size: 24px;
      }

      .free-test-pack__label{
        max-width: 350px;
      }

      .free-test-pack__label-text{
        font-size: 16px;
      }
      .free-test-pack__label-icon{
        width: 30px;
        height: 32px;
      }
      .free-test-pack__flex{
        gap: 30px;
      }
      .free-test-pack__card-title{
        font-size: 16px;
      }
      .free-test-pack__card-subtitle{
        font-size: 12px;
      }
      .free-test-pack__text{
        font-size: 18px;
      }
      .free-test-pack__arrow {
        right: -100px;
        bottom: 20px;
      }
    }

    /* mobile */
    @media (max-width: 768px) {

      .free-test-pack__container {
        padding-bottom: 10px;
      }

      .free-test-pack__title {
        font-size: 20px;
        max-width: 270px;
        margin-bottom: 15px;
      }

      .free-test-pack__label {
        height: 40px;
        margin-bottom: 15px;
        gap: 5px;
        padding: 14px 18px;
        width: 275px;
      }

      .free-test-pack__label-icon {
        width: 26px;
        height: 28px;
      }

      .free-test-pack__label-text {
        font-size: 14px;
      }

      .free-test-pack__flex {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
      }

      .free-test-pack__card {
        max-width: 201px;
        padding: 8px;
        border-radius: 20px;
      }

      .free-test-pack__card-image-wrap {
        border-radius: 12px;
        margin-bottom: 12px;
      }

      .free-test-pack__card-title {
        font-size: 14px;
      }

      .free-test-pack__card-subtitle {
        font-size: 12px;
      }

      .free-test-pack__text {
        font-size: 12px;
        max-width: 300px;
        margin-bottom: 18px;
      }

      .free-test-pack__arrow {
        right: -40px;
        bottom: 25px;
        width: 45px;
        transform: rotate(-70deg);
      }
    }

    /* Fourth Block
    =============================================================*/

    .wholesale-terms {
      padding: 15px 0;
      background: var(--beige);
    }

    .wholesale-terms__box {
      max-width: var(--container);
      margin: 0 auto;
      background: var(--yellow);
      border-radius: 30px;
      padding: 40px;
    }

    .wholesale-terms__title {
      color: #2D2D2D;
      text-align: center;
      font-family: 'Evolventa', 'Geologica', sans-serif;
      font-size: 30px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
      margin-bottom: 55px;
    }

    .wholesale-terms__items {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 50px;
    }

    .wholesale-terms__item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .wholesale-terms__icon-wrap {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      flex-shrink: 0;
    }

    .wholesale-terms__icon {
      max-width: 28px;
      max-height: 28px;
      width: auto;
      height: auto;
    }

    .wholesale-terms__text {
      color: #2D2D2D;
      text-align: center;
      font-family: 'Geologica', sans-serif;
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 130%;
    }

    .wholesale-terms__note {
      width: 100%;
      max-width: 417px;
      height: 55px;
      margin: 0 auto;
      border-radius: 50px;
      background: #FFF;
      display: flex;
      align-items: center;
      justify-content: center;

      color: #2D2D2D;
      text-align: center;
      font-family: 'Geologica', sans-serif;
      font-size: 20px;
      font-style: normal;
      font-weight: 300;
      line-height: 130%;
    }

    /* tablet */
    @media (max-width: 1024px) {

      .wholesale-terms__box {
        border-radius: 34px;
        padding: 50px 30px 45px;
      }

      .wholesale-terms__title {
        font-size: 24px;
        margin-bottom: 42px;
      }

      .wholesale-terms__items {
        gap: 24px 18px;
        margin-bottom: 40px;
      }

      .wholesale-terms__item {
        max-width: 180px;
      }

      .wholesale-terms__text {
        font-size: 16px;
      }

      .wholesale-terms__note {
        font-size: 18px;
      }
    }

    /* mobile */
    @media (max-width: 768px) {

      .wholesale-terms{
        padding: 0;
      }

      .wholesale-terms__box {
        border-radius: 30px;
        padding: 35px 20px 20px;
      }

      .wholesale-terms__title {
        font-size: 20px;
        max-width: 224px;
        margin: 0 auto 30px;
      }

      .wholesale-terms__items {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
      }

      .wholesale-terms__item {
        max-width: 100%;
      }

      .wholesale-terms__icon-wrap {
        margin-bottom: 10px;
      }

      .wholesale-terms__text {
        font-size: 14px;
      }

      .wholesale-terms__note {
        max-width: 288px;
        height: 41px;
        font-size: 14px;
        padding: 0 18px;
      }

      .wholesale-terms__item--mobile-hidden {
        display: none;
      }
    }

    /* Clients Block
    =============================================================*/

    .clients {
      padding: 0;
      background: var(--beige);
    }

    .clients__title {
      color: #2D2D2D;
      text-align: center;
      font-family: 'Evolventa', 'Geologica', sans-serif;
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 35px;
    }

    .clients__list {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .clients__card {
      width: 100%;
      max-width: 336px;
      border-radius: 30px;
      overflow: hidden;
      background: var(--beige);
      display: flex;
      flex-direction: column;
    }

    .clients__image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .clients__bottom {
      padding: 15px;
      text-align: center;
      border-radius: 0 0 30px 30px;
      border: 1px solid var(--black);
      border-top: transparent;
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .clients__text {
      color: #2D2D2D;
      font-size: 18px;
      font-weight: 400;
      line-height: 130%;
    }

    /* нижний текст */
    .clients__after-title {
      margin-top: 100px;
      margin-bottom: 10px;
      text-align: center;
    }

    .clients__after-title h2 {
      font-family: 'Evolventa', 'Geologica', sans-serif;
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .clients__after-title p {
      font-family: 'Evolventa', 'Geologica', sans-serif;
      font-size: 25px;
      font-weight: 400;
    }

    /* tablet */
    @media (max-width: 1024px) {

      .clients__title {
        font-size: 24px;
        margin-bottom: 30px;
      }

      .clients__text {
        font-size: 16px;
      }

      .clients__after-title h2 {
        font-size: 24px;
      }

      .clients__after-title p {
        font-size: 18px;
      }
    }

    /* mobile */
    @media (max-width: 768px) {

      .clients__title{
        font-size: 20px;
      }

      .clients__list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }

      .clients__card {
        max-width: 280px;
        border-radius: 25px;
      }

      .clients__image {
        height: 164px;
      }

      .clients__bottom {
        padding: 16px 10px;
      }

      .clients__after-title {
        margin-top: 35px;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .clients__after-title h2 {
        font-size: 20px;
        width: 295px;
      }

      .clients__after-title p {
        font-size: 12px;
        width: 235px;
      }
    }

    /* Catalog Format Block
    =============================================================*/

    .catalog-format {
      padding: 0;
      background: var(--beige);
    }

    .catalog-format__box {
      background: var(--pink);
      border-radius: 0;
      padding: 35px 40px 30px;
    }

    .catalog-format__top {
      margin-bottom: 45px;
    }

    .catalog-format__choose-container{
      margin: 0 auto;
      width: 235px;
      position: relative;
    }

    .catalog-format__choose {
      width: 235px;
      height: 55px;
      margin: 0 auto 25px;
      border-radius: 999px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;

      color: #2D2D2D;
      text-align: center;
      font-family: 'Geologica', sans-serif;
      font-size: 20px;
      font-weight: 400;
    }

    .catalog-format__top-row {
      max-width: 930px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 100px;
      position: relative;
    }

    .catalog-format__option {
      height: 66px;
      border-radius: 999px;
      background: #fff;
      padding: 8px 35px;

      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .catalog-format__option-title {
      color: var(--black);
      text-align: center;
      font-family: 'Geologica', sans-serif;
      font-size: 20px;
      font-weight: 400;
      margin-bottom: 3px;
    }

    .catalog-format__option-text {
      color: var(--black);
      text-align: center;
      font-family: 'Geologica', sans-serif;
      font-size: 18px;
      font-weight: 250;
    }

    .catalog-format__arrow {
      position: absolute;
      width: 84px;
      height: auto;
      pointer-events: none;
    }

    .catalog-format__arrow--left {
      bottom: -10px;
      right: 108%;
      transform: scaleX(-1) rotate(45deg);
    }

    .catalog-format__arrow--right {
      bottom: -10px;
      left: 108%;
      transform: rotate(45deg);
    }

    .catalog-format__title {
      color: var(--black);
      text-align: center;
      font-size: 20px;
      font-weight: 400;
      line-height: normal;
      margin-bottom: 20px;
    }

    .catalog-format__cards {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 55px;
    }

    .catalog-format__card {
      width: 100%;
      max-width: 230px;
      height: 140px;
      border-radius: 20px;
      background: #fff;
      padding: 18px 20px;

      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .catalog-format__card-number {
      color: var(--black);
      text-align: center;
      font-family: 'Geologica', sans-serif;
      font-size: 85px;
      font-weight: 900;
      line-height: 0.9;
      margin-bottom: 10px;
    }

    .catalog-format__card-text {
      color: var(--black);
      text-align: center;
      font-family: 'Geologica', sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: 1.2;
    }

    .catalog-format__card-custom-title {
      color: var(--black);
      text-align: center;
      font-family: 'Geologica', sans-serif;
      font-size: 37px;
      font-weight: 700;
      line-height: 0.95;
      text-transform: lowercase;
      margin-bottom: 18px;
    }

    .catalog-format__btn-wrap {
      display: flex;
      justify-content: center;
      position: relative;
    }

    .catalog-format__btn-wrap .hero__btn {
      margin-bottom: 0;
    }

    @media (max-width: 1024px) {
      .catalog-format__box {
        padding: 40px 20px 25px;
      }

      .catalog-format__choose {
        max-width: 280px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 25px;
      }

      .catalog-format__top-row {
        gap: 16px;
      }

      .catalog-format__option {
        max-width: 520px;
        min-height: 62px;
      }

      .catalog-format__option-title {
        font-size: 18px;
      }

      .catalog-format__option-text {
        font-size: 14px;
      }

      .catalog-format__title {
        font-size: 24px;
        margin-bottom: 24px;
      }

      .catalog-format__cards {
        gap: 16px;
        margin-bottom: 35px;
      }

      .catalog-format__card {
        max-width: calc(50% - 8px);
        min-height: 165px;
      }

      .catalog-format__card-number {
        font-size: 84px;
      }

      .catalog-format__card-text {
        font-size: 16px;
      }

      .catalog-format__card-custom-title {
        font-size: 30px;
      }

      .catalog-format__btn-wrap .hero__btn {
        min-width: unset;
      }
    }

    /* mobile */
    @media (max-width: 768px) {
      .catalog-format__box {
        padding: 30px 15px 20px;
      }

      .catalog-format__top {
        margin-bottom: 20px;
      }

      .catalog-format__top-row {
        gap: 35px;
        justify-content: center;
     }

      .catalog-format__choose {
        max-width: 163px;
        height: 41px;
        margin-bottom: 16px;
        padding: 10px 16px;
        font-size: 15px;
      }

      .catalog-format__arrow{
        width: 40px;
      }

      .catalog-format__arrow--left {
        bottom: -5px;
        left: -5px;
        right: unset;
        transform: rotate(-65deg) scaleX(-1);
      }

      .catalog-format__arrow--right {
        bottom: -5px;
        right: -5px;
        left: unset;
        transform: rotate(65deg);
      }

      .catalog-format__option {
        max-width: 100%;
        height: 54px;
        padding: 6px 10px;
      }

      .catalog-format__option-title {
        font-size: 12px;
        margin-bottom: 2px;
      }

      .catalog-format__option-text {
        font-size: 10px;
        width: 130px;
      }

      .catalog-format__title {
        font-size: 16px;
        margin-bottom: 25px;
      }

      .catalog-format__cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 22px;
      }

      .catalog-format__card {
        max-width: 100%;
        min-height: unset;
        height: 94px;
        border-radius: 20px;
        padding: 12px 10px;
      }

      .catalog-format__card-number {
        font-size: 49px;
        margin-bottom: 8px;
      }

      .catalog-format__card-text {
        font-size: 14px;
      }

      .catalog-format__card-custom-title {
        font-size: 22px;
        margin-bottom: 10px;
      }
    }

    /* Tastes Block
    ============================================================= */

    /* .tastes-section {
      margin: 0;
    } */

    .tastes-paper-body {
      padding: 80px 0 85px;
      background: var(--beige);
    }

    .tastes {
      max-width: 1120px;
      margin: 0 auto;
    }

    .tastes__desktop {
      display: grid;
      grid-template-columns: 1fr 360px 1fr;
      align-items: center;
      column-gap: 35px;
      margin-bottom: 35px;
    }

    .tastes__col {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .tastes__col--left .tastes__item {
      justify-content: flex-end;
    }

    .tastes__col--right .tastes__item {
      justify-content: flex-start;
    }

    .tastes__item {
      display: flex;
      align-items: center;
      gap: 18px;
      cursor: pointer;
    }

    .tastes__name {
      color: #2D2D2D;
      text-align: center;
      font-family: 'Geologica', sans-serif;
      font-size: 22px;
      font-style: normal;
      font-weight: 300;
      line-height: 130%;
    }

    .tastes__icon {
      width: 70px;
      height: 70px;
      object-fit: contain;
      flex-shrink: 0;
      transition: .3s ease;
    }
    .tastes__item:hover .tastes__icon{
      transform: scale(1.1);
    }

    .tastes__center {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .tastes__more {
      color: #2D2D2D;
      text-align: center;
      font-family: 'Geologica', sans-serif;
      font-size: 30px;
      font-style: normal;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 6px;
    }

    .tastes__number {
      color: #2D2D2D;
      text-align: center;
      font-family: 'Geologica', sans-serif;
      font-size: 255px;
      font-style: normal;
      font-weight: 700;
      line-height: 0.82;
      letter-spacing: -20.4px;
    }

    .tastes__title {
      color: #2D2D2D;
      text-align: center;
      font-family: 'Geologica', sans-serif;
      font-size: 65px;
      font-style: normal;
      font-weight: 700;
      line-height: 0.95;
      letter-spacing: -2px;
    }

    .tastes__note {
      width: 100%;
      max-width: 479px;
      height: 55px;
      margin: 0 auto;
      padding: 12px 28px;
      border-radius: 999px;
      border: 1px solid #2D2D2D;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
    }

    .tastes__note-icon {
      width: 35px;
      height: 33px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .tastes__note-text {
      color: #2D2D2D;
      text-align: center;
      font-family: 'Geologica', sans-serif;
      font-size: 20px;
      font-style: normal;
      font-weight: 300;
      line-height: normal;
      letter-spacing: -0.8px;
    }

    .tastes__mobile {
      display: none;
    }

    /* tablet */
    @media (max-width: 1200px) {
      .tastes-paper-body {
        padding: 70px 0 75px;
      }

      .tastes__desktop {
        grid-template-columns: 1fr 300px 1fr;
        column-gap: 25px;
      }

      .tastes__name {
        font-size: 20px;
      }

      .tastes__icon {
        width: 62px;
        height: 62px;
      }

      .tastes__more {
        font-size: 42px;
      }

      .tastes__number {
        font-size: 210px;
        letter-spacing: -14px;
      }

      .tastes__title {
        font-size: 62px;
      }
    }

    @media (max-width: 1024px) {
      .tastes-paper-body {
        padding: 55px 0 60px;
      }

      .tastes__desktop {
        display: none;
      }

      .tastes__mobile {
        display: block;
        margin-bottom: 28px;
      }

      .tastes__mobile-head {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 26px;
      }

      .tastes__mobile-head .tastes__more {
        font-size: 34px;
        margin-bottom: 4px;
      }

      .tastes__mobile-head .tastes__number {
        font-size: 165px;
        line-height: 0.82;
        letter-spacing: -10px;
      }

      .tastes__mobile-head .tastes__title {
        font-size: 54px;
        letter-spacing: -1px;
      }

      .tastes__slider-wrap {
        max-width: 100%;
      }

      .tastes__slider {
        display: flex;
        gap: 30px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0 8px 12px;
        scrollbar-width: none;
      }

      .tastes__slider::-webkit-scrollbar {
        display: none;
      }

      .tastes__slide {
        scroll-snap-align: start;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: unset;
        min-width: 90px;
        width: 90px;
      }

      .tastes__slide-icon {
        width: 90px;
        height: 90px;
        object-fit: contain;
        margin-bottom: 12px;
      }

      .tastes__slide-name {
        color: #2D2D2D;
        text-align: center;
        font-family: 'Geologica', sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
      }

      .tastes__progress {
        width: 100%;
        max-width: 300px;
        height: 12px;
        margin: 0 auto;
        border-radius: 999px;
        background: #F1DB68;
        overflow: hidden;
      }

      .tastes__progress-fill {
        width: 30%;
        height: 100%;
        border-radius: 999px;
        background: #2D2D2D;
        transition: width 0.2s ease, transform 0.2s ease;
      }

      .tastes__note {
        max-width: 620px;
      }
    }

    /* mobile */
    @media (max-width: 768px) {
      .tastes-paper-body {
        padding: 40px 0 32px;
      }

      .tastes__mobile {
        margin-bottom: 22px;
      }

      .tastes__mobile-head {
        margin-bottom: 20px;
      }

      .tastes__mobile-head .tastes__more {
        font-size: 21px;
        margin-bottom: 2px;
      }

      .tastes__mobile-head .tastes__number {
        font-size: 150px;
        letter-spacing: -8px;
      }

      .tastes__mobile-head .tastes__title {
        font-size: 40px;
        line-height: 0.95;
      }

      .tastes__slider {
        padding: 0 0 10px;
      }

      .tastes__slide-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 10px;
      }

      .tastes__slide-name {
        font-size: 14px;
        font-weight: 400;
      }

      .tastes__progress {
        max-width: 200px;
        height: 9px;
      }

      .tastes__note {
        max-width: 358px;
        height: 45px;
        min-height: unset;
        padding: 14px 18px;
        gap: 5px;
      }

      .tastes__note-icon {
        width: 30px;
        height: 28px;
      }

      .tastes__note-text {
        font-size: 14px;
      }
    }

    /* Packaging Block
    ============================================================= */

    .packaging {
      padding: 0 0 30px;
    }

    .packaging__container {
      max-width: 1440px;
      margin: 0 auto;
    }

    .packaging__title {
      max-width: 887px;
      margin: 0 auto 35px;
      color: #2D2D2D;
      text-align: center;
      font-family: 'Evolventa', 'Geologica', sans-serif;
      font-size: 30px;
      font-weight: 700;
      line-height: 1.3;
    }

    .packaging__grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 352px;
      grid-template-rows: 172px 172px;
      gap: 20px;
    }

    .packaging__card {
      background: var(--beige);
      border-radius: 25px;
      padding: 15px;
      display: flex;
      align-items: center;
      gap: 20px;
      min-width: 0;
    }

    .packaging__card--1 {
      grid-column: 1;
      grid-row: 1;
    }

    .packaging__card--2 {
      grid-column: 1;
      grid-row: 2;
    }

    .packaging__card--3 {
      grid-column: 2;
      grid-row: 1;
    }

    .packaging__card--4 {
      grid-column: 2;
      grid-row: 2;
    }

    .packaging__card--5 {
      grid-column: 3;
      grid-row: 1 / span 2;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
    }

    .packaging__image-wrap {
      width: 157px;
      height: 142px;
      border-radius: 15px;
      overflow: hidden;
      flex-shrink: 0;
    }

    .packaging__image-wrap--branding {
      width: 100%;
      height: 229px;
    }

    .packaging__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .packaging__content {
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-width: 0;
    }

    .packaging__content--branding {
      gap: 0;
    }

    .packaging__number {
      color: #2D2D2D;
      font-family: 'Geologica', sans-serif;
      font-size: 20px;
      font-weight: 500;
      line-height: normal;
    }

    .packaging__text {
      color: #2D2D2D;
      font-family: 'Geologica', sans-serif;
      font-size: 18px;
      font-weight: 300;
      line-height: 1.25;
    }

    .packaging__text--branding {
      font-size: 18px;
      font-weight: 300;
      line-height: 1.25;
      width: 218px;
    }

    /* tablet */
    @media (max-width: 1200px) {
      .packaging__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, auto);
      }

      .packaging__card--1 {
        grid-column: 1;
        grid-row: 1;
      }

      .packaging__card--2 {
        grid-column: 1;
        grid-row: 2;
      }

      .packaging__card--3 {
        grid-column: 2;
        grid-row: 1;
      }

      .packaging__card--4 {
        grid-column: 2;
        grid-row: 2;
      }

      .packaging__card--5 {
        grid-column: 1 / -1;
        grid-row: 3;
        flex-direction: row;
        align-items: center;
      }

      .packaging__image-wrap--branding {
        width: 157px;
        height: 142px;
      }

      .packaging__text--branding{
        width: 240px;
      }
    }

    @media (max-width: 1024px) {
      .packaging__title {
        font-size: 24px;
        max-width: 900px;
        margin-bottom: 28px;
      }

      .packaging__grid {
        gap: 16px;
      }

      .packaging__card {
        min-height: 172px;
      }

      .packaging__text {
        font-size: 16px;
      }
    }

    /* mobile */
    @media (max-width: 768px) {
      .packaging {
        padding: 0 0 20px;
      }

      .packaging__title {
        font-size: 20px;
        max-width: 370px;
        margin-bottom: 20px;
      }

      .packaging__grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 10px;
      }

      .packaging__card,
      .packaging__card--5 {
        grid-column: auto;
        grid-row: auto;
        min-height: unset;
        flex-direction: row;
        align-items: center;
        padding: 10px 20px 10px 10px;
        gap: 10px;
        border-radius: 20px;
      }

      .packaging__image-wrap,
      .packaging__image-wrap--branding {
        width: 75px;
        height: 75px;
        border-radius: 10px;
      }

      .packaging__content,
      .packaging__content--branding {
        gap: 10px;
      }

      .packaging__number {
        font-size: 14px;
      }

      .packaging__text,
      .packaging__text--branding {
        font-size: 13px;
        line-height: 1.2;
      }

      .packaging__text--branding {
       width: 188px;
      }
    }

    /* Unique Block
    ============================================================= */

    .unique-paper-body {
      padding: 80px 0 85px;
      background: var(--beige);
    }

    .unique {
      max-width: 1320px;
      margin: 0 auto;
    }

    .unique__head {
      text-align: center;
      margin-bottom: 40px;
    }

    .unique__title {
      max-width: 980px;
      margin: 0 auto 12px;
      color: #2D2D2D;
      text-align: center;
      font-family: 'Evolventa', 'Geologica', sans-serif;
      font-size: 30px;
      font-weight: 700;
      line-height: 1.2;
    }

    .unique__subtitle {
      color: #2D2D2D;
      text-align: center;
      font-family: 'Evolventa', 'Geologica', sans-serif;
      font-size: 25px;
      font-weight: 300;
      line-height: 1.2;
    }

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

    .unique__card {
      height: 168px;
      border-radius: 30px;
      border: 1px solid #2D2D2D;
      padding: 15px;
      display: flex;
      align-items: center;
      gap: 20px;
      background: transparent;
    }

    .unique__image-wrap {
      width: 138px;
      height: 138px;
      border-radius: 15px;
      overflow: hidden;
      flex-shrink: 0;
    }

    .unique__image-wrap--wide {
      width: 138px;
      height: 138px;
    }

    .unique__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .unique__content {
      flex: 1;
      min-width: 0;
    }

    .unique__card-title {
      color: #2D2D2D;
      font-family: 'Geologica', sans-serif;
      font-size: 25px;
      font-weight: 500;
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .unique__text {
      color: #2D2D2D;
      font-family: 'Geologica', sans-serif;
      font-size: 18px;
      font-weight: 300;
      line-height: 1.3;
    }

    .unique__card--wide {
      grid-column: 1 / -1;
      position: relative;
      height: 168px;
      padding-right: 20px;
    }

    .unique__content--wide {
      max-width: 820px;
    }

    .unique__text--wide {
      max-width: 900px;
    }

    .unique__doc {
      position: absolute;
      right: 67px;
      bottom: -18px;
      width: 139px;
      height: auto;
      transition: .3s ease;
    }

    .unique__doc:hover{
      transform: scale(1.05);
    }

    /* tablet */
    @media (max-width: 1200px) {
      .unique-paper-body {
        padding: 70px 0 75px;
      }

      .unique__card-title {
        font-size: 24px;
      }

      .unique__subtitle {
        font-size: 20px;
      }

      .unique__doc {
        right: 20px;
      }

      .unique__card--wide {
        padding-right: 175px;
      }
    }

    @media (max-width: 1024px) {
      .unique-paper-body {
        padding: 55px 0 60px;
      }

      .unique__head {
        margin-bottom: 30px;
      }

      .unique__title {
        font-size: 24px;
        max-width: 760px;
      }

      .unique__subtitle {
        font-size: 20px;
      }

      .unique__grid{
        gap: 15px;
      }

      .unique__card {
        height: 150px;
        border-radius: 25px;
      }

      .unique__image-wrap {
        width: 120px;
        height: 120px;
        border-radius: 10px;
      }

      .unique__card-title {
        font-size: 20px;
        margin-bottom: 10px;
      }

      .unique__text {
        font-size: 14px;
      }

      .unique__card--wide {
        padding-right: 160px;
      }

      .unique__doc {
        width: 120px;
        right: 16px;
        bottom: -10px;
      }
    }

    /* mobile */
    @media (max-width: 768px) {
      .unique-paper-body {
        padding: 40px 0 32px;
      }

      .unique__head {
        margin-bottom: 30px;
      }

      .unique__title {
        max-width: 360px;
        font-size: 20px;
        margin-bottom: 10px;
      }

      .unique__subtitle {
        font-size: 12px;
      }

      .unique__grid {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .unique__card {
        height: 95px;
        border-radius: 20px;
        padding: 10px;
        gap: 10px;
      }

      .unique__image-wrap {
        width: 75px;
        height: 75px;
        border-radius: 10px;
      }

      .unique__card-title {
        font-size: 14px;
        margin-bottom: 8px;
      }

      .unique__text {
        font-size: 13px;
        line-height: 1.25;
      }

      .unique__card--wide {
        height: unset;
        grid-column: auto;
        display: block;
        padding: 10px;
      }

      .unique__image-wrap--wide {
        width: 100%;
        height: 144px;
        margin-bottom: 10px;
      }

      .unique__content--wide {
        max-width: 65%;
      }

      .unique__text--wide {
        max-width: 100%;
      }

      .unique__doc {
        width: 120px;
        right: 5px;
        bottom: 15px;
      }
    }

    /* Compare Table Block
    ============================================================= */

    .compare-table {
      padding: 0 0 30px;
      background: var(--pink);
      position: relative;
      overflow: hidden;
    }

    .compare-table__container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .compare-table__title {
      color: #2D2D2D;
      text-align: center;
      font-family: 'Evolventa', 'Geologica', sans-serif;
      font-size: 30px;
      font-weight: 700;
      line-height: normal;
      margin-bottom: 35px;
    }

    .compare-table__desktop {
      display: block;
    }

    .compare-table__image {
      width: 100%;
      height: auto;
      display: block;
    }

    .compare-table__mobile {
      display: none;
    }

    /* tablet */
    @media (max-width: 1024px) {
      .compare-table {
        padding: 0 0 25px;
      }

      .compare-table__title {
        font-size: 24px;
        margin-bottom: 30px;
      }
    }

    /* mobile */
    @media (max-width: 768px) {
      .compare-table {
        padding: 0 0 20px;
      }

      .compare-table__title {
        font-size: 20px;
      }

      .compare-table__desktop {
        display: none;
      }

      .compare-table__mobile {
        display: block;
      }

      .compare-table__slider-wrap {
        width: 100%;
      }

      .compare-table__slider {
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        padding: 0 0 12px;
      }

      .compare-table__slider::-webkit-scrollbar {
        display: none;
      }

      .compare-table__mobile-image {
        width: 940px;
        max-width: none;
        height: auto;
        display: block;
      }

      .compare-table__progress {
        width: 100%;
        max-width: 260px;
        height: 12px;
        margin: 0 auto 22px;
        border-radius: 999px;
        background: #FFFBEE;
        overflow: hidden;
      }

      .compare-table__progress-fill {
        width: 30%;
        height: 100%;
        border-radius: 999px;
        background: #2D2D2D;
        transition: width 0.2s ease, transform 0.2s ease;
      }

      .compare-table__btn-wrap {
        display: flex;
        justify-content: center;
      }

      .compare-table__btn {
        height: 41px;
        padding: 12px 24px;
        border-radius: 999px;
        background: #FFFBEE;
        border: none;
        color: #2D2D2D;
        text-align: center;
        font-family: 'Geologica', sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: normal;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
      }
    }

    /* Compare Table Modal
    ============================================================= */

    .compare-table-modal {
      position: fixed;
      inset: 0;
      background: var(--pink);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .compare-table-modal.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .compare-table-modal__inner {
      position: relative;
      width: 100%;
      height: 100%;
      padding: 24px;
    }

    .compare-table-modal__close {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 44px;
      height: 44px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 2;
    }

    .compare-table-modal__close span {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 42px;
      height: 3px;
      background: #2D2D2D;
      border-radius: 999px;
    }

    .compare-table-modal__close span:nth-child(1) {
      transform: translate(-50%, -50%) rotate(45deg);
    }

    .compare-table-modal__close span:nth-child(2) {
      transform: translate(-50%, -50%) rotate(-45deg);
    }

    .compare-table-modal__content {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .compare-table-modal__image {
      display: block;
      max-width: none;
      height: auto;
    }

    @media (min-width: 769px) {
      .compare-table-modal {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .compare-table-modal__inner {
        padding: 20px 16px 16px;
      }

      .compare-table-modal__close {
        top: 18px;
        right: 18px;
        width: 36px;
        height: 36px;
      }

      .compare-table-modal__close span {
        width: 34px;
        height: 2.5px;
      }

      .compare-table-modal__content {
        overflow: hidden;
      }

      .compare-table-modal__image {
        width: 615px;
        height: auto;
        transform: rotate(90deg);
        transform-origin: center center;
      }

      body.compare-table-modal-open {
        overflow: hidden;
      }
    }

    /* Marketplace Block
    ============================================================= */

    .marketplace-paper-body {
      padding: 70px 0;
      background: var(--beige);
    }

    .marketplace {
      max-width: 1240px;
      margin: 0 auto;
    }

    .marketplace__cta {
      border: 1px solid #2D2D2D;
      border-radius: 50px;
      padding: 41px;
      margin-bottom: 100px;
    }

    .marketplace__cta-title {
      max-width: 889px;
      margin: 0 auto 27px;
      color: #2D2D2D;
      text-align: center;
      font-size: 35px;
      font-weight: 500;
      line-height: 1.25;
      letter-spacing: -1.4px;
    }

    .marketplace__cta-bottom {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 35px;
    }

    .marketplace__btn.hero__btn {
      min-width: 334px;
      height: 60px;
      margin-bottom: 0;
    }

    .marketplace__cta-note {
      color: #2D2D2D;
      font-family: 'Geologica', sans-serif;
      font-size: 18px;
      font-weight: 300;
      line-height: 1.2;
    }

    .marketplace__info {
      text-align: center;
    }

    .marketplace__title {
      max-width: 1253px;
      margin: 0 auto 35px;
      color: #2D2D2D;
      text-align: center;
      font-size: 35px;
      font-weight: 500;
      line-height: 1.25;
      letter-spacing: -1.6px;
    }

    .marketplace__wb {
      color: #6E06FB;
    }

    .marketplace__ozon {
      color: #0071FD;
    }

    .marketplace__rating {
      width: 100%;
      max-width: 485px;
      height: 55px;
      margin: 0 auto;
      padding: 12px 30px;
      border-radius: 999px;
      border: 1px solid #2D2D2D;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
    }

    .marketplace__rating-text {
      color: #2D2D2D;
      text-align: center;
      font-family: 'Geologica', sans-serif;
      font-size: 20px;
      font-weight: 400;
      line-height: 1.2;
      letter-spacing: -0.8px;
    }

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

    /* tablet */
    @media (max-width: 1024px) {
      .marketplace-paper-body {
        padding: 60px 0;
      }

      .marketplace__cta {
        border-radius: 38px;
        padding: 30px;
        margin-bottom: 70px;
      }

      .marketplace__cta-title {
        font-size: 24px;
        margin-bottom: 20px;
        max-width: 590px;
      }

      .marketplace__cta-bottom {
        gap: 24px;
      }

      .marketplace__btn.hero__btn {
        min-width: 320px;
        height: 50px;
      }

      .marketplace__cta-note {
        font-size: 18px;
      }

      .marketplace__title {
        font-size: 24px;
        margin-bottom: 30px;
      }

      .marketplace__rating {
        max-width: 400px;
        min-height: 50px;
        gap: 10px;
        padding: 12px 22px;
      }

      .marketplace__rating-text {
        font-size: 18px;
      }

      .marketplace__rating-icon {
        width: 24px;
        height: 24px;
      }
    }

    /* mobile */
    @media (max-width: 768px) {
      .marketplace-paper-body {
        padding: 35px 0;
      }

      .marketplace__cta {
        border-radius: 20px;
        padding: 20px 13px;
        margin-bottom: 40px;
      }

      .marketplace__cta-title {
        max-width: 344px;
        font-size: 20px;
        margin-bottom: 20px;
        letter-spacing: -0.8px;
      }

      .marketplace__cta-bottom {
        flex-direction: column;
        gap: 10px;
      }

      .marketplace__btn.hero__btn {
        max-width: 189px;
        min-width: unset;
        height: 45px;
        font-size: 14px;
        color: var(--beige);
      }

      .marketplace__cta-note {
        font-size: 14px;
        text-align: center;
        letter-spacing: -0.56px;
      }

      .marketplace__title {
        max-width: 376px;
        font-size: 20px;
        line-height: 1.22;
        margin-bottom: 20px;
        letter-spacing: -0.9px;
      }

      .marketplace__rating {
        max-width: 340px;
        min-height: unset;
        height: 45px;
        padding: 8px 14px;
        gap: 8px;
      }

      .marketplace__rating-text {
        font-size: 14px;
      }

      .marketplace__rating-icon {
        width: 19px;
        height: 19px;
      }
    }

    /* Reviews Stats Block
    ============================================================= */

    .reviews-stats {
      padding: 0;
      background: var(--pink);
      overflow: hidden;
    }

    .reviews-stats__inner {
      position: relative;
      max-width: 1440px;
      margin: 0 auto;
      padding: 30px 50px;
    }

    .reviews-stats__top-card,
    .reviews-stats__bottom-card {
      position: absolute;
      background: var(--beige);
      border-radius: 35px;
      padding: 27px;
      z-index: 2;
      width: 100%;
      max-width: 325px;
    }

    .reviews-stats__top-card {
      top: 110px;
      left: 65px;
      transform: rotate(-8deg);
    }

    .reviews-stats__bottom-card {
      right: 70px;
      bottom: 40px;
      transform: rotate(4deg);
    }

    .reviews-stats__number {
      color: #2D2D2D;
      text-align: center;
      font-size: 50px;
      font-family: 'Geologica', sans-serif;
      font-style: normal;
      font-weight: 900;
      line-height: 0.95;
      margin-bottom: 12px;
    }

    .reviews-stats__text {
      color: #2D2D2D;
      text-align: center;
      font-family: 'Geologica', sans-serif;
      font-size: 20px;
      font-style: normal;
      font-weight: 300;
      line-height: 1.12;
      letter-spacing: -0.8px;
    }

    .reviews-stats__reviews {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
    }

    .reviews-stats__review {
      width: 100%;
      max-width: 165px;
      border-radius: 20px;
      border: 5px solid #FAE888;
      overflow: hidden;
      background: #fff;
      flex-shrink: 0;
    }

    .reviews-stats__review img {
      width: 100%;
      display: block;
    }

    .reviews-stats__review--2 {
      max-width: 200px;
      margin-top: 0;
    }

    .reviews-stats__dot {
      position: absolute;
      border-radius: 50%;
      z-index: 3;
    }

    .reviews-stats__dot--yellow {
      width: 44px;
      height: 44px;
      background: #FAE888;
    }

    .reviews-stats__dot--green {
      width: 44px;
      height: 44px;
      background: #B3E59D;
    }

    .reviews-stats__dot--pink {
      width: 42px;
      height: 42px;
      background: #D98CC1;
    }

    .reviews-stats__dot--orange {
      width: 42px;
      height: 42px;
      background: #F2A377;
    }

    .reviews-stats__dot--yellow-left {
      left: 100px;
      top: 265px;
    }

    .reviews-stats__dot--green-right {
      right: 90px;
      top: 260px;
    }

    .reviews-stats__dot--green-mobile-top {
      display: none;
    }

    .reviews-stats__dot--yellow-mobile-top {
      display: none;
    }

    .reviews-stats__dot--orange-mobile-bottom {
      display: none;
    }

    .reviews-stats__dot--pink-mobile-bottom {
      display: none;
    }

    /* tablet */
    @media (max-width: 1400px) {
      .reviews-stats__inner {
        padding-left: 20px;
        padding-right: 20px;
      }

      .reviews-stats__reviews {
        gap: 20px;
      }

      .reviews-stats__top-card,
      .reviews-stats__bottom-card {
        position: absolute;
        background: var(--beige);
        border-radius: 25px;
        padding: 27px;
        z-index: 2;
        width: 100%;
        max-width: 280px;
      }

      .reviews-stats__number {
        font-size: 40px;
      }

      .reviews-stats__text {
        font-size: 16px;
      }

      .reviews-stats__top-card {
        left: 20px;
      }

      .reviews-stats__bottom-card {
        right: 20px;
      }

      .reviews-stats__dot--yellow-left {
        left: 50px;
        top: 250px;
      }
      .reviews-stats__dot--green-right {
        right: 50px;
        top: 280px;
      }
    }

    @media (max-width: 1200px) {
      .reviews-stats__inner {
        padding: 25px 25px 40px;
      }

      .reviews-stats__reviews {
        padding: 0;
        gap: 15px;
        justify-content: center;
      }

      .reviews-stats__review {
        max-width: 150px;
        border-radius: 20px;
        border: 5px solid #FAE888;
      }

      .reviews-stats__review--2 {
        max-width: 200px;
        margin-top: 0;
      }

      .reviews-stats__top-card,
      .reviews-stats__bottom-card {
        position: relative;
        transform: none;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        border-radius: 20px;
        padding: 28px 16px 22px;
      }

      .reviews-stats__top-card {
        top: auto;
        left: auto;
        margin-bottom: 38px;
        transform: rotate(-4deg);
      }

      .reviews-stats__bottom-card {
        right: auto;
        bottom: auto;
        margin-top: 40px;
        transform: rotate(5deg);
      }

      .reviews-stats__number {
        font-size: 40px;
        margin-bottom: 10px;
      }

      .reviews-stats__text {
        font-size: 22px;
        line-height: 1.1;
      }

      .reviews-stats__dot--yellow-left,
      .reviews-stats__dot--green-right {
        display: none;
      }

      .reviews-stats__dot--green-mobile-top,
      .reviews-stats__dot--yellow-mobile-top,
      .reviews-stats__dot--pink-mobile-top,
      .reviews-stats__dot--yellow-mobile-bottom,
      .reviews-stats__dot--orange-mobile-bottom,
      .reviews-stats__dot--pink-mobile-bottom,
      .reviews-stats__dot--green-mobile-bottom {
        display: block;
        width: 34px;
        height: 34px;
      }

      .reviews-stats__dot--green-mobile-top {
        left: 18px;
        top: 0;
        background: #B3E59D;
      }

      .reviews-stats__dot--yellow-mobile-top {
        right: 54px;
        top: 126px;
        background: #FAE888;
      }

      .reviews-stats__dot--orange-mobile-bottom {
        left: 25px;
        bottom: 318px;
        background: #FBAB8B;
      }

      .reviews-stats__dot--pink-mobile-bottom {
        right: 20px;
        bottom: 10px;
        background: #E79BCB;
      }

      .reviews-stats__dot--yellow-mobile-bottom{
        right: -5px;
        bottom: 126px;
        background: #FAE888;
      }

      .reviews-stats__dot--pink-mobile-top{
        left: 65px;
        top: -20px;
        background: #E79BCB;
      }

      .reviews-stats__dot--yellow-mobile-top{
        top: 0;
        right: 32px;
      }
      .reviews-stats__dot--green-mobile-top{
        left: 38px;
      }
      .reviews-stats__dot--orange-mobile-bottom {
        bottom: 130px;
      }

      .reviews-stats__dot--green-mobile-bottom{
        right: 150px;
        bottom: 200px;
        background: #B3E59D;
      }
    }
    /* mobile */
    @media (max-width: 768px) {
      .reviews-stats__inner{
        padding: 20px 10px;
      }
      .reviews-stats__dot--green-mobile-top,
      .reviews-stats__dot--yellow-mobile-top,
      .reviews-stats__dot--pink-mobile-top,
      .reviews-stats__dot--yellow-mobile-bottom,
      .reviews-stats__dot--orange-mobile-bottom,
      .reviews-stats__dot--pink-mobile-bottom,
      .reviews-stats__dot--green-mobile-bottom {
        width: 18px;
        height: 18px;
      }
      .reviews-stats__top-card,
      .reviews-stats__bottom-card {
        max-width: 260px;
        padding: 17px 25px;
      }
      .reviews-stats__number{
        font-size: 30px;
      }
      .reviews-stats__text{
        font-size: 14px;
      }

      .reviews-stats__dot--pink-mobile-top {
        top: -10px;
      }
      .reviews-stats__dot--green-mobile-bottom{
        right: 100px;
        bottom: 170px;
      }

      .reviews-stats__review {
        max-width: 94px;
        border-radius: 15px;
        border: 3px solid #FAE888;
      }

      .reviews-stats__review--2 {
        max-width: 114px;
        margin-top: 0;
      }
    }

    /* Footer
============================================================= */

@media(min-width: 1445px){
  .site-footer__body {
    overflow: visible !important;
  }

  .site-footer__contacts-card {
    padding: 28px 40px !important;
    right: 0 !important;
  }
}

.site-footer {
  position: relative;
  margin-top: 0;
  background: var(--beige);
  width: 100%;
  margin: 70px 0 0;
}

.site-footer__rip {
  display: none;
}

.site-footer__body {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 55px 0 20px;
  background: var(--beige);
  overflow: hidden;
}

.site-footer__top {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
  justify-content: space-between;
}

.site-footer__cols-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 50px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__logo {
  width: 200px;
  height: auto;
  display: block;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 70px;
  align-items: start;
}

.site-footer__col-title {
  color: #2D2D2D;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 19px;
}

.site-footer__menu,
.site-footer__socials,
.site-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__link {
  position: relative;
  display: inline-block;
  width: fit-content;
  color: #2D2D2D;
  font-family: 'Geologica', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.35;
}

.site-footer__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}

.site-footer__link:hover::after {
  width: 100%;
}

.site-footer__contacts-card {
  position: relative;
  background: var(--pink);
  border-radius: 40px;
  padding: 28px 60px 28px 40px;
  min-height: 257px;
  width: 100%;
  margin-bottom: -5px;
  right: -35px;
}

.site-footer__cities {
  display: flex;
  gap: 80px;
  margin-bottom: 45px;
}

.site-footer__city-title {
  color: #2D2D2D;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.site-footer__city-address {
  color: #2D2D2D;
  font-family: 'Geologica', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.35;
}

.site-footer__schedule {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__schedule-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer__schedule-label {
  color: #2D2D2D;
  font-family: 'Geologica', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
}

.site-footer__schedule-value {
  color: #2D2D2D;
  font-family: 'Geologica', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
}

.site-footer__callback {
  position: absolute;
  right: 60px;
  bottom: -32px;
}

.site-footer__callback.hero__btn {
  min-width: 376px;
  height: 53px;
  margin-bottom: 0;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 50px;
}

.site-footer__copyright {
  color: #2D2D2D;
  font-family: 'Geologica', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 250;
  line-height: 1.35;
}

.site-footer__links {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 75px;
  justify-content: flex-start;
}

.site-footer__other{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 75px;
  justify-content: space-between;
}

.site-footer__links .site-footer__link {
  font-size: 18px;
  font-style: normal;
  font-weight: 250;
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .site-footer__body {
    padding: 45px 0 20px;
  }

  .site-footer__top {
    gap: 35px 24px;
    margin-bottom: 70px;
    flex-direction: column;
    align-items: unset;
  }

  .site-footer__cols {
    gap: 40px;
  }

  .site-footer__cols-container {
    padding: 0 20px;
  }

  .site-footer__col-title,
  .site-footer__city-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .site-footer__link,
  .site-footer__city-address,
  .site-footer__schedule-label,
  .site-footer__schedule-value,
  .site-footer__copyright,
  .site-footer__links .site-footer__link {
    font-size: 15px;
  }

  .site-footer__callback.hero__btn {
    min-width: 340px;
    height: 56px;
    font-size: 15px;
  }

  .site-footer__links {
    gap: 35px;
  }

  .site-footer__contacts-card__container {
    display: flex;
    justify-content: flex-end;
  }

  .site-footer__contacts-card {
    width: unset;
    right: 0;
    border-radius: 30px 0 0 30px;
    padding: 28px 40px;
  }

  .site-footer__bottom {
    padding: 0 20px;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }
}

/* mobile */
@media (max-width: 768px) {
  .site-footer__rip {
    display: block;
    width: 100%;
    height: 56px;
    background: url('../images/paper_white.svg') repeat-x top center;
    background-size: auto 100%;
    transform: rotate(180deg);
    margin-bottom: -1px;
  }

  .site-footer__body {
    padding: 25px 0 20px;
  }

  .site-footer__top {
    display: block;
    margin-bottom: 70px;
  }

  .site-footer__brand {
    align-items: center;
    margin-bottom: 40px;
  }

  .site-footer__logo {
    width: 200px;
  }

  .site-footer__cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    align-items: start;
  }

  .site-footer__col:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .site-footer__col:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .site-footer__col:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
    margin-top: 158px;
  }

  .site-footer__col-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .site-footer__link {
    font-size: 16px;
    line-height: 1.35;
  }

  .site-footer__contacts-card {
    border-radius: 20px 0 0 20px;
    padding: 15px 10px 40px;
    min-height: unset;
  }

  .site-footer__cities {
    gap: 22px;
    margin-bottom: 20px;
  }

  .site-footer__city-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .site-footer__city-address {
    font-size: 14px;
    line-height: 1.3;
  }

  .site-footer__schedule {
    gap: 8px;
  }

  .site-footer__schedule-row {
    gap: 12px;
  }

  .site-footer__schedule-label,
  .site-footer__schedule-value {
    font-size: 14px;
    line-height: 1.3;
  }

  .site-footer__callback {
    right: 10px;
    bottom: -22px;
  }

  .site-footer__callback.hero__btn {
    width: 100%;
    max-width: 273px;
    min-width: unset;
    height: 45px;
    font-size: 14px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    gap: 10px;
    padding: 0 20px;
  }

  .site-footer__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .site-footer__other {
    align-items: flex-start;
    gap: 6px;
    flex-direction: column;
}

  .site-footer__links .site-footer__link,
  .site-footer__copyright {
    font-size: 14px;
    line-height: 1.35;
  }
}

/* Legal pages
============================================================= */

.site-header--legal {
  justify-content: space-between;
  padding: 28px 24px;
}

.header-contact--legal {
  min-width: 240px;
}

.legal-page {
  padding: 120px 0 40px;
}

.legal-page__box {
  /* width: calc(100% - 50px); */
  max-width: var(--container);
  margin: 0 auto;
  background: var(--beige);
  border-radius: 30px;
  padding: 40px;
}

.legal-page__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: #2D2D2D;
  font-size: 14px;
  font-weight: 300;
}

.legal-page__title {
  font-family: 'Evolventa', 'Geologica', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 12px;
}

.legal-page__date {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: #2D2D2D;
  margin-bottom: 30px;
}

.legal-page__content {
  color: #2D2D2D;
}

.legal-page__content h2 {
  font-family: 'Evolventa', 'Geologica', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin: 30px 0 16px;
}

.legal-page__content p,
.legal-page__content li {
  font-family: 'Geologica', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 14px;
}

.legal-page__content ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

.legal-page__content strong {
  font-weight: 500;
}

.legal-page__content a,
.legal-page__breadcrumbs a {
  position: relative;
  display: inline-block;
}

.legal-page__content a::after,
.legal-page__breadcrumbs a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}

.legal-page__content a:hover::after,
.legal-page__breadcrumbs a:hover::after {
  width: 100%;
}

.legal-page__requisites {
  margin-top: 10px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 181, 228, 0.25);
}

.site-footer--legal {
  margin-top: 30px;
}

.site-footer--legal .site-footer__body {
  padding-top: 0;
}

@media (max-width: 1024px) {
  .site-header--legal {
    padding: 12px 14px;
  }

  .header-contact--legal {
    min-width: 210px;
  }

  .legal-page {
    padding: 90px 0 50px;
  }

  .legal-page__box {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .legal-page__title {
    font-size: 28px;
  }

  .legal-page__content h2 {
    font-size: 22px;
  }

  .legal-page__content p,
  .legal-page__content li {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .site-header--legal {
    padding: 10px;
  }

  .header-contact--legal {
    min-width: unset;
    padding: 0 18px;
  }

  .header-contact--legal .header-contact__phone {
    font-size: 12px;
  }

  .header-contact--legal .header-contact__text {
    font-size: 14px;
  }

  .legal-page {
    padding: 65px 0 30px;
  }

  .legal-page__box {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .legal-page__breadcrumbs {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .legal-page__title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .legal-page__date {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .legal-page__content h2 {
    font-size: 18px;
    margin: 24px 0 12px;
  }

  .legal-page__content p,
  .legal-page__content li {
    font-size: 14px;
    line-height: 1.5;
  }

  .legal-page__content ul {
    padding-left: 18px;
  }

  .legal-page__requisites {
    padding: 16px;
    border-radius: 16px;
  }
}