* { box-sizing: border-box; margin: 0; padding: 0; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #2e7d32; text-decoration: none; transition: color .2s; }
a:hover { color: #1b5e20; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.25; }
.section__title { font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 1rem; color: #1a1a2e; }
.section__subtitle { font-size: 1.5rem; font-weight: 700; text-align: center; margin: 2.5rem 0 1.5rem; color: #1a1a2e; }
.section__lead { text-align: center; max-width: 800px; margin: 0 auto 2.5rem; font-size: 1.05rem; color: #555; }
.section__warning { text-align: center; font-size: 1.15rem; font-weight: 700; color: #d32f2f; margin: 2rem 0; padding: 1rem; background: #fff3f3; border-radius: 8px; }
.section__safety { text-align: center; font-size: .95rem; color: #555; margin-top: 2rem; padding: 1rem; background: #e8f5e9; border-radius: 8px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all .25s;
    text-align: center;
    text-decoration: none;
}
.btn--accent {
    background: #2e7d32;
    color: #fff;
    padding: 10px 24px;
    font-size: .9rem;
}
.btn--accent:hover { background: #1b5e20; color: #fff; }
.btn--cta {
    background: linear-gradient(135deg, #ff6f00, #ff8f00);
    color: #fff;
    padding: 16px 32px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 4px 15px rgba(255,111,0,.35);
    width: 100%;
}
.btn--cta:hover {
    background: linear-gradient(135deg, #e65100, #ff6f00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,111,0,.45);
    color: #fff;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #1b4957;
    color: #ccc;
    font-size: .8rem;
    padding: 8px 0;
}
.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar__badge {
    background: #2e7d32;
    color: #fff;
    padding: 3px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: .75rem;
}
.top-bar__info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.top-bar__info span { white-space: nowrap; }
.top-bar__info strong { color: #fff; }

/* ===== HEADER ===== */
.header {
    background: #fff;
    border-bottom: 2px solid #e8f5e9;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 16px;
    position: relative;
}
.header__logo { display: flex; flex-direction: column; text-decoration: none; }
.header__logo-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #2e7d32;
    line-height: 1;
}
.header__logo-desc { font-size: .7rem; color: #888; }
.header__nav { display: flex; gap: 16px; }
.header__nav-link {
    font-size: .85rem;
    font-weight: 500;
    color: #333;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: all .2s;
}
.header__nav-link:hover { color: #2e7d32; border-bottom-color: #2e7d32; }
.header__cta { white-space: nowrap; }
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.header__burger span {
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all .3s;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 50%, #fff 100%);
    padding: 3rem 0 0;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.hero__title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.hero__subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.hero__trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 1.5rem;
}
.hero__benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hero__benefits li {
    position: relative;
    padding-left: 28px;
    font-size: .95rem;
}
.hero__benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: 700;
    font-size: 1.1rem;
}
.hero__right { display: flex; flex-direction: column; align-items: center; }
.hero__product-img {
    max-width: 280px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,.15));
}
.hero__offer-box {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,.1);
    width: 100%;
    max-width: 420px;
}
.hero__timer-wrap { text-align: center; margin-bottom: 1rem; }
.hero__timer-label { font-size: .85rem; color: #666; display: block; margin-bottom: 6px; }
.timer { display: flex; justify-content: center; align-items: center; gap: 4px; }
.timer__block { text-align: center; }
.timer__num {
    display: block;
    background: #d32f2f;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    padding: 6px 12px;
    border-radius: 6px;
    min-width: 48px;
}
.timer__label { font-size: .7rem; color: #888; }
.timer__sep { font-size: 1.5rem; font-weight: 700; color: #d32f2f; }
.hero__stock {
    text-align: center;
    font-size: .9rem;
    color: #d32f2f;
    margin-bottom: .8rem;
}
.hero__price { text-align: center; margin-bottom: .5rem; }
.hero__price-old {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 12px;
}
.hero__price-new {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #d32f2f;
}
.hero__price-note { display: block; text-align: center; color: #888; font-size: .75rem; margin-bottom: 1rem; }
.hero__consent { font-size: .7rem; color: #999; text-align: center; margin-top: .5rem; }
.hero__consent a { color: #2e7d32; }

/* Hero Badges */
.hero__badges {
    background: #fff;
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid #e0e0e0;
}
.hero__badges-inner { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.hero__badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .9rem;
    font-weight: 600;
    color: #333;
}
.hero__badge-item img { width: 50px; height: 50px; }

/* ===== ORDER FORM ===== */
.order-form { display: flex; flex-direction: column; gap: 10px; }
.order-form--inline {
    flex-direction: row;
    max-width: 700px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.order-form__field {
    flex: 1;
    min-width: 200px;
}
.order-form__input, .order-form__select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: .95rem;
    font-family: 'Open Sans', sans-serif;
    transition: all .2s;
}
.order-form__input:focus, .order-form__select:focus {
    outline: none;
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46,125,50,.1);
}
.phone-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
.phone-input-flag {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
    letter-spacing: -1px;
}
.order-form__input--phone {
    padding-left: 58px !important;
}
.order-form__checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: #666;
}
.order-form__checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #2e7d32;
}
.order-form__checkbox a { color: #2e7d32; }
.order-form__submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff6f00, #ff8f00);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.order-form__submit:hover {
    background: linear-gradient(135deg, #e65100, #ff6f00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,111,0,.45);
}

/* ===== SECTIONS ===== */
.section {
    padding: 3rem 0;
}
.section--problem {
    background: #f9f9f9;
}
.section--mechanism {
    background: #fff;
}
.section--composition {
    background: #f9f9f9;
}
.section--expert {
    background: #e8f5e9;
}
.section--instructions {
    background: #fff;
}
.section--comparison {
    background: #f9f9f9;
}
.section--certificates {
    background: #fff;
}
.section--reviews {
    background: #f9f9f9;
}
.section--faq {
    background: #fff;
}
.section--delivery {
    background: #f9f9f9;
}

/* ===== PROBLEM SECTION ===== */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.symptom-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #d32f2f;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition: all .3s;
}
.symptom-card:hover {
    box-shadow: 0 4px 16px rgba(211,47,47,.15);
    transform: translateY(-4px);
}
.symptom-card__icon {
    font-size: 2rem;
    margin-bottom: .5rem;
}
.symptom-card__title {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: .5rem;
    font-size: 1rem;
}
.symptom-card__text {
    font-size: .9rem;
    color: #666;
    line-height: 1.5;
}

/* ===== MECHANISM SECTION ===== */
.mechanism-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.mechanism-step {
    text-align: center;
    position: relative;
}
.mechanism-step::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 100%;
    width: 100%;
    height: 2px;
    background: #2e7d32;
}
.mechanism-step:last-child::after {
    display: none;
}
.mechanism-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #2e7d32;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.mechanism-step__title {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: .5rem;
    font-size: 1.1rem;
}
.mechanism-step__text {
    font-size: .9rem;
    color: #666;
    line-height: 1.6;
}

/* ===== COMPOSITION SECTION ===== */
.composition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.ingredient-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition: all .3s;
}
.ingredient-card:hover {
    box-shadow: 0 8px 24px rgba(46,125,50,.12);
    transform: translateY(-4px);
}
.ingredient-card__title {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: .5rem;
    font-size: 1.05rem;
}
.ingredient-card__text {
    font-size: .9rem;
    color: #666;
    line-height: 1.6;
}

/* ===== EXPERT SECTION ===== */
.expert-quote {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-left: 5px solid #2e7d32;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.expert-quote__text {
    font-size: 1.1rem;
    color: #333;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.expert-quote__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.expert-quote__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.expert-quote__info h4 {
    font-size: .95rem;
    color: #1a1a2e;
    margin-bottom: .2rem;
}
.expert-quote__info p {
    font-size: .85rem;
    color: #666;
}

/* ===== INSTRUCTIONS SECTION ===== */
.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.instruction-box {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 12px;
    border-top: 4px solid #2e7d32;
}
.instruction-box__title {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}
.instruction-box__content {
    font-size: .9rem;
    color: #666;
    line-height: 1.6;
}
.instruction-box__content ul {
    list-style: none;
    margin-top: .5rem;
}
.instruction-box__content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: .5rem;
}
.instruction-box__content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: 700;
}

/* ===== COMPARISON SECTION ===== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    border-radius: 8px;
    overflow: hidden;
}
.comparison-table th {
    background: #2e7d32;
    color: #fff;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: .95rem;
}
.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    font-size: .9rem;
}
.comparison-table tr:hover {
    background: #f5f5f5;
}
.comparison-table tr:last-child td {
    border-bottom: none;
}

/* ===== CERTIFICATES SECTION ===== */
.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}
.cert-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.cert-stat {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}
.cert-stat__number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #2e7d32;
    margin-bottom: .5rem;
}
.cert-stat__label {
    font-size: .9rem;
    color: #666;
    line-height: 1.4;
}
.cert-image {
    text-align: center;
}
.cert-image__img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.cert-image__caption {
    font-size: .85rem;
    color: #666;
    margin-top: 1rem;
}
.cert-warning {
    background: #fff3f3;
    border: 1px solid #ffcdd2;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    color: #c62828;
    font-size: .9rem;
    line-height: 1.6;
}

/* ===== REVIEWS SECTION ===== */
.review-card--hidden {
    display: none;
}
.reviews-grid.reviews-grid--expanded .review-card--hidden {
    display: block;
}
.reviews-toggle-wrap {
    text-align: center;
    margin-top: 2rem;
}
.btn--toggle-reviews {
    display: inline-block;
    background: #fff;
    color: #2e7d32;
    border: 2px solid #2e7d32;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    font-family: 'Montserrat', sans-serif;
}
.btn--toggle-reviews:hover {
    background: #2e7d32;
    color: #fff;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.review-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition: all .3s;
}
.review-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    transform: translateY(-4px);
}
.review-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.review-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.review-card__author {
    flex: 1;
}
.review-card__name {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: .2rem;
    font-size: .95rem;
}
.review-card__rating {
    color: #ff9800;
    font-size: .85rem;
}
.review-card__text {
    font-size: .9rem;
    color: #666;
    line-height: 1.6;
}

/* ===== FAQ SECTION ===== */
.faq-accordion {
    max-width: 800px;
    margin: 2rem auto;
}
.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-item__header {
    padding: 1.5rem;
    background: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .2s;
    user-select: none;
}
.faq-item__header:hover {
    background: #f0f0f0;
}
.faq-item__title {
    font-weight: 700;
    color: #1a1a2e;
    font-size: .95rem;
}
.faq-item__toggle {
    font-size: 1.5rem;
    color: #2e7d32;
    transition: transform .3s;
}
.faq-item.active .faq-item__toggle {
    transform: rotate(180deg);
}
.faq-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.faq-item.active .faq-item__content {
    max-height: 500px;
}
.faq-item__text {
    padding: 1.5rem;
    font-size: .9rem;
    color: #666;
    line-height: 1.6;
}

/* ===== DELIVERY SECTION ===== */
.delivery-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: center;
}
.delivery-step {
    text-align: center;
    position: relative;
}
.delivery-step::after {
    display: none;
}
.delivery-step:last-child::after {
    display: none;
}
.delivery-step__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.delivery-step__title {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: .5rem;
    font-size: 1.05rem;
}
.delivery-step__text {
    font-size: .9rem;
    color: #666;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: #1b4957;
    color: #ccc;
    padding: 2.5rem 0 1.5rem;
    font-size: .85rem;
    margin-top: 3rem;
}
.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.15);
    margin-bottom: 1.5rem;
}
.footer__brand {}
.footer__logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 .8rem;
}
.footer__brand-desc {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.footer__legal-box {
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 6px;
    padding: .8rem 1rem;
    color: #ccc;
    line-height: 1.6;
}
.footer__legal-box p {
    margin: 0;
}
.footer__col {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.footer__col-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 .4rem;
}
.footer__col-link {
    color: #aaa;
    text-decoration: none;
    transition: color .2s;
}
.footer__col-link:hover {
    color: #fff;
}
.footer__contacts .footer__contact-address {
    color: #aaa;
    line-height: 1.5;
}
.footer__contacts .footer__contact-hours {
    color: #ccc;
    margin: 0;
}
.footer__contact-email {
    color: #ccc;
    margin: 0;
}
.footer__contact-email a {
    color: #ccc;
    text-decoration: none;
    transition: color .2s;
}
.footer__contact-email a:hover {
    color: #fff;
}
.footer__callback-btn {
    display: inline-block;
    margin-top: .5rem;
    padding: .5rem 1.2rem;
    border: 1px solid #fff;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: background .2s, color .2s;
    font-size: .85rem;
}
.footer__callback-btn:hover {
    background: #fff;
    color: #1a1a2e;
}
.footer__mid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.15);
    margin-bottom: 1.5rem;
}
.footer__mid a {
    color: #aaa;
    text-decoration: underline;
    transition: color .2s;
}
.footer__mid a:hover {
    color: #fff;
}
.footer__bottom {
    text-align: center;
}
.footer__copy {
    color: #aaa;
    margin-bottom: 1rem;
}
.footer__disclaimer {
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    line-height: 1.5;
}

/* ===== NUTRA ABOUT SECTION ===== */
.section--nutra-about {
    background: #f9f9f9;
    padding: 3rem 0;
}
.nutra-about__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
.nutra-about__left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.nutra-about__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a2e;
    line-height: 1.25;
}
.nutra-about__subtitle {
    font-size: 1.05rem;
    text-align: center;
    color: #555;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.nutra-about__description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: center;
}
.nutra-about__description p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}
.nutra-about__benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.nutra-benefit {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid #2e7d32;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    transition: all .3s;
}
.nutra-benefit:hover {
    box-shadow: 0 8px 24px rgba(46,125,50,.12);
    transform: translateY(-4px);
}
.nutra-benefit__icon {
    font-size: 1.8rem;
    min-width: 50px;
    text-align: center;
    line-height: 1;
    flex-shrink: 0;
}
.nutra-benefit__text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}
.nutra-benefit__text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}


/* ===== DANGER CARDS (Problem Section) ===== */
.danger-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.danger-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #d32f2f;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition: all .3s;
}
.danger-card:hover {
    box-shadow: 0 4px 16px rgba(211,47,47,.15);
    transform: translateY(-4px);
}
.danger-card__icon {
    font-size: 2rem;
    margin-bottom: .5rem;
    color: #d32f2f;
}
.danger-card h4 {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: .5rem;
    font-size: 1rem;
}
.danger-card p {
    font-size: .9rem;
    color: #666;
    line-height: 1.5;
}

/* ===== STEP CARDS (Mechanism Section) ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.step-card {
    text-align: center;
    background: #f9f9f9;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border-top: 4px solid #2e7d32;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition: all .3s;
    position: relative;
}
.step-card:hover {
    box-shadow: 0 8px 24px rgba(46,125,50,.12);
    transform: translateY(-4px);
}
.step-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #2e7d32;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}
.step-card__title {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: .5rem;
    font-size: 1.1rem;
}
.step-card__text {
    font-size: .9rem;
    color: #666;
    line-height: 1.6;
}

/* ===== COMP CARDS (Composition Section) ===== */
.comp-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition: all .3s;
    text-align: center;
}
.comp-card:hover {
    box-shadow: 0 8px 24px rgba(46,125,50,.12);
    transform: translateY(-4px);
}
.comp-card__img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}
.comp-card__img--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: #e8f5e9;
}
.comp-card__num {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #2e7d32;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    flex-shrink: 0;
}
.comp-card__title {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: .5rem;
    font-size: 1.05rem;
}
.comp-card__text {
    font-size: .9rem;
    color: #666;
    line-height: 1.6;
}

/* ===== EXPERT BLOCK ===== */
.expert-block {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 800px;
    margin: 2rem auto;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.expert-block__photo {
    flex-shrink: 0;
}
.expert-block__photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2e7d32;
}
.expert-block__content {
    flex: 1;
}
.expert-block__name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1a1a2e;
    font-size: 1.1rem;
    margin-bottom: .3rem;
}
.expert-block__title {
    font-size: .85rem;
    color: #666;
    margin-bottom: 1rem;
}
.expert-block__quote {
    font-size: 1rem;
    color: #333;
    font-style: italic;
    line-height: 1.8;
    border-left: 4px solid #2e7d32;
    padding-left: 1rem;
    margin: 0;
}

/* ===== MID CTA SECTION ===== */
.section--mid-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #2e7d32 100%);
    padding: 3rem 0;
}
.mid-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.mid-cta__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}
.mid-cta__text {
    font-size: 1.05rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.mid-cta__note {
    display: block;
    margin-top: 1rem;
    font-size: .8rem;
    color: rgba(255,255,255,.6);
}

/* ===== INSTRUCTION SECTION (new classes) ===== */
.section--instruction {
    background: #fff;
}
.instruction-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.instr-step {
    text-align: center;
    background: #f9f9f9;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border-top: 4px solid #2e7d32;
}
.instr-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #2e7d32;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.3rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}
.instr-step__title {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: .5rem;
    font-size: 1.05rem;
}
.instr-step__text {
    font-size: .9rem;
    color: #666;
    line-height: 1.6;
}
.instruction-tips {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    font-size: .9rem;
    color: #333;
    line-height: 1.6;
}
.instruction-tips strong {
    color: #2e7d32;
}
.instruction-extra {
    margin-top: 2rem;
}
.accordion-item {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.accordion-item summary {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-weight: 700;
    color: #1a1a2e;
    font-size: .95rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: #2e7d32;
    font-weight: 700;
    transition: transform .3s;
}
.accordion-item[open] summary::after {
    content: '−';
}
.accordion-item p {
    padding: 0 1.5rem 1.2rem;
    font-size: .9rem;
    color: #666;
    line-height: 1.6;
}

/* ===== COMPARE SECTION ===== */
.section--compare {
    background: #f9f9f9;
}
.compare-table-wrap {
    overflow-x: auto;
    margin-top: 2rem;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.compare-table th {
    background: #1a1a2e;
    color: #fff;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: .95rem;
}
.compare-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    font-size: .9rem;
    color: #555;
}
.compare-table tr:hover {
    background: #f5f5f5;
}
.compare-table tr:last-child td {
    border-bottom: none;
}
.compare-table__highlight {
    background: #e8f5e9 !important;
    color: #2e7d32 !important;
    font-weight: 600;
}

/* ===== CERTIFICATES SECTION (additional) ===== */
.cert-stat__num {
    font-size: 2.2rem;
    font-weight: 900;
    color: #2e7d32;
}
.cert-stat__pct {
    font-size: 1.5rem;
    font-weight: 900;
    color: #2e7d32;
}

/* ===== REVIEWS SECTION (additional) ===== */
.review-card__photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.review-card__stars {
    color: #ff9800;
    font-size: 1.1rem;
    margin-bottom: .5rem;
}
.review-card__name {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: .5rem;
    font-size: .95rem;
}

/* ===== FAQ SECTION (details-based) ===== */
.faq-list {
    max-width: 800px;
    margin: 2rem auto;
}
.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-item__q {
    padding: 1.5rem;
    background: #f9f9f9;
    cursor: pointer;
    font-weight: 700;
    color: #1a1a2e;
    font-size: .95rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
    content: '+';
    font-size: 1.5rem;
    color: #2e7d32;
    font-weight: 700;
    transition: transform .3s;
}
.faq-item[open] .faq-item__q::after {
    content: '−';
}
.faq-item__q:hover {
    background: #f0f0f0;
}
.faq-item__a {
    padding: 1.5rem;
    font-size: .9rem;
    color: #666;
    line-height: 1.6;
}

/* ===== DELIVERY SECTION (additional) ===== */
.delivery-step__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #2e7d32;
    font-weight: 700;
}
.delivery-guarantee {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
    font-size: .95rem;
    color: #333;
    line-height: 1.6;
}
.delivery-guarantee strong {
    color: #2e7d32;
}

/* ===== FINAL CTA SECTION ===== */
.section--final-cta {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 50%, #fff 100%);
    padding: 3rem 0;
}
.final-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.final-cta__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
}
.final-cta__text {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.final-cta__offer {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.final-cta__img {
    width: 180px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.final-cta__details {
    text-align: center;
}

.page-product-spotlight {
    padding: 12px 0 28px;
}

.page-product-spotlight__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(240px, 360px);
    align-items: center;
    gap: 28px;
    padding: 30px 34px;
    background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(248,252,249,0.98));
    border: 1px solid rgba(46, 125, 50, 0.12);
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(28, 53, 44, 0.08);
}

.page-product-spotlight__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.page-product-spotlight__title {
    margin: 0 0 12px;
    color: #18384a;
    font-size: clamp(1.7rem, 2.4vw, 2.35rem);
    line-height: 1.1;
}

.page-product-spotlight__text {
    margin: 0 0 18px;
    color: #4c6170;
    font-size: 1.02rem;
    line-height: 1.7;
}

.page-product-spotlight__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
}

.page-product-spotlight__price-old {
    color: #8a98a2;
    font-size: 1.05rem;
    text-decoration: line-through;
}

.page-product-spotlight__price-new {
    color: #0b7a61;
    font-size: clamp(1.6rem, 2.4vw, 2.3rem);
    font-weight: 900;
}

.page-product-spotlight__media {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 280px;
    padding: 10px;
}

.page-product-spotlight__img {
    display: block;
    max-width: 100%;
    max-height: 340px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.16));
}

/* ===== STICKY CTA (Mobile) ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
    padding: 10px 20px;
    z-index: 999;
    display: none;
}
.sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
    gap: 12px;
}
.sticky-cta__price {
    font-size: .85rem;
    color: #333;
}
.sticky-cta__price s {
    color: #999;
}
.sticky-cta__price strong {
    color: #d32f2f;
    font-size: 1rem;
}
.sticky-cta__btn {
    white-space: nowrap;
    padding: 10px 20px !important;
    font-size: .85rem !important;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.modal.active {
    display: flex;
}
.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.6);
}
.modal__content {
    position: relative;
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 16px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    z-index: 1;
}
.modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    transition: color .2s;
}
.modal__close:hover {
    color: #333;
}
.modal__icon {
    width: 70px;
    height: 70px;
    background: #2e7d32;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}
.modal__content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: #1a1a2e;
    margin-bottom: .5rem;
}
.modal__content p {
    font-size: .95rem;
    color: #666;
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nutra-about__wrapper {
        gap: 3rem;
    }
    .nutra-about__title {
        font-size: 1.8rem;
    }
    .mechanism-grid {
        grid-template-columns: 1fr;
    }
    .mechanism-step::after {
        display: none;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .instruction-steps {
        grid-template-columns: 1fr;
    }
    .delivery-steps {
        grid-template-columns: 1fr;
    }
    .delivery-step::after {
        display: none;
    }
    .delivery-step__arrow {
        display: none;
    }
    .cert-grid {
        grid-template-columns: 1fr;
    }
    .expert-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .expert-block__quote {
        border-left: none;
        border-top: 4px solid #2e7d32;
        padding-left: 0;
        padding-top: 1rem;
    }
    .final-cta__offer {
        flex-direction: column;
    }
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: #2c6975;
    padding: 2.5rem 0;
}
.stats-bar__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.stats-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
}
.stats-bar__num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.stats-bar__label {
    font-size: .95rem;
    color: rgba(255,255,255,.85);
    font-weight: 400;
}

@media (max-width: 768px) {
    .section {
        padding: 2rem 0;
    }
    .section__title {
        font-size: 1.5rem;
    }
    .hero__inner {
        grid-template-columns: 1fr;
    }
    .hero__title {
        font-size: 1.6rem;
    }
    .stats-bar__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
    .stats-bar__num {
        font-size: 1.8rem;
    }
    .header__inner {
        padding: 23px 20px;
    }
    .header__cta {
        padding: 7px 14px;
        font-size: .75rem;
    }
    .header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,.1);
        z-index: 100;
    }
    .header__nav.active {
        display: flex;
    }
    .header__nav-link {
        padding: 10px 16px;
        font-size: 1rem;
        border-bottom: 1px solid #eee;
    }
    .header__nav-link:last-child {
        border-bottom: none;
    }
    .header__burger {
        display: flex;
    }
    .hero__badges-inner {
        gap: 1.5rem;
    }
    .symptoms-grid {
        grid-template-columns: 1fr;
    }
    .composition-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .danger-grid {
        grid-template-columns: 1fr;
    }
    .footer__top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer__mid {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .sticky-cta {
        display: block;
    }
    .mid-cta__title {
        font-size: 1.4rem;
    }
    .section--nutra-about {
        padding: 3rem 0;
    }
    .nutra-about__wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .nutra-about__title {
        font-size: 1.6rem;
        text-align: center;
    }
    .nutra-about__subtitle {
        text-align: center;
    }
    .nutra-about__description p {
        text-align: center;
    }
    .nutra-benefit {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-left: none;
        border-top: 5px solid #2e7d32;
    }
    .nutra-benefit:hover {
        transform: translateY(-4px);
    }
    .nutra-about__product-card {
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero__title {
        font-size: 1.3rem;
    }
    .section__title {
        font-size: 1.3rem;
    }
    .nutra-about__title {
        font-size: 1.3rem;
    }
    .order-form--inline {
        flex-direction: column;
    }
    .order-form__field {
        min-width: auto;
    }
}

/* ===== TRUST REDESIGN OVERRIDES ===== */
:root {
    --page-bg: #f3f6f3;
    --surface: #ffffff;
    --surface-soft: #f7faf8;
    --brand: #1f5a4b;
    --brand-strong: #173742;
    --brand-soft: #e3efe9;
    --accent: #c49142;
    --accent-soft: #f6ecda;
    --text-main: #20313a;
    --text-muted: #5f6f77;
    --line: #d7e2dc;
    --danger-soft: #f8e9e6;
    --shadow-sm: 0 12px 30px rgba(24, 51, 59, 0.08);
    --shadow-md: 0 20px 50px rgba(24, 51, 59, 0.12);
    --shadow-lg: 0 28px 60px rgba(24, 51, 59, 0.16);
}

html {
    background: var(--page-bg);
}

body {
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, rgba(196, 145, 66, 0.08), transparent 28%),
        linear-gradient(180deg, #f9fbf9 0%, #f3f6f3 48%, #eff4f0 100%);
}

a {
    color: var(--brand);
}

a:hover {
    color: var(--brand-strong);
}

.container {
    max-width: 1240px;
}

.section {
    padding: 5.5rem 0;
}

.section__title {
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--text-main);
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
}

.section__subtitle {
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.section__lead {
    color: var(--text-muted);
    font-size: 1.08rem;
    max-width: 860px;
}

.section__warning,
.section__safety {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.section__warning {
    color: #8b3d3d;
    background: #fff8f7;
}

.section__safety {
    color: var(--text-muted);
    background: var(--surface);
}

.btn {
    border-radius: 16px;
}

.btn--accent {
    background: linear-gradient(135deg, #234b60, var(--brand));
    box-shadow: 0 14px 30px rgba(35, 75, 96, 0.18);
    padding: 12px 24px;
}

.btn--accent:hover {
    background: linear-gradient(135deg, #1b3b4c, #184639);
    box-shadow: 0 18px 36px rgba(27, 59, 76, 0.24);
}

.btn--cta,
.order-form__submit {
    background: linear-gradient(135deg, var(--brand-strong), var(--brand));
    box-shadow: 0 18px 34px rgba(31, 90, 75, 0.22);
    letter-spacing: 0.02em;
    text-transform: none;
}

.btn--cta:hover,
.order-form__submit:hover {
    background: linear-gradient(135deg, #102d36, #19483b);
    box-shadow: 0 22px 40px rgba(23, 55, 66, 0.28);
}

.top-bar {
    background: linear-gradient(90deg, var(--brand-strong) 0%, var(--brand) 100%);
    color: rgba(255, 255, 255, 0.82);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar__inner {
    gap: 12px 20px;
}

.top-bar__badge {
    background: var(--accent-soft);
    color: #775426;
    border: 1px solid rgba(196, 145, 66, 0.3);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.top-bar__info {
    gap: 12px;
}

.top-bar__info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: normal;
}

.top-bar__info strong {
    color: #fff;
}

.header {
    background: rgba(251, 252, 251, 0.92);
    border-bottom: 1px solid rgba(215, 226, 220, 0.85);
    box-shadow: 0 14px 32px rgba(24, 51, 59, 0.08);
    backdrop-filter: blur(18px);
}

.header__inner {
    padding: 16px 20px;
    gap: 14px;
}

.header__logo-name {
    color: var(--brand);
    font-size: 1.78rem;
    letter-spacing: -0.05em;
}

.header__logo-desc {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.header__nav {
    gap: 10px;
    align-items: center;
}

.header__nav-link {
    color: var(--text-muted);
    padding: 10px 14px;
    border: none;
    border-radius: 999px;
    font-weight: 600;
}

.header__nav-link:hover,
.header__nav-link--active {
    color: var(--brand) !important;
    background: rgba(31, 90, 75, 0.08);
    border-bottom-color: transparent !important;
}

.header__cta {
    padding-inline: 20px;
}

.header__burger span {
    background: var(--brand-strong);
}

.header__burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at right top, rgba(196, 145, 66, 0.14), transparent 24%),
        linear-gradient(180deg, #f7faf8 0%, #edf5f1 58%, #f6f2ea 100%);
    padding: 4.6rem 0 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.15) 48%, transparent 62%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    gap: 3rem;
    align-items: center;
}

.hero__content {
    max-width: 590px;
}

.hero__title {
    font-size: clamp(2.45rem, 4vw, 4rem);
    color: #19313b;
    letter-spacing: -0.05em;
    margin-bottom: 1.25rem;
}

.hero__subtitle {
    color: var(--text-muted);
    font-size: 1.08rem;
    max-width: 92%;
    margin-bottom: 1.8rem;
}

.hero__trust-badge {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(31, 90, 75, 0.14);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    color: var(--brand);
    padding: 10px 18px;
}

.hero__benefits {
    gap: 12px;
}

.hero__benefits li {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    color: var(--text-main);
    padding: 15px 18px 15px 50px;
}

.hero__benefits li::before {
    left: 16px;
    top: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    background: var(--brand-soft);
    border-radius: 50%;
    color: var(--brand);
}

.hero__right {
    position: relative;
}

.hero__product-img {
    max-width: 360px;
    margin-bottom: -18px;
    filter: drop-shadow(0 28px 46px rgba(24, 51, 59, 0.18));
}

.hero__offer-box {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(31, 90, 75, 0.12);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    max-width: 440px;
    padding: 2rem;
}

.hero__timer-wrap {
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
}

.hero__timer-label {
    color: var(--text-muted);
}

.timer__num {
    background: linear-gradient(180deg, #244d61 0%, var(--brand-strong) 100%);
    border-radius: 12px;
    min-width: 56px;
    padding: 8px 12px;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.14);
}

.timer__label {
    color: var(--text-muted);
}

.timer__sep {
    color: var(--brand-strong);
}

.hero__stock {
    background: var(--accent-soft);
    border: 1px solid rgba(196, 145, 66, 0.28);
    border-radius: 14px;
    color: #775426;
    padding: 11px 14px;
}

.hero__price-old {
    color: #9aa8ae;
}

.hero__price-new {
    color: var(--brand);
    text-shadow: 0 10px 20px rgba(31, 90, 75, 0.14);
}

.hero__price-note,
.hero__consent {
    color: #74828a;
}

.hero__consent a {
    font-weight: 600;
}

.hero__badges {
    background: transparent;
    border-top: none;
    padding: 2.2rem 0 0;
}

.hero__badges-inner {
    gap: 1rem;
}

.hero__badge-item {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    padding: 14px 18px;
}

.hero__badge-item img {
    width: 42px;
    height: 42px;
}

.order-form__input,
.order-form__select {
    min-height: 56px;
    background: #fcfdfc;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--text-main);
}

.order-form__input::placeholder,
.order-form__select::placeholder {
    color: #93a0a6;
}

.order-form__input:focus,
.order-form__select:focus {
    border-color: rgba(31, 90, 75, 0.5);
    box-shadow: 0 0 0 4px rgba(31, 90, 75, 0.08);
}

.order-form__input.error,
.order-form__select.error {
    background: #fdeaea;
    border-color: #d85b5b;
    box-shadow: 0 0 0 4px rgba(216, 91, 91, 0.14);
}

.order-form__input.error::placeholder,
.order-form__select.error::placeholder {
    color: #a45454;
}

.section--problem,
.section--composition,
.section--reviews,
.section--delivery,
.section--comparison,
.section--nutra-about {
    background: transparent;
}

.section--expert {
    background: linear-gradient(180deg, #ebf4ef 0%, #f7faf8 100%);
}

.stats-bar {
    background: linear-gradient(135deg, var(--brand-strong) 0%, #204b57 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-bar__label {
    max-width: 150px;
}

.symptom-card,
.danger-card,
.step-card,
.comp-card,
.review-card,
.faq-item,
.cert-stat,
.nutra-benefit,
.instr-step,
.delivery-step,
.expert-block,
.modal__content {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.symptom-card:hover,
.danger-card:hover,
.step-card:hover,
.comp-card:hover,
.review-card:hover,
.nutra-benefit:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.symptom-card,
.danger-card {
    border-left: none;
    padding: 1.7rem;
}

.symptom-card__icon,
.danger-card__icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.symptom-card__icon {
    background: var(--accent-soft);
}

.danger-card__icon {
    background: var(--danger-soft);
}

.step-card,
.instr-step {
    background: linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
    border-top: none;
}

.step-card__num,
.comp-card__num,
.instr-step__num {
    background: linear-gradient(135deg, #234b60 0%, var(--brand) 100%);
    box-shadow: 0 14px 28px rgba(35, 75, 96, 0.18);
}

.comp-card__img {
    width: 120px;
    height: 120px;
    border: 3px solid rgba(31, 90, 75, 0.08);
}

.comp-card__img--icon {
    background: var(--brand-soft);
}

.expert-block {
    border-radius: 30px;
    gap: 2.2rem;
    padding: 2.3rem;
}

.expert-block__photo img {
    border: 4px solid rgba(31, 90, 75, 0.12);
    box-shadow: 0 20px 35px rgba(24, 51, 59, 0.14);
}

.expert-block__quote {
    color: var(--text-muted);
    font-style: normal;
    border-left-color: var(--accent);
}

.mid-cta,
.final-cta {
    background: linear-gradient(135deg, var(--brand-strong) 0%, var(--brand) 62%, #2f7767 100%);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    padding: 3rem;
}

.section--mid-cta,
.section--final-cta {
    background: transparent;
}

.mid-cta__title,
.final-cta__title {
    letter-spacing: -0.03em;
}

.mid-cta__text,
.final-cta__text,
.mid-cta__note {
    color: rgba(255, 255, 255, 0.82);
}

.final-cta__offer {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 1.5rem;
}

.final-cta__img {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 1rem;
}

.final-cta {
    background: linear-gradient(180deg, #eef6f2 0%, #e4f0ea 52%, #f6f8f7 100%);
    border: 1px solid rgba(31, 90, 75, 0.12);
}

.final-cta__title {
    color: var(--text-main);
}

.final-cta__text {
    color: var(--text-muted);
}

.final-cta__offer {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(31, 90, 75, 0.1);
}

.final-cta__img {
    background: rgba(255, 255, 255, 0.88);
}

.comparison-table {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.comparison-table th {
    background: linear-gradient(135deg, #234b60 0%, var(--brand) 100%);
}

.comparison-table td {
    background: rgba(255, 255, 255, 0.94);
    color: var(--text-main);
    padding: 1.15rem 1rem;
}

.comparison-table tr:nth-child(even) td {
    background: #f7faf8;
}

.cert-stat {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8f5 100%);
}

.cert-warning {
    background: #fffaf4;
    border: 1px solid rgba(196, 145, 66, 0.22);
    border-radius: 20px;
    color: #8b622c;
}

.review-card__rating,
.review-card__stars {
    color: var(--accent);
}

.faq-item {
    border-radius: 20px;
    margin-bottom: 1rem;
}

.faq-item__header,
.faq-item__q {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.faq-item__header:hover,
.faq-item__q:hover {
    background: linear-gradient(180deg, #f8fbf9 0%, #f1f7f3 100%);
}

.faq-item__a {
    color: var(--text-muted);
}

.delivery-step {
    padding: 1.7rem;
}

.delivery-step__icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 1rem;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-soft);
}

.delivery-step__arrow {
    color: var(--accent);
}

/* ===== RELATED PRODUCTS ===== */
.section--related-products {
    padding: 1.25rem 0 2.5rem;
}

.related-products {
    border-top: 1px solid #e3ebe6;
    padding-top: 1.35rem;
}

.related-products__title {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #5e6e74;
    text-align: left;
}

.related-products__dropdown {
    border: 1px solid #d8e3db;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    overflow: hidden;
}

.related-products__summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    cursor: pointer;
    color: #254b58;
    font-size: 0.95rem;
    font-weight: 600;
}

.related-products__summary::-webkit-details-marker {
    display: none;
}

.related-products__summary-note {
    color: #7b8c92;
    font-weight: 400;
}

.related-products__chevron {
    width: 11px;
    height: 11px;
    flex: 0 0 auto;
    border-right: 2px solid #6f7f84;
    border-bottom: 2px solid #6f7f84;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
}

.related-products__dropdown[open] .related-products__chevron {
    transform: rotate(-135deg) translateY(-1px);
}

.related-products__panel {
    border-top: 1px solid rgba(216, 227, 219, 0.8);
    padding: 0.95rem 1rem 1rem;
}

.related-products__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem 2rem;
}

.related-products__item {
    font-size: 0.92rem;
    line-height: 1.55;
    color: #6f7f84;
}

.related-products__link {
    color: #254b58;
    font-weight: 600;
}

.related-products__link:hover {
    color: #173742;
}

.related-products__text {
    color: #75858b;
}
/* ===== /RELATED PRODUCTS ===== */

.sticky-cta {
    background: rgba(23, 55, 66, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.sticky-cta__btn {
    background: linear-gradient(135deg, #c48a33 0%, #dfab58 100%);
    color: var(--brand-strong);
    box-shadow: 0 14px 26px rgba(196, 138, 51, 0.28);
}

.footer {
    background: linear-gradient(180deg, var(--brand-strong) 0%, #10272f 100%);
    padding: 3.5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__top {
    gap: 2rem;
}

.footer__logo {
    font-size: 1.8rem;
}

.footer__brand-desc,
.footer__col-link,
.footer__copy {
    color: rgba(255, 255, 255, 0.72);
}

.footer__legal-box {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 1rem 1.1rem;
}

.footer__mid a {
    color: rgba(255, 255, 255, 0.72);
}

.footer__callback-btn {
    background: linear-gradient(135deg, #c48a33 0%, #dfab58 100%);
    border: none;
    border-radius: 14px;
    color: var(--brand-strong);
    font-weight: 700;
    padding: 0.75rem 1.15rem;
}

.footer__callback-btn:hover {
    color: #0f242c;
}

.footer__bottom {
    max-width: 960px;
    margin: 0 auto;
}

.footer__disclaimer {
    color: #fff4dd;
}

.modal__overlay {
    background: rgba(16, 39, 47, 0.6);
}

.modal__content {
    max-width: 500px;
}

@media (max-width: 1024px) {
    .hero__inner {
        gap: 2.4rem;
    }

    .hero__title {
        font-size: clamp(2.1rem, 4vw, 3.3rem);
    }

    .mid-cta,
    .final-cta {
        padding: 2.4rem;
    }

    .page-product-spotlight__inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 22px;
        text-align: center;
    }

    .page-product-spotlight__price {
        justify-content: center;
    }
}

@media (min-width: 1025px) {
    .hero__inner {
        grid-template-columns: 1.12fr 0.88fr;
    }

    .hero__content {
        max-width: 760px;
    }

    .hero__title {
        font-size: clamp(2.35rem, 2.9vw, 3rem);
        line-height: 1.06;
        max-width: 92%;
        text-wrap: balance;
    }
}

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

    .top-bar__inner {
        justify-content: center;
    }

    .top-bar__badge {
        text-align: center;
    }

    .section {
        padding: 4rem 0;
    }

    .header__inner {
        padding: 14px 18px;
    }

    .header__nav {
        top: calc(100% + 10px);
        left: 14px;
        right: 14px;
        background: rgba(251, 252, 251, 0.98);
        border: 1px solid var(--line);
        border-radius: 22px;
        box-shadow: var(--shadow-md);
        padding: 0.7rem;
    }

    .header__nav-link {
        border-radius: 14px;
    }

    .header__cta {
        display: none;
    }

    .hero {
        padding-top: 3.2rem;
    }

    .hero__content,
    .hero__subtitle {
        max-width: 100%;
    }

    .hero__title {
        font-size: 2rem;
    }

    .page-product-spotlight {
        padding: 8px 0 22px;
    }

    .page-product-spotlight__img {
        max-height: 280px;
    }

    .hero__benefits li {
        padding-right: 14px;
    }

    .hero__offer-box {
        padding: 1.4rem;
        border-radius: 24px;
    }

    .hero__product-img {
        max-width: 290px;
        margin-bottom: 0.8rem;
    }

    .related-products__grid {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .hero__badges-inner {
        gap: 0.85rem;
    }

    .hero__badge-item {
        width: 100%;
        justify-content: center;
    }

    .stats-bar__label {
        max-width: none;
    }

    .step-card,
    .instr-step,
    .mid-cta,
    .final-cta,
    .expert-block {
        padding: 1.6rem;
    }

    .footer {
        padding-top: 3rem;
    }
}

@media (max-width: 480px) {
    .top-bar__info {
        justify-content: center;
    }

    .section__title {
        font-size: 1.7rem;
    }

    .hero__title {
        font-size: 1.72rem;
    }

    .hero__benefits li {
        font-size: 0.92rem;
    }

    .timer__num {
        min-width: 46px;
        font-size: 1.3rem;
    }
}
