* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Roboto', sans-serif;
    background: #fff;
    color: #222
}

section {
    scroll-margin-top: 70px
}

.header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 999
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 16px 20px
}

.btn-cart,
.order-btn,
button,
a[class*="btn"] {
    position: relative;
    display: inline-block;
    padding: 14px 38px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(180deg, #ffd84a, #ffb700);
    color: #000;
    box-shadow: 0 6px 0 #c79a00, 0 10px 25px rgb(0 0 0 / .25);
    transition: all .25s ease;
    overflow: hidden
}

.btn-cart:hover,
.order-btn:hover,
button:hover,
a[class*="btn"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 #c79a00, 0 18px 40px rgb(0 0 0 / .35)
}

.btn-cart:active,
.order-btn:active,
button:active,
a[class*="btn"]:active {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #c79a00, 0 6px 15px rgb(0 0 0 / .25)
}

.btn-cart::before,
.order-btn::before,
button::before,
a[class*="btn"]::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: rgb(255 255 255 / .4);
    transform: skewX(-25deg);
    transition: .6s
}

.btn-cart:hover::before,
.order-btn:hover::before,
button:hover::before,
a[class*="btn"]:hover::before {
    left: 130%
}

html {
    scroll-behavior: smooth
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 40px
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #013937;
    margin-right: auto;
    text-decoration: none
}

.menu {
    display: flex;
    gap: 28px;
    align-items: center
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: .25s
}

.menu a:hover {
    color: #FF452B
}

.order-btn {
    background: #ffd400;
    color: #000;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #000;
    box-shadow: 0 3px 0 #000;
    transition: .25s
}

.order-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #000
}

@media(max-width:768px) {
    .nav-wrap {
        gap: 15px
    }
    .menu {
        display: none
    }
    .logo {
        font-size: 22px
    }
    .order-btn {
        padding: 10px 18px;
        font-size: 14px
    }
}

.hero-split {
    overflow: hidden;
    padding: 40px 10;
    background: radial-gradient(circle at 20% 20%, #e6f7ec 0%, transparent 45%),
                radial-gradient(circle at 80% 70%, #d2f0db 0%, transparent 45%),
                linear-gradient(135deg, #f3fbf5ee, #e9f7eeee, #f6fcf8ee);
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 340px;
    position: relative;
}

.left {
    padding: 70px 70px;
    background: radial-gradient(circle at 20% 20%, #e6f7ec 0%, transparent 45%),
                radial-gradient(circle at 80% 70%, #d2f0db 0%, transparent 45%),
                linear-gradient(135deg, #f3fbf5ee, #e9f7eeee, #f6fcf8ee);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #0f3d25;
    margin-bottom: 25px;
    font-weight: 800;
}

.left p {
    font-size: 18px;
    color: #4c6b57;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    background: linear-gradient(90deg, #2bb673, #1e8f58);
    color: #fff;
    padding: 16px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .3px;
    box-shadow: 0 15px 35px rgb(30 143 88 / .3);
    transition: .3s;
    width: fit-content;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 45px rgb(30 143 88 / .4);
}

.right {
    background: radial-gradient(circle at 30% 30%, #6fd19b55, transparent 45%),
                radial-gradient(circle at 80% 70%, #3dbd7a55, transparent 45%),
                linear-gradient(135deg, #1e8f58, #2bb673, #7be0a9);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.card {
    background: rgb(255 255 255 / .35);
    backdrop-filter: blur(10px);
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 30px 50px rgb(0 0 0 / .14);
    max-width: 420px;
    margin: auto;
}

.card img {
    max-width: 350px;
    width: 100%;
    display: block;
    margin: auto;
    filter: drop-shadow(0 20px 35px rgb(0 0 0 / .28));
    transition: .4s;
}

.card img:hover {
    transform: scale(1.05);
}

@media(max-width:900px) {
    .grid {
        grid-template-columns: 1fr;
    }
    .right {
        clip-path: none;
        padding: 80px 20px;
    }
    .left {
        padding: 80px 25px;
        text-align: center;
    }
    .btn {
        margin: auto;
    }
}

.offer {
    background: #efefef;
    padding-bottom: 80px;
    text-align: center;
    position: relative
}

.offer-header {
    background: linear-gradient(90deg, #ff7a18, #ff3d2e);
    padding: 60px 20px 110px
}

.offer-header h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 1px;
    font-style: italic
}

.offer-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: -80px;
    flex-wrap: wrap
}

.offer-card {
    background: #fff;
    padding: 40px 30px 45px;
    border-radius: 14px;
    width: 320px;
    min-height: 520px;
    box-shadow: 0 25px 50px rgb(0 0 0 / .12);
    display: flex;
    flex-direction: column;
    justify-content: flex-start
}

.offer-card img {
    width: 290px;
    margin: 20px auto;
    display: block
}

.offer-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px
}

.price {
    font-size: 42px;
    color: #ff6a00;
    font-weight: 800
}

.old {
    text-decoration: line-through;
    color: #888;
    margin-bottom: 10px
}

.offer-card p {
    color: #555;
    margin-bottom: 20px
}

.btn-offer {
    display: inline-block;
    background: linear-gradient(180deg, #ffd64d, #ffb300);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    box-shadow: 0 6px 0 #cc9300
}

.offer-points {
    list-style: none;
    padding: 0;
    margin: 15px 0 25px;
    text-align: left
}

.offer-points li {
    margin: 8px 0;
    padding-left: 22px;
    position: relative;
    font-size: 15px;
    color: #555
}

.offer-points li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2f80ed;
    font-weight: 700
}

.offer-card.dark .offer-points li {
    color: #fff
}

.offer-card.dark .offer-points li:before {
    color: #ffd64d
}

.offer-card.featured {
    background: #fff6c7;
    border: 2px solid #ffb300;
    transform: scale(1.05)
}

.offer-card.dark {
    background: #2c4a8a;
    color: #fff
}

.offer-card.dark .price {
    color: #fff
}

.offer-card.dark .old {
    color: #cbd6ff
}

.offer-card.dark p {
    color: #e6edff
}

.offer-card {
    transition: transform .35s ease, box-shadow .35s ease
}

.offer-card:hover {
    transform: scale(1.05);
    box-shadow: 0 35px 70px rgb(0 0 0 / .18)
}

.offer-card.featured {
    transform: scale(1.05);
    transition: transform .35s ease, box-shadow .35s ease
}

.offer-card.featured:hover {
    transform: scale(1.09);
    box-shadow: 0 40px 80px rgb(0 0 0 / .2)
}

@media(max-width:900px) {
    .offer-cards {
        flex-direction: column;
        align-items: center
    }
}

.about {
    padding: 60px 20px;
    background: linear-gradient(180deg, #ffffff, #f5f9ff);
}

.about-wrap {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 520px;
}

.about-text h2 {
    font-size: 42px;
    color: #0c2c54;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c80;
    margin-bottom: 18px;
}

.about-highlights {
    flex: 1 1 380px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight {
    background: #fff;
    padding: 22px 24px;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgb(0 0 0 / .06);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: .3s;
}

.highlight:hover {
    transform: translateY(-3px);
}

.highlight span {
    font-size: 26px;
}

.highlight h4 {
    margin: 0;
    color: #0d6efd;
    font-size: 18px;
}

.highlight p {
    margin: 5px 0 0;
    font-size: 15px;
    color: #667a92;
}

@media(max-width:900px) {
    .about {
        padding: 30px 16px !important;
    }
    .about-wrap {
        flex-direction: column !important;
        gap: 0 !important;
    }
    .about-text {
        flex: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .about-text p {
        margin-bottom: 6px !important;
    }
    .about-text p:last-child {
        margin-bottom: 4px !important;
    }
    .about-highlights {
        flex: auto !important;
        margin-top: 45px !important;
        padding-top: 0 !important;
        gap: 10px !important;
    }
    .about-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .about-text h2 {
        text-align: center;
    }
    .about-text p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 95%;
    }
}

.reviews-simple{
    padding:60px 20px;
    background:linear-gradient(180deg, #ffffff, #f5f9ff);
}

.reviews-simple h2{
    text-align:center;
    font-size:34px;
    margin-bottom:45px;
    color:#1b2f45;
}

.review-card{
    max-width:900px;        /* was 780px → now wider */
    margin:28px auto;
    background: linear-gradient(135deg, #e9f7ee, #dff2e6);
    padding:30px 36px;      /* more horizontal space */
    border-radius:16px;
    box-shadow:0 10px 28px rgba(0,0,0,.08);
    display:flex;
    align-items:center;
    gap:26px;
}

.review-card img{
    width:130px;               /* slightly bigger image */
    height:130px;
    border-radius:14px;
    object-fit:cover;
    flex-shrink:0;
}

.review-text p{
    font-size:17px;            /* was 15px → bigger text */
    line-height:1.8;
    color:#556070;
    margin-bottom:14px;
}

.review-text h4{
    margin:0;
    color:#1e8f58;
    font-size:16px;            /* was 14px */
    font-weight:600;
}

@media(max-width:700px){
    .review-card{
        flex-direction:column;
        text-align:center;
        padding:26px;
    }
}


.benefits-pro {
    padding: 50px 20px;
    background: radial-gradient(circle at 20% 20%, #eef6ff 0%, transparent 45%), radial-gradient(circle at 80% 70%, #e5f0ff 0%, transparent 45%), linear-gradient(180deg, #ffffff, #f6faff);
}

.benefits-head {
    max-width: 760px;
    margin: auto;
    text-align: center;
    margin-bottom: 60px;
}

.benefits-head h2 {
    font-size: 42px;
    color: #0c2c54;
    margin-bottom: 14px;
}

.benefits-head p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c80;
}

.benefits-grid {
    max-width: 1050px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.benefit-item {
    background: #fff;
    padding: 26px 22px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 18px 40px rgb(0 0 0 / .06);
    transition: .35s;
    position: relative;
}

.benefit-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #12c2ff, #0d6efd);
    border-radius: 16px 16px 0 0;
}

.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgb(0 0 0 / .12);
}

.benefit-item span {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

.benefit-item h4 {
    margin: 6px 0 8px;
    color: #0d6efd;
    font-size: 18px;
}

.benefit-item p {
    font-size: 14.5px;
    color: #6b7f96;
    line-height: 1.6;
}

@media(max-width:700px) {
    .benefit-item {
        border-radius: 10px;
        padding: 18px 14px 20px;
        min-height: 150px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .benefit-item h4 {
        font-size: 15px;
    }
    .benefit-item p {
        font-size: 13.5px;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

.guarantee-section {
    background: #f3f3f3;
    padding: 0 20px
}

.guarantee-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    max-width: 950px;
    margin: auto
}

.guarantee-img img {
    max-width: 200px
}

.guarantee-content {
    max-width: 520px
}

.guarantee-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #111
}

.guarantee-content span {
    color: #2f8f86
}

.guarantee-content p {
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 22px;
    color: #444
}

.guarantee-btn {
    display: inline-block;
    background: #ffc400;
    color: #000;
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 5px 0 #b58c00;
    transition: .25s
}

.guarantee-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 3px 0 #b58c00
}

@media(max-width:900px) {
    .guarantee-wrap {
        flex-direction: column;
        text-align: center;
        gap: 20px
    }
    .guarantee-img img {
        max-width: 170px
    }
    .guarantee-content h2 {
        font-size: 26px
    }
}

.ingredients {
    padding: 60px 20px;
    background: radial-gradient(circle at 20% 20%, #eef6ff 0%, transparent 45%), radial-gradient(circle at 80% 70%, #e5f0ff 0%, transparent 45%), linear-gradient(180deg, #ffffff, #f6faff);
    text-align: center;
}

.ingredients-title {
    font-size: 40px;
    color: #0c2c54;
    margin-bottom: 70px;
}

.ingredients-wrap {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.ingredients-image {
    flex: 1 1 420px;
    text-align: center;
}

.ingredients-image img {
    width: 100%;
    max-width: 370px;
    filter: drop-shadow(0 25px 45px rgb(0 0 0 / .15));
}

.ingredients-list {
    flex: 1 1 420px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    text-align: left;
}

.ing-item {
    background: #fff;
    padding: 18px 18px 20px;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgb(0 0 0 / .06);
    transition: .3s;
}

.ing-item:hover {
    transform: translateY(-4px);
}

.ing-item h4 {
    margin: 0 0 5px;
    color: #0d6efd;
    font-size: 17px;
}

.ing-item p {
    margin: 0;
    font-size: 14.5px;
    color: #6b7f96;
    line-height: 1.6;
}

@media(max-width:900px) {
    .ingredients-wrap {
        flex-direction: column;
        gap: 28px;
    }
    .ingredients-image {
        flex: none;
        height: auto;
    }
    .ingredients-image img {
        max-width: 220px;
        margin: 0 auto;
        display: block;
    }
}

.how {
    padding: 100px 20px;
    background: radial-gradient(circle at 20% 20%, #eef6ff 0%, transparent 45%), radial-gradient(circle at 80% 70%, #e5f0ff 0%, transparent 45%), linear-gradient(180deg, #ffffff, #f6faff);
    text-align: center;
}

.how-title {
    font-size: 42px;
    color: #0c2c54;
    margin-bottom: 14px;
}

.how-intro {
    max-width: 720px;
    margin: 0 auto 60px;
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c80;
}

.how-steps {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.how-step {
    background: #fff;
    padding: 30px 26px 34px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgb(0 0 0 / .06);
    position: relative;
    transition: .3s;
}

.how-step:hover {
    transform: translateY(-6px);
}

.how-step span {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 50%;
    background: linear-gradient(90deg, #12c2ff, #0d6efd);
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.how-step h4 {
    margin: 8px 0 10px;
    color: #0d6efd;
    font-size: 19px;
}

.how-step p {
    font-size: 15px;
    color: #6b7f96;
    line-height: 1.6;
}

@media(max-width:900px) {
    .how-steps {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .how-title {
        font-size: 30px;
    }
    .how-intro {
        font-size: 15.5px;
        margin-bottom: 40px;
    }
}

.faq {
    padding: 60px 20px;
    background: radial-gradient(circle at 20% 20%, #eef6ff 0%, transparent 45%), radial-gradient(circle at 80% 70%, #e5f0ff 0%, transparent 45%), linear-gradient(180deg, #ffffff, #f6faff);
    text-align: center;
}

.faq-title {
    font-size: 40px;
    color: #0c2c54;
    margin-bottom: 70px;
}

.faq-wrap {
    max-width: 820px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: rgb(255 255 255 / .9);
    border-radius: 16px;
    box-shadow: 0 20px 45px rgb(0 0 0 / .06);
    overflow: hidden;
    position: relative;
}

.faq-q {
    width: 100%;
    padding: 22px 26px;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    background: #fff;
    border: none;
    cursor: pointer;
    color: #0c2c54;
    position: relative;
    z-index: 2;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c80;
    text-align: left;
    background: #f7faff;
    transition: max-height .35s ease, padding .25s ease, opacity .25s ease;
    opacity: 0;
}

.faq-q:after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #0d6efd;
    transition: .3s;
}

.faq-item.active .faq-a {
    max-height: 260px;
    padding: 16px 26px 22px;
    opacity: 1;
}

.faq-item.active .faq-q:after {
    content: "–";
}

@media(max-width:900px) {
    .faq-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    .faq-q {
        font-size: 15.5px;
        padding: 18px 20px;
    }
}

.footer {
    margin-top: 0px;
    background: linear-gradient(135deg, #1e8f58, #7be0a9);
    color: #000
}

.footer-cta {
    text-align: center;
    padding: 80px 20px;
    background: rgb(255 255 255 / .35)
}

.footer-cta h2 {
    font-size: 36px;
    margin-bottom: 10px
}

.footer-cta p {
    opacity: .95;
    margin-bottom: 25px
}

.footer-btn {
    background: #ffd64d;
    color: #000;
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 0 #cc9300;
    display: inline-block
}

.footer-main {
    max-width: 1100px;
    margin: auto;
    padding: 70px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 10px
}

.footer-brand p {
    opacity: .8;
    line-height: 1.7
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 15px
}

.footer-links a {
    display: block;
    color: #000;
    text-decoration: none;
    margin-bottom: 10px;
    transition: .3s
}

.footer-links a:hover {
    color: #fff
}

.footer-contact p {
    margin: 6px 0;
    opacity: .85
}

.footer-bottom {
    text-align: center;
    padding: 22px 10px;
    border-top: 1px solid rgb(255 255 255 / .15);
    font-size: 14px;
    opacity: .7
}

@media(max-width:900px) {
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px
    }
    .footer-cta h2 {
        font-size: 26px
    }
}

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 40px 20px;
    line-height: 1.7
}

.legal-page h1 {
    margin-bottom: 20px
}

.legal-page h3 {
    margin-top: 25px
}

.product-highlight{
    background:#f7faf7;
    padding:70px 20px;
}

.highlight-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

.highlight-image img{
    max-width:420px;
    width:100%;
    border-radius:18px;
    box-shadow:0 20px 45px rgba(0,0,0,0.08);
}

.highlight-content{
    max-width:520px;
}

.highlight-content h2{
    font-size:34px;
    margin-bottom:15px;
}

.highlight-content p{
    color:#555;
    line-height:1.7;
    margin-bottom:20px;
}

.highlight-points{
    list-style:none;
    padding:0;
    margin-bottom:25px;
}

.highlight-points li{
    margin-bottom:10px;
    font-size:16px;
}

.highlight-btn{
    display:inline-block;
    background:#2ea44f;
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.highlight-btn:hover{
    background:#FFD33F;
}

@media(max-width:768px){
    .highlight-wrap{
        flex-direction:column;
        text-align:center;
    }
}