/* Unique redesign v2 — images are reused as-is */
:root {
    --ink: #17252f;
    --muted: #667985;
    --green: #0f7c6e;
    --green-2: #16a085;
    --mint: #e8fbf5;
    --cream: #fff7e8;
    --accent: #ff7a3d;
    --accent-2: #ffd166;
    --line: rgba(23, 37, 47, 0.11);
    --surface: #ffffff;
    --shadow: 0 24px 60px rgba(25, 44, 58, 0.13);
    --soft-shadow: 0 14px 35px rgba(25, 44, 58, 0.10);
}

html {
    scroll-behavior: smooth;
}

body.redesign-v2 {
    color: var(--ink);
    background:
        radial-gradient(circle at 15% 0%, rgba(255, 209, 102, 0.18), transparent 28%),
        linear-gradient(180deg, #f7fbf8 0%, #fffaf2 45%, #f5fbff 100%);
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.62;
}

.redesign-v2 section {
    padding: 78px 0;
    position: relative;
    overflow: hidden;
}

.redesign-v2 .wrap {
    width: min(1180px, calc(100% - 40px));
    max-width: 1180px;
    padding: 0;
}

.redesign-v2 h1,
.redesign-v2 h2,
.redesign-v2 h3,
.redesign-v2 h4 {
    text-transform: none;
    letter-spacing: -0.035em;
    color: var(--ink);
}

.redesign-v2 p {
    color: var(--muted);
}

.redesign-v2 a {
    text-decoration: none;
}

.redesign-v2 img {
    user-select: none;
}

.redesign-v2 .shadow {
    border: 1px solid rgba(23, 37, 47, 0.08);
    box-shadow: var(--soft-shadow);
}

/* top line */
.topline {
    padding: 14px 0 !important;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(23, 37, 47, 0.08);
    box-shadow: 0 12px 35px rgba(20, 40, 55, 0.08);
    backdrop-filter: blur(18px);
    position: sticky !important;
    top: 0;
    z-index: 30;
}

.toplinecont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.topline__logo {
    display: block;
    width: 162px;
    flex: 0 0 auto;
    padding: 8px 12px;
}

.topline__txt {
    color: var(--ink);
    text-align: center;
    flex: 1 1 auto;
}

.topline__txt__one {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--ink);
}

.topline__txt__two {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--cream);
    border: 1px solid rgba(255, 122, 61, 0.18);
}

.topline__txt__two span {
    color: #8b5e21;
    font-size: 13px;
    font-weight: 700;
}

.topline__txt__two img {
    width: 116px;
}

.topbtn,
.mainform-body__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 0 30px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.015em;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent) 0%, #ff9a3c 48%, var(--accent-2) 100%);
    box-shadow: 0 16px 34px rgba(255, 122, 61, 0.35), inset 0 -3px 0 rgba(136, 74, 0, 0.16);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    appearance: none;
}

.topbtn {
    flex: 0 0 auto;
    min-width: 190px;
}

.topbtn:hover,
.mainform-body__btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.05);
    box-shadow: 0 20px 42px rgba(255, 122, 61, 0.42), inset 0 -3px 0 rgba(136, 74, 0, 0.14);
}

/* hero */
.block2 {
    padding: 88px 0 96px !important;
    background:
        linear-gradient(90deg, rgba(247, 251, 248, 0.98) 0%, rgba(247, 251, 248, 0.90) 42%, rgba(255, 248, 232, 0.70) 100%),
        url(../images/bg1.jpg) no-repeat center top / cover;
}

.block2::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    right: -180px;
    top: 30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 160, 133, 0.22), transparent 68%);
}

.headergrid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
    grid-template-areas:
        "title price"
        "chips price"
        "bullets price"
        "cta price";
    gap: 18px 46px;
    align-items: center;
}

.headertitle {
    grid-area: title;
    max-width: 680px;
    font-size: clamp(50px, 4.15vw, 64px);
    line-height: 1.01;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.headertitle::after {
    content: "";
    display: block;
    width: 128px;
    height: 7px;
    margin-top: 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--green-2));
}

.herochips {
    grid-area: chips;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 690px;
}

.herochips span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #1d6f63;
    background: rgba(232, 251, 245, 0.92);
    border: 1px solid rgba(15, 124, 110, 0.16);
    font-size: 13px;
    font-weight: 800;
}

.headerbullits {
    grid-area: bullets;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 700px;
}

.headerbullits__item {
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 13px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(23, 37, 47, 0.08);
    box-shadow: 0 10px 28px rgba(25, 44, 58, 0.07);
}

.headerbullits__item img,
.manpay2__list__item img {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    filter: drop-shadow(0 5px 7px rgba(255, 122, 61, .22));
}

.headerbullits__item p {
    font-size: 13px;
    line-height: 1.28;
    font-weight: 700;
    color: #253743;
}

.headertovar {
    grid-area: price;
    justify-self: center;
    align-self: start;
    width: 162px;
    margin-top: 24px;
    z-index: 4;
    filter: drop-shadow(0 26px 26px rgba(15, 84, 88, 0.23));
    transform: rotate(-4deg) translateY(0);
    pointer-events: none;
}

.headergrid .mainform-body__btn {
    grid-area: cta;
    width: min(330px, 100%);
    min-height: 58px;
    height: 58px;
    font-size: 16px;
}

.headerprice {
    grid-area: price;
    position: relative;
    align-self: center;
    justify-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    min-height: 520px;
    max-width: 430px;
    padding: 330px 28px 26px;
    border-radius: 34px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(255, 255, 255, 0.80);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.headerprice::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 34px;
    z-index: 0;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 48%, rgba(22, 160, 133, .18), transparent 66%),
        linear-gradient(180deg, rgba(232, 251, 245, .92), rgba(255, 247, 232, .62));
    transform: translateX(-50%);
}

.headerprice > * {
    position: relative;
    z-index: 2;
}


.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.price__old,
.price__new {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
}

.price__old {
    color: #8b9aa4;
}

.price__old__top,
.price__new__top {
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.price__old__bott {
    display: inline-block;
    color: #7c8b95;
    font-size: 27px;
    line-height: 1;
    font-weight: 800;
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    text-decoration-color: var(--accent);
}

.price__arrow {
    width: 42px;
    flex: 0 0 42px;
}

.price__new {
    color: var(--green);
}

.price__new__bott {
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.055em;
}

.headership {
    display: grid;
    gap: 10px;
}

.headership__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 16px;
    background: #f7fbf8;
    border: 1px solid rgba(15, 124, 110, 0.10);
}

.headership__icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 14px;
    background: var(--mint);
}

.headership__icon img {
    width: 29px;
}

.headership__p {
    color: #253743;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
}

.microcopy {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
    text-align: center;
}

/* pain + editorial block */
.block3 {
    background:
        radial-gradient(circle at 10% 15%, rgba(22, 160, 133, 0.12), transparent 30%),
        #ffffff;
}

.pain {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 32px;
}

.pain__item {
    position: relative;
    overflow: hidden;
    min-height: 248px;
    border-radius: 30px;
    background: #000;
    transform: translateY(0);
    transition: transform .2s ease, box-shadow .2s ease;
}

.pain__item:nth-child(even) {
    transform: translateY(22px);
}

.pain__item:hover {
    transform: translateY(-4px);
}

.pain__item:nth-child(even):hover {
    transform: translateY(14px);
}

.pain__img {
    width: 100%;
    height: 100%;
    min-height: 248px;
    object-fit: cover;
    opacity: .84;
    transform: scale(1.04);
}

.pain__txt {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 12px 14px;
    border-radius: 18px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    background: rgba(23, 37, 47, .78);
    backdrop-filter: blur(8px);
}

.manpain {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    overflow: hidden;
    margin-top: 58px;
    border-radius: 42px;
    background: #ffffff;
}

.manpain__img {
    min-height: 100%;
    background: var(--mint);
}

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

.manpain__right {
    padding: clamp(34px, 5vw, 58px);
}

.manpain__right .title,
.manpay2__left .title,
.block6 h2.title,
.block7 h2.title,
.block9 h2,
.botttlt,
.block-steps h2.title {
    margin-bottom: 20px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.05;
    font-weight: 900;
}

.manpain__right p {
    margin-bottom: 16px;
    font-size: 17px;
}

.mainform-body__btn.bbt {
    width: auto;
    min-width: 295px;
    margin-top: 14px;
    flex-direction: column;
    gap: 0;
    line-height: 1.08;
}

.mainform-body__btn.bbt span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    opacity: .86;
}

/* promo */
.block4 {
    position: relative;
    padding: 58px 0 !important;
    overflow: hidden;
    background: linear-gradient(135deg, #14343d 0%, #0f7c6e 60%, #16a085 100%);
}

.block4::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .15), transparent 20%),
        radial-gradient(circle at 82% 72%, rgba(255, 209, 102, .22), transparent 28%);
}

.promo {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr) 230px;
    align-items: center;
    gap: 30px;
    min-height: 0;
}

.promo__leftimg {
    position: relative;
    z-index: 3;
    justify-self: center;
    width: min(245px, 100%);
    filter: drop-shadow(0 28px 30px rgba(0, 0, 0, .25));
    transform: rotate(-6deg);
}

.promo__cont {
    position: relative;
    z-index: 3;
    padding: 34px 38px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .18);
}

.promo__cont__tlt {
    margin-bottom: 16px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.28;
    font-weight: 800;
}

.promo__cont__price {
    color: var(--green);
    font-size: 39px;
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.promo__cont__price span {
    display: inline-block;
    margin-left: 8px;
    padding: 5px 12px;
    border-radius: 999px;
    color: #7a4300;
    background: var(--accent-2);
    font-size: 25px;
    letter-spacing: -0.02em;
}

.promo__cont__price p {
    margin: 14px 0 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: 0;
}

.promo_rightimg {
    position: absolute;
    right: -35px;
    bottom: -95px;
    z-index: 2;
    width: auto;
    max-width: none;
    height: 115%;
    filter: drop-shadow(0 30px 34px rgba(0, 0, 0, .24));
    transform: none;
}

/* why */
.block5 {
    background:
        linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
}

.manpay2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    overflow: hidden;
    border-radius: 42px;
    background: #ffffff;
}

.manpay2__left {
    padding: clamp(36px, 5vw, 62px);
}

.manpay2__left > p {
    margin-bottom: 15px;
    font-size: 17px;
}

.manpay2__list {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.manpay2__list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
    background: #f8fbf8;
    border: 1px solid rgba(15, 124, 110, .10);
}

.manpay2__list__item p {
    color: #253743;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
}

.manpay2__right {
    min-height: 620px;
    background:
        linear-gradient(180deg, rgba(15, 124, 110, .08), rgba(255, 122, 61, .10)),
        url(../images/manpain2.jpg) center top / cover no-repeat;
}

/* features */
.block6 {
    background:
        radial-gradient(circle at 75% 12%, rgba(255, 209, 102, .20), transparent 25%),
        linear-gradient(135deg, #112a33 0%, #173e48 100%);
}

.block6 h2.title {
    color: #ffffff;
    text-align: center;
}

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

.feat__item {
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

.feat__img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / .72;
    object-fit: cover;
    background: var(--mint);
}

.feat__item__cont {
    padding: 24px;
}

.feat__tlt {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.15;
    font-weight: 900;
}

.feat__txt {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

/* order steps */
.block-steps {
    background: #ffffff;
}

.block-steps h2.title {
    text-align: center;
}

.stepsgrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.stepcard {
    position: relative;
    min-height: 230px;
    padding: 28px 22px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 251, 248, .96));
}

.stepcard::after {
    content: "";
    position: absolute;
    top: 32px;
    right: -18px;
    width: 36px;
    height: 2px;
    background: rgba(15, 124, 110, .22);
}

.stepcard:last-child::after {
    display: none;
}

.stepcard__num {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    border-radius: 18px;
    color: #ffffff;
    background: var(--green);
    font-weight: 900;
    box-shadow: 0 12px 25px rgba(15, 124, 110, .22);
}

.stepcard__title {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
}

.stepcard__text {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

/* reviews */
.block7 {
    background:
        radial-gradient(circle at 25% 0%, rgba(22, 160, 133, .10), transparent 28%),
        linear-gradient(180deg, #f7fbf8 0%, #fffaf2 100%);
}

.block7 h2 {
    text-align: center;
}

.subtitle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: -4px auto 30px;
}

.subtitle p {
    color: var(--muted);
    font-size: 17px;
    font-weight: 700;
}

.subtitle b {
    color: var(--green);
}

.subtitle img {
    width: 120px;
}

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

.comments__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 100%;
    padding: 24px;
    border-radius: 30px;
    background: #ffffff;
}

.comments__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.comments__head__left {
    display: flex;
    align-items: center;
    gap: 13px;
}

.comments__head__ava {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(23, 37, 47, .14);
}

.comments__head__name {
    color: var(--ink);
    font-size: 17px;
    font-weight: 900;
}

.comments__head__stars {
    width: 100px;
    margin-top: 2px;
}

.comments__head__right img {
    width: 34px;
    opacity: .75;
}

.comments__txt {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.62;
}

/* bottom order */
.block8 {
    padding: 88px 0 !important;
    background:
        linear-gradient(135deg, rgba(17, 42, 51, .92), rgba(15, 124, 110, .82)),
        url(../images/foot.jpg) center / cover no-repeat;
}

.bott {
    display: grid;
    grid-template-columns: minmax(250px, 370px) minmax(0, 1fr);
    grid-template-areas:
        "img price"
        "img title"
        "img operator"
        "safe form";
    gap: 22px 46px;
    align-items: center;
    padding: clamp(30px, 5vw, 54px);
    border-radius: 44px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
    backdrop-filter: blur(12px);
}

.bott__img {
    grid-area: img;
    justify-self: center;
    width: min(280px, 100%);
    filter: drop-shadow(0 35px 30px rgba(15, 84, 88, .24));
    transform: rotate(4deg);
}

.bottprice {
    grid-area: price;
    display: grid;
    gap: 16px;
}

.bottprice .price {
    max-width: 470px;
    justify-content: flex-start;
}

.bottprice .headership {
    max-width: 390px;
}

.bottprice__gar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    padding: 9px 15px;
    border-radius: 999px;
    color: #7a4300;
    background: var(--cream);
    border: 1px solid rgba(255, 122, 61, .18);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.bottprice__gar img {
    width: 18px;
}

.bottprice__gartxt {
    max-width: 540px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
}

.botttlt {
    grid-area: title;
    max-width: 610px;
    margin-bottom: 0;
}

.operator {
    grid-area: operator;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 620px;
    padding: 16px;
    border-radius: 24px;
    background: #f7fbf8;
    border: 1px solid rgba(15, 124, 110, .10);
}

.operator__ava {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    border-radius: 22px;
    object-fit: contain;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(23, 37, 47, .08);
}

.operator__text {
    color: #3d5360;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 700;
}

.mainform-body {
    grid-area: form;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    max-width: 640px;
}

.formfieldbox {
    min-width: 0;
}

.mainform-body label {
    display: block;
    margin: 0 0 8px 4px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.mainform-body__field {
    width: 100%;
    height: 64px;
    padding: 0 18px;
    border: 1px solid rgba(23, 37, 47, .10);
    border-radius: 20px;
    color: var(--ink);
    background: #ffffff;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    box-shadow: inset 0 2px 0 rgba(23, 37, 47, .03);
    transition: border-color .18s ease, box-shadow .18s ease;
}

.mainform-body__field:focus {
    border-color: rgba(15, 124, 110, .45);
    box-shadow: 0 0 0 4px rgba(15, 124, 110, .10);
}

.mainform-body .mainform-body__btn {
    grid-column: 1 / -1;
    width: 100%;
    height: 68px;
    margin-top: 2px;
    font-size: 18px;
}

.bott__safe {
    grid-area: safe;
    justify-self: center;
    max-width: 300px;
    opacity: .84;
}

/* faq */
.block9 {
    background: #ffffff;
}

.block9 h2 {
    text-align: center;
}

.faq {
    max-width: 920px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 34px;
    background: #ffffff;
}

.accordion {
    display: grid;
}

.accordion-item + .accordion-item {
    border-top: 1px solid var(--line);
}

.accordion a {
    position: relative;
    display: block;
    padding: 24px 64px 24px 28px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
    cursor: pointer;
    transition: color .18s ease, background .18s ease;
}

.accordion a::after {
    content: "+";
    position: absolute;
    right: 26px;
    top: 50%;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--green);
    transform: translateY(-50%);
    transition: transform .18s ease, background .18s ease;
}

.accordion a:hover,
.accordion a.active {
    color: var(--green);
    background: #f7fbf8;
}

.accordion a.active::after {
    content: "−";
    background: var(--accent);
    transform: translateY(-50%) rotate(180deg);
}

.accordion .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .24s ease;
}

.accordion .content.active {
    max-height: 340px;
}

.accordion .content p {
    padding: 0 28px 24px;
    color: var(--muted);
    font-size: 16px;
}

.block9 .bbt {
    display: flex;
    width: min(360px, 100%);
    margin: 32px auto 0;
}

/* footer */
.footer {
    padding: 26px 0;
    background: #102832;
}

.footer p {
    color: rgba(255, 255, 255, .74);
}

.footer a {
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.footer a:hover {
    color: #ffffff;
}

/* responsive */
@media screen and (max-width: 1549px) {
    .redesign-v2 .wrap {
        width: min(1120px, calc(100% - 44px));
    }

    .headergrid {
        grid-template-columns: minmax(0, 1fr) 390px;
        gap: 18px 38px;
    }

    .headertitle {
        font-size: 56px;
    }

    .headerprice {
        max-width: 390px;
        min-height: 500px;
        padding: 310px 24px 24px;
    }

    .headerprice::before {
        width: 230px;
        height: 230px;
    }

    .headertovar {
        width: 150px;
        margin-top: 22px;
    }

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

    .promo__leftimg {
        width: 220px;
    }

    .promo__cont {
        padding: 30px 32px;
    }
}

@media screen and (max-width: 1203px) {
    body.redesign-v2 {
        font-size: 17px;
    }

    .redesign-v2 section {
        padding: 56px 0;
    }

    .redesign-v2 .wrap {
        width: 448px;
        max-width: calc(100% - 32px);
    }

    .topline {
        position: relative !important;
    }

    .toplinecont {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .topline__txt {
        order: 3;
        flex: 0 0 100%;
    }

    .topline__txt__one {
        font-size: 14px;
    }

    .topbtn {
        min-width: 176px;
        min-height: 56px;
        font-size: 15px;
    }

    .block2 {
        padding: 58px 0 64px !important;
        background:
            linear-gradient(180deg, rgba(247, 251, 248, .96), rgba(255, 248, 232, .90)),
            url(../images/bg1_m.jpg) center top / cover no-repeat;
    }

    .headergrid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "chips"
            "product"
            "price"
            "bullets"
            "cta";
        gap: 20px;
        text-align: center;
    }

    .headertitle {
        max-width: none;
        font-size: 46px;
    }

    .headertitle::after {
        margin-left: auto;
        margin-right: auto;
    }

    .herochips {
        justify-content: center;
    }

    .headertovar {
        grid-area: product;
        align-self: center;
        width: 225px;
        margin: 0 auto;
        transform: rotate(-2deg);
        pointer-events: auto;
    }

    .headerprice {
        align-self: center;
        min-height: 0;
        max-width: none;
        padding: 24px;
        border-radius: 30px;
    }

    .headerprice::before {
        display: none;
    }


    .headergrid .mainform-body__btn {
        justify-self: center;
    }

    .price__new__bott {
        font-size: 42px;
    }

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

    .pain__item,
    .pain__img {
        min-height: 210px;
    }

    .pain__item:nth-child(even),
    .pain__item:nth-child(even):hover {
        transform: none;
    }

    .manpain,
    .manpay2 {
        grid-template-columns: 1fr;
        border-radius: 34px;
    }

    .manpain__img img {
        max-height: 340px;
    }

    .manpain__right,
    .manpay2__left {
        padding: 30px 24px;
    }

    .manpain__right .title,
    .manpay2__left .title,
    .block6 h2.title,
    .block7 h2.title,
    .block9 h2,
    .botttlt,
    .block-steps h2.title {
        font-size: 34px;
    }

    .mainform-body__btn.bbt {
        width: 100%;
        min-width: 0;
    }

    .block4 {
        overflow: hidden;
        padding-bottom: 0 !important;
    }

    .promo {
        grid-template-columns: 1fr;
        min-height: 0;
        overflow: hidden;
        padding-bottom: 0;
        text-align: center;
    }

    .promo__leftimg {
        width: 230px;
        transform: rotate(-4deg);
    }

    .promo__cont {
        padding: 28px 22px;
    }

    .promo__cont__tlt {
        font-size: 20px;
    }

    .promo__cont__price {
        font-size: 36px;
    }

    .promo__cont__price span {
        display: block;
        width: fit-content;
        margin: 12px auto 0;
    }

    .promo_rightimg {
        display: block;
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        justify-self: center;
        width: 42%;
        max-width: 360px;
        min-width: 240px;
        height: auto;
        margin: 20px auto -95px;
        transform: none;
    }

    .manpay2__right {
        min-height: 420px;
        order: -1;
        background-position: center top;
    }

    .feat,
    .comments,
    .stepsgrid {
        grid-template-columns: 1fr;
    }

    .feat__img {
        aspect-ratio: 1 / .55;
    }

    .stepcard {
        min-height: 0;
    }

    .stepcard::after {
        left: 48px;
        right: auto;
        top: auto;
        bottom: -18px;
        width: 2px;
        height: 36px;
    }

    .subtitle {
        flex-wrap: wrap;
        text-align: center;
    }

    .block8 {
        padding: 58px 0 !important;
    }

    .bott {
        grid-template-columns: 1fr;
        grid-template-areas:
            "img"
            "price"
            "title"
            "operator"
            "form"
            "safe";
        gap: 20px;
        padding: 28px 22px;
        text-align: center;
        border-radius: 34px;
    }

    .bott__img {
        width: 230px;
        transform: rotate(2deg);
    }

    .bottprice .price,
    .bottprice .headership {
        max-width: none;
    }

    .bottprice__gar {
        margin: 0 auto;
    }

    .operator {
        align-items: flex-start;
        text-align: left;
    }

    .mainform-body {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .bott__safe {
        max-width: 285px;
    }

    .accordion a {
        padding: 20px 56px 20px 20px;
        font-size: 16px;
    }

    .accordion a::after {
        right: 18px;
    }

    .accordion .content p {
        padding: 0 20px 20px;
    }
}

@media screen and (max-width: 479px) {
    .redesign-v2 .wrap {
        width: calc(100% - 28px);
        max-width: calc(100% - 28px);
    }

    .headertitle {
        font-size: 39px;
    }

    .headerbullits {
        grid-template-columns: 1fr;
    }

    .pain {
        grid-template-columns: 1fr;
    }

    .topline__txt__two {
        flex-wrap: wrap;
    }
}
