/* Fonts */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
         url('../fonts/Montserrat-Regular.woff') format('woff'),
         url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
         url('../fonts/Montserrat-Bold.woff') format('woff'),
         url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Global Styles */
body {
    min-width: 480px;
    background: #f0f2f5;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    margin: 0;
}

.main_wrapper {
    margin: 0 auto;
    width: 480px;
    background: #ffffff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

b {
    font-weight: 700;
}

/* Button */
.button {
    display: block;
    margin: 20px auto;
    width: 350px;
    height: 80px;
    border: none;
    border-radius: 40px;
    background: linear-gradient(90deg, #ff8c00 0%, #ffbc3d 100%);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 80px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

/* Section */
section {
    padding: 40px 0;
    transition: background 0.3s ease;
}

.yellow_theme {
    background: linear-gradient(180deg, #ffd700 0%, #ffca28 100%);
}

.dark_theme {
    background: #1c2526;
    color: #ffffff;
}

.gray_theme {
    background: #f7f9fc;
}

/* Titles */
h2.title {
    margin: 0 0 35px;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.3;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.5px;
}

h2.title:after {
    display: block;
    content: '';
    margin: 15px auto 0;
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, #ff8c00, #ffbc3d);
    border-radius: 2px;
}

h2.title span {
    color: #ff8c00;
}

.dark_theme h2.title span {
    color: #ffd700;
}

/* Separator */
.separator {
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, #ff8c00, #ffbc3d);
    border-radius: 2px;
    margin: 20px auto;
}

.separator.white {
    background: linear-gradient(90deg, #ffffff, #e0e0e0);
}

/* Image */
section .image {
    display: block;
    margin: 0 auto 35px;
    border-radius: 8px;
}

section .image:hover {
    transform: scale(1.02);
}

/* Offer */
.offer_section {
    padding: 0;
    background: #1c2526;
}

.offer_section .main_title {
    padding: 15px 20px;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    text-align: center;
    background: linear-gradient(90deg, #ffd700 0%, #ffca28 100%);
    color: #1a1a1a;
    border-radius: 0 0 12px 12px;
}

.offer_section.offer2 .main_title {
    background: linear-gradient(90deg, #ff8c00 0%, #ffbc3d 100%);
    color: #fff;
}

.offer_section .info_block {
    position: relative;
    margin: 20px 0;
}

.offer_section .info_block img {
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.offer_section .info_block .subtitle {
    padding: 12px 20px;
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(28, 37, 38, 0.85);
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.offer_section .info_block .discount {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #e63946, #ff6b6b);
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    position: absolute;
    top: 40px;
    right: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.offer_section .info_block .discount:hover {
    transform: scale(1.05);
}

.offer_section .info_block .discount b {
    transform: rotate(15deg);
    text-align: center;
}

.offer_section.offer2 .info_block .discount {
    background: linear-gradient(45deg, #ff8c00, #ffbc3d);
    top: -20px;
    right: 20px;
}

.offer_section .price_block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 30px;
    padding: 20px;
    background: #292929;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.offer_section .price_item {
    text-align: center;
    flex: 1;
}

.offer_section .price_item.old .text {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 5px;
}

.offer_section .price_item.old .value {
    font-size: 28px;
    font-weight: 700;
    color: #e63946;
    text-decoration: line-through;
}

.offer_section .price_item.new .text {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 5px;
}

.offer_section .price_item.new .value {
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    background: linear-gradient(45deg, #ff8c00, #ffbc3d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offer_section .timer_block {
    margin: 20px 30px;
    padding: 20px;
    text-align: center;
    background: #292929;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.offer_section .timer_block p {
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 700;
    color: #ffd700;
    text-transform: uppercase;
}

.offer_section .timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.offer_section .timer_item {
    text-align: center;
}

.offer_section .timer_item .count {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.offer_section .timer_item .count span {
    width: 50px;
    height: 60px;
    background: #ffd700;
    font-weight: 700;
    font-size: 36px;
    line-height: 60px;
    color: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.offer_section .timer_item .count span:hover {
    transform: scale(1.05);
}

.offer_section .timer_item .text {
    font-size: 14px;
    color: #e0e0e0;
    text-transform: uppercase;
}

.offer_section ul {
    padding: 0 55px 25px;
}

.offer_section ul li {
    margin: 0 0 15px;
    padding: 0 0 0 25px;
    color: #e0e0e0;
    position: relative;
}

.offer_section ul li:last-child {
    margin: 0;
}

.offer_section ul li:before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid #ffd700;
    background: #ffd700;
    box-shadow: 0 0 0 2px #1c2526 inset;
    position: absolute;
    top: 4px;
    left: 0;
    border-radius: 50%;
}

.offer_section .products_count {
    margin: 20px 30px;
    padding: 15px;
    font-size: 16px;
    line-height: 24px;
    color: #e0e0e0;
    text-align: center;
    background: linear-gradient(45deg, #e63946, #ff6b6b);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.offer_section .products_count b {
    margin: 0 4px;
    padding: 3px 6px;
    background: #ffd700;
    font-size: 18px;
    color: #1a1a1a;
    border-radius: 4px;
}

.offer_section .text_block {
    margin: 20px 55px;
    text-align: center;
}

.offer_section .text_block h4 {
    margin: 0 0 12px;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    color: #ffd700;
}

.offer_section .text_block p {
    color: #b0b0b0;
}

.offer_section .order_form {
    margin: 20px 0;
}

.offer_section .field {
    display: block;
    margin: 0 auto 15px;
    padding: 0 20px 0 62px;
    width: 370px;
    height: 72px;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #1a1a1a;
    background: #f0f0f0;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.offer_section .field[name='name'] {
    background: #f0f0f0 url(../images/offer__name_icon.png) 22px center no-repeat;
}

.offer_section .field[name='phone'] {
    background: #f0f0f0 url(../images/offer__phone_icon.png) 20px center no-repeat;
}

.offer_section .field[name='color'] {
    background: #f0f0f0 url(../images/color_icon.png) 20px center no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 40px;
    background-image: url(../images/color_icon.png), url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBmaWxsPSIjNzc3IiBkPSJNMTIgNEw4IDhsNCA0eiIvPjwvc3ZnPg==);
    background-position: 20px center, calc(100% - 20px) center;
    background-repeat: no-repeat;
}

.offer_section .field:focus {
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
    background: #ffffff;
    outline: none;
}

.offer_section .field::-webkit-input-placeholder {
    opacity: 1;
    color: #777;
}

.offer_section .field:-moz-placeholder {
    opacity: 1;
    color: #777;
}

.offer_section .field::-moz-placeholder {
    opacity: 1;
    color: #777;
}

.offer_section .field:-ms-input-placeholder {
    opacity: 1;
    color: #777;
}

.offer_section .field:focus::-webkit-input-placeholder {
    opacity: 0;
}

.offer_section .field:focus:-moz-placeholder {
    opacity: 0;
}

.offer_section .field:focus::-moz-placeholder {
    opacity: 0;
}

.offer_section .field:focus:-ms-input-placeholder {
    opacity: 0;
}

/* Video */
.video-container {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    margin: 0 auto 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Description */
.description_section {
    padding: 0;
}

.description_section h2.title {
    padding: 0 30px;
}

.description_section .text {
    padding: 0 30px 25px;
    font-size: 16px;
    line-height: 1.6;
}

.description_section .image {
    margin: 0 auto;
}

.description_section .benefits_list2 {
    margin-top: 15px;
}

.description_section .benefits_list2 .benefit_item {
    padding: 0 20px 35px;
}

.description_section .button {
    margin: 25px auto 45px;
}

/* Social Proof */
.social_proof_block {
    padding: 0 30px 35px;
}

.social_proof_block .info_item {
    float: left;
    padding: 25px 0;
    width: 50%;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.social_proof_block .info_item:hover {
    transform: translateY(-5px);
}

.social_proof_block .info_item:nth-child(even) {
    border-right: none;
}

.social_proof_block .info_item:nth-last-child(2), 
.social_proof_block .info_item:last-child {
    border-bottom: none;
}

.social_proof_block .info_item .icon_block {
    float: right;
    margin: 0 15px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.social_proof_block .info_item:nth-child(even) .icon_block {
    float: left;
}

.social_proof_block .info_item img {
    display: inline-block;
    vertical-align: middle;
    max-height: 50px;
}

.social_proof_block .info_item .text_block {
    float: left;
    margin: -2px 0 0;
    width: 129px;
}

.social_proof_block .info_item:nth-child(odd) .text_block {
    text-align: right;
}

.social_proof_block .info_item .number {
    margin: 0 0 5px;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    color: #ff8c00;
}

.social_proof_block .info_item .text {
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
}

/* List 1 */
.list1 {
    padding: 0 30px 20px;
    font-size: 0;
    line-height: 0;
    letter-spacing: -1px;
}

.list1 li {
    display: inline-block;
    vertical-align: top;
    margin: 0 20px 20px 0;
    padding: 0 0 0 25px;
    width: 200px;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: normal;
    position: relative;
}

.list1 li:nth-child(even) {
    margin: 0 0 15px;
}

.list1 li:before {
    content: '';
    display: block;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    transform: rotate(30deg);
    position: absolute;
    top: 8px;
    left: -2px;
}

.list1.marker1 li:before {
    border-top: 8px solid #ffd700;
}

/* Benefits */
.benefits_section {
    padding: 40px 0 0;
}

.benefits_section h2.title {
    padding: 0 30px;
}

.benefits_list4 .benefit_item {
    margin: 0 auto 35px;
    width: 420px;
    background: #fff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits_list4 .benefit_item:last-child {
    margin: 0;
}

.benefits_list4 .benefit_item img {
    display: block;
    border-radius: 12px 12px 0 0;
    width: 100%;
}

.benefits_list4 .text_block {
    padding: 30px;
    background: #f7f9fc;
    border-radius: 0 0 12px 12px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.benefits_list4 .text_block .icon {
    display: block;
    margin: 0 auto 15px;
    width: 40px;
    height: 40px;
}

.benefits_list4 .text_block h4 {
    margin: 0 0 15px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #1a1a1a;
}

.benefits_list4 .text_block p {
    color: #1a1a1a;
    margin: 0;
}

/* Characteristics */
.characteristics_section {
    padding: 40px 0 0;
}

.characteristics_section h2.title {
    padding: 0 30px;
}

.characteristics_section .image2 {
    margin: 35px auto 0;
    border-radius: 8px;
}

.characteristics__list li {
    padding: 15px 30px 15px 52px;
    text-align: right;
    position: relative;
    background: #f7f9fc;
    margin: 5px 0;
    border-radius: 8px;
}

.characteristics__list li:nth-child(odd) {
    background: #ffffff;
}

.characteristics__list li:before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid #ff8c00;
    background: #ff8c00;
    box-shadow: 0 0 0 2px #fff inset;
    position: absolute;
    top: 20px;
    left: 30px;
    border-radius: 50%;
}

.characteristics__list li:nth-child(odd):before {
    box-shadow: 0 0 0 2px #f7f9fc inset;
}

.characteristics__list li b {
    float: left;
}

/* Order Steps */
.order_steps_section {
    padding: 0;
}

.order_steps_section h2.title {
    padding: 0 30px;
}

.order_steps2 {
    border-top: 2px solid #e0e0e0;
    background: #f7f9fc;
    overflow: hidden;
}

.order_steps2 .step_item {
    float: left;
    margin: 0 2px 2px 0;
    padding: 35px 60px 0 30px;
    width: 239px;
    height: 239px;
    box-shadow: 0 0 0 1px #e0e0e0;
    background: #ffffff;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.order_steps2 .step_item:hover {
    transform: translateY(-5px);
}

.order_steps2 .step_item:nth-child(even) {
    margin: 0 0 2px;
}

.order_steps2 .step_item:nth-last-child(2), 
.order_steps2 .step_item:last-child {
    margin-bottom: 0;
}

.order_steps2 .step_item img {
    display: block;
}

.order_steps2 .step_item .separator {
    margin: 20px 0 14px;
}

.order_steps2 .step_item h4 {
    font-weight: 700;
    text-transform: uppercase;
}

/* Reviews */
.reviews1_section {
    padding: 40px 30px;
    position: relative;
}

.reviews1_section:before {
    content: '';
    border-top: 115px solid #ffd700;
    border-left: 115px solid transparent;
    position: absolute;
    top: 0;
    right: 0;
}

.reviews1_section h2.title {
    margin: 0 60px 35px 0;
}

.reviews1_section .review_item {
    margin: 0 0 35px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.reviews1_section .review_item:last-child {
    margin: 0;
}

.reviews1_section .review_item p {
    margin: 0 0 25px;
}

.reviews1_section .author_block {
    padding: 0 50px 0 0;
    background: url(../images/quote1_icon.png) right center no-repeat;
}

.reviews1_section .author_block img {
    display: block;
    float: left;
    width: 60px;
    border-radius: 50%;
}

.reviews1_section .author_block .author_info {
    float: left;
    margin: 6px 0 0 20px;
    width: 240px;
}

.reviews1_section .author_block .name {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

/* Footer */
.footer_section {
    padding: 30px 0;
    background: #f7f9fc;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

.footer_section img {
    display: block;
    margin: 0 auto 15px;
}

.footer_section a {
    color: #ff8c00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_section a:hover {
    color: #e63946;
}