/* --------------------- ГЛОБАЛЬНЫЕ СТИЛИ --------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Замените ваш старый стиль для body на этот */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Этот блок можно оставить как есть, либо удалить, так как он уже есть выше */
body {
    font-family: 'Gilroy', Arial, sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.4;
    box-sizing: border-box; /* box-sizing лучше применять ко всему через * */
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, li {
    list-style: none;
}

button {
    cursor: pointer;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------------------- HEADER ---------------------- */
.header {
    background: #4680b6;
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu-button {
    background: #fff;
    color: #4A83B8;
    border: none;
    padding: 10px 25px;
    border-radius: 45px;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.menu-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu-icon {
    margin-right: 28px;
    width: 38px;
    transition: transform 0.3s ease;
}
.menu-button:hover .menu-icon {
    transform: rotate(90deg);
}

.header_p {
    font-size: 24px;
}

/* ---------------------- HERO ---------------------- */
.hero {
 background-color: #4680b6;
 padding-bottom: 40px;
}

.hero__content {
 display: flex;
 justify-content: space-between;
 align-items: flex-start;
 margin-bottom: 20px;
 flex-wrap: wrap;
}

.hero__left {
 flex-basis: 55%;
 padding-right: 40px;
 min-width: 300px;
}

.hero__right {
 flex-basis: 40%;
 display: flex;
 justify-content: center;
 align-items: flex-start;
 min-width: 300px;
}

.hero__title {
 font-size: 54px;
 font-weight: 900;
 color: #fff;
 margin-bottom: 20px;
}

.hero__subtitle {
 font-size: 24px;
 font-weight: 500;
 color: #fff;
 margin-bottom: 30px;
 line-height: 1.5;
}

.hero__description p {
 font-size: 20px;
 color: #fff;
 line-height: 1.5;
 margin-bottom: 15px;
}

.hero__description strong {
 font-weight: 700;
}

/* Единственное изменение здесь - убран transform: rotate(5deg) */
.hero__bottle-img {
 max-width: 85%;
}

.hero__bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
}

.hero__bottom-left {
    flex-basis: 48%;
    min-width: 300px;
}

.hero__bottom-right {
    flex-basis: 48%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 300px;
}

.hero__bottom-text {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 450px;
}

.hero__hands-img,
.hero__skin-img {
    border-radius: 20px;
}
.hero__bottom-left {
    max-width: 30%;
}

/* ---------------------- METHOD (Замена Penetration) ---------------------- */
.method {
    padding: 80px 0;
    background-color: #fff;
}

.method__title {
    font-size: 32px;
    font-weight: 600;
    color: #4680b6;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.method__subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #4680b6;
    margin-top: 30px;
    margin-bottom: 15px;
}

.method__content {
    max-width: 850px;
    margin: 0 auto;
    color: #4680b6;
    font-size: 18px;
    line-height: 1.6;
}

.method__content p, .method__content ul {
    margin-bottom: 20px;
}

.method__content ul {
    padding-left: 20px;
}

.method__content li {
    list-style-type: disc;
    margin-bottom: 15px;
    padding-left: 10px;
}

.method__content strong {
    font-weight: 700;
}


/* ---------------------- ADVANTAGES ---------------------- */
.advantages {
    padding: 80px 0;
    background-color: #fff;
    overflow-x: hidden;
}

.advantages .container {
    max-width: 1200px;
}

.advantages__content {
    display: flex;
    align-items: center;
    position: relative;
}

.advantages__left {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-right: 50px;
    z-index: 2;
}

.advantages__img {
    max-width: 60%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

.advantages__smudge {
    position: absolute;
    height: auto;
    top: 50%;
    right: -120px;
    transform: translateY(-50%);
    z-index: 3;
}

.advantages__right {
    flex: 1;
    color: #fff;
    padding: 60px 80px 60px 150px;
    margin-left: -100px;
    z-index: 1;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.advantages__right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100vw;
    background-color: #4680b6;
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
    z-index: -1;
}

.advantages__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    padding-left: 20px;
}

.advantages__list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 20px;
}

.advantages__item {
    margin-bottom: 25px;
}

.advantages__item:last-child {
    margin-bottom: 0;
}

.advantages__item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.advantages__item p {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}

/* ---------------------- PDF Button in Advantages ---------------------- */
.advantages__pdf-button-container {
    margin-top: 40px;
    text-align: center;
    padding-left: 20px;
}

.advantages__pdf-button {
    display: inline-block;
    background-color: #fff;
    color: #4680b6;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.advantages__pdf-button:hover {
    background-color: #f0f0f0;
    color: #3a6a9a;
    transform: scale(1.03);
}

/* ---------------------- ADAPTIVE STYLES ---------------------- */
@media (max-width: 1280px) {
    .container {
        min-width: 768px;
        max-width: 1000px;
        padding: 0 30px;
    }
    .hero__title { font-size: 30px; }
    .hero__subtitle { font-size: 15px; }
    .hero__description p { font-size: 15px; }
    .method__title { font-size: 28px; }
    .method__content { font-size: 16px; }
}
@media (max-width: 769px) {
    .container {
        min-width: 480px;
        max-width: 740px;
    }
    .hero__content {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    .hero__bottle-img { width: 40%; }
    .hero__bottom {
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }
    .hero__bottom-text { font-size: 15px; }
    .method__title { font-size: 24px; }
    .advantages__smudge { right: 0; }
    .advantages__list { padding-left: 0; }
    .advantages__title { padding-left: 0; font-size: 24px; }
    .advantages__item h3 { font-size: 18px; }
    .advantages__item p { font-size: 12px; }
    .advantages__pdf-button { font-size: 14px; }
    .hero__left { padding-right: 0; }
    .advantages__right { padding: 40px 0px 60px 100px; }
}
@media (max-width: 480px) {
    .container {
        min-width: 360px;
        max-width: 440px;
    }
    .method__title { font-size: 18px; }
    .method__content { font-size: 14px; }
    .hero__title { font-size: 22px; }
    .hero__subtitle { font-size: 12px; }
    .hero__description p { font-size: 14px; }
    .advantages__title { font-size: 18px; }
        .advantages__content {
    flex-direction: column;
  }
  .advantages__smudge {
    position: relative;
    transform: none;
    max-width: 50%;
    left: 11%;
    top: 35px;
  }
  .advantages__right::before {
    width: 110%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .advantages__left {
    padding-right: 0;
  }
  .advantages__right {
    padding: 40px 20px 200px 120px;
  }
  .advantages {
    padding-bottom: 0;
  }
}
@media (max-width: 360px) {
    .container {
        min-width: 310px;
        max-width: 340px;
        padding: 0 5px;
    }
    .hero__title { font-size: 20px; }
}

/* ---------------------- АНИМАЦИИ ---------------------- */
.animate { opacity: 0; transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.animate-fade-in-up { opacity: 0; transform: translateY(40px); }
.animate-fade-in-left { opacity: 0; transform: translateX(-50px); }
.animate-fade-in-right { opacity: 0; transform: translateX(50px); }
.animate-zoom-in { opacity: 0; transform: scale(0.9); }
.is-visible { opacity: 1; transform: none; }
.advantages__item.is-visible:nth-child(1) { transition-delay: 0.2s; }
.advantages__item.is-visible:nth-child(2) { transition-delay: 0.3s; }
.advantages__item.is-visible:nth-child(3) { transition-delay: 0.4s; }
.advantages__item.is-visible:nth-child(4) { transition-delay: 0.5s; }
.advantages__item.is-visible:nth-child(5) { transition-delay: 0.6s; }
.advantages__pdf-button-container.is-visible { transition-delay: 0.7s; }


.hero__bottom-text {
    font-style: italic;
}