* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    color: #2d2d2d;
    line-height: 1.5;
    background-color: #faf9f7;
    overflow-x: hidden;
    width: 100%;
}
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
    color: #1e1e1e;
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-top: 28rem;
}
h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}
h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #ff6b35;
    margin-top: 8px;
    border-radius: 2px;
}
h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    z-index: 1000;
    padding: 20px 0;
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
body {
    padding-top: 100px;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(255,107,53,0.3));
    transition: transform 0.3s ease;
}
.logo-img:hover {
    transform: scale(1.05) rotate(-2deg);
}
.logo-desktop {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a2e1f;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #8B4513, #A0522D, #CD853F, #D2691E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 0 rgba(255,107,53,0.2), 4px 4px 0 rgba(255,107,53,0.1);
}
.logo-mobile {
    display: none;
    font-size: 0.8rem;
    line-height: 1.2;
    font-weight: 500;
    color: #4a2e1f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.header-contacts {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-contacts .contact-links {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-contacts a {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}
.header-contacts a:hover {
    color: #ff6b35;
}
.header-contacts i {
    margin-right: 8px;
    color: #ff6b35;
}
.section {
    padding: 80px 0;
}
.section-light {
    background-color: #ffffff;
}
.section-kraft {
    background-color: #fff4e6;
}
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}
.btn-primary {
    background-color: #ff6b35;
    color: white !important;
    box-shadow: 0 8px 16px rgba(255,107,53,0.3);
}
.btn-primary:hover {
    background-color: #e0552a;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255,107,53,0.4);
}
/* ===== ГЕРОЙ С ИЗОБРАЖЕНИЕМ В ПОТОКЕ ===== */
.hero {
    position: relative;       /* на случай будущих доработок */
    width: 100%;
    background: none;
}

.hero-image {
    width: 100%;
    line-height: 0;           /* убирает лишний отступ под картинкой */
}

.hero-image picture,
.hero-image img {
    width: 100%;
    height: auto;             /* сохраняет пропорции, не обрезает */
    display: block;
}

.hero .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 20px 40px;       /* отступы вокруг текста */
}

.hero-content {
    color: #2d2d2d;           /* тёмный текст (фон теперь светлый) */
}

.hero-content h1 {
    color: #ff6b35;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.hero-content p {
    color: #4f4f4f;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-content .btn-primary {
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Адаптивность */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        text-align: center;
    }
    .hero-content p {
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero .container {
        padding: 30px 20px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero .container {
        padding: 20px 20px;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.feature-card {
    background: white;
    padding: 25px 15px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.feature-card:hover {
    transform: translateY(-10px);
}
.feature-icon {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
}
.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.feature-card p {
    color: #5a5a5a;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.product-item {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
    height: 100%;
}
.product-item:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.product-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    overflow: hidden;
}
.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 25px;
}
.product-info h3 {
    margin-bottom: 10px;
}
.product-info p {
    flex: 1;
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}
.product-info p .point-item {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    color: #5a5a5a;
    font-size: 0.95rem;
    line-height: 1.4;
}
.product-info p .point-item:before {
    content: "•";
    color: #ff6b35;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -8px;
    line-height: 1;
}
.product-tag-btn {
    display: inline-block;
    background: #ffead2;
    color: #c44f1e;
    padding: 6px 12px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    align-self: flex-start;
    margin-top: auto;
    width: fit-content;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
}
.product-tag-btn:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(255,107,53,0.3);
}
.product-tag-btn:active {
    transform: translateY(0);
    box-shadow: none;
}
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.step {
    text-align: center;
    position: relative;
}
.step:not(:last-child):after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 30px;
    font-size: 2rem;
    color: #ff9f7c;
}
.step-number {
    width: 70px;
    height: 70px;
    background: #ff6b35;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.step h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.step p {
    color: #5a5a5a;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.portfolio-item {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}
.portfolio-item:hover {
    background-size: 120%;
    filter: brightness(1.05);
}
.portfolio-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    margin: 30px 0;
    width: 100%;
}
.portfolio-item .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
}
.portfolio-item:hover .zoom-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.portfolio-item:hover::after {
    opacity: 1;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.review-card {
    background: white;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,107,53,0.1);
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,107,53,0.1);
    border-color: rgba(255,107,53,0.3);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.review-avatar {
    font-size: 3rem;
    color: #ff6b35;
    line-height: 1;
}
.review-author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #1e1e1e;
}
.review-author-info .review-company {
    font-size: 0.9rem;
    color: #ff6b35;
    font-weight: 500;
}
.review-rating {
    margin-bottom: 15px;
    color: #ffb800;
    font-size: 0.9rem;
    letter-spacing: 2px;
}
.review-rating i {
    margin-right: 2px;
}
.review-text {
    color: #4f4f4f;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}
.review-date {
    font-size: 0.8rem;
    color: #999;
    text-align: right;
    border-top: 1px solid #eee;
    padding-top: 10px;
}
.form-section {
    background: #ffffff;
}
.form-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    background: #fff7f0;
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.form-group {
    margin-bottom: 20px;
}
input, textarea {
    width: 100%;
    padding: 16px 24px;
    border: 1px solid #ffccb3;
    border-radius: 60px;
    font-family: inherit;
    font-size: 1rem;
    background: white;
    transition: border 0.2s;
}
input:focus, textarea:focus {
    outline: none;
    border-color: #ff6b35;
}
textarea {
    border-radius: 30px;
    resize: vertical;
}
.form-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}
.notification {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 90%;
    max-width: 400px;
    background-color: white;
    border-left: 4px solid #ff6b35;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 16px;
    padding: 25px;
    animation: fadeIn 0.3s ease;
}
.notification-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}
.notification-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
}
.notification-close {
    align-self: center;
    padding: 10px 24px;
    font-size: 1rem;
    min-width: 120px;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}
.contact-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.contact-details {
    flex: 1 1 300px;
}
.contact-details p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.contact-details i {
    width: 30px;
    color: #ff6b35;
}
.contact-details a {
    color: inherit;
    text-decoration: none;
}
.contact-details a:hover {
    color: #ff6b35;
}
.map {
    flex: 2 1 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.footer {
    background: #1e1e1e;
    color: #b3b3b3;
    padding: 40px 0;
    text-align: center;
}
.reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left {
    transform: translateX(-450px);
}
.reveal-right {
    transform: translateX(450px);
}
.reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}
.lb-loader .lb-cancel {
    border-color: #ff6b35 transparent;
}
.lb-nav a.lb-prev, .lb-nav a.lb-next {
    opacity: 1;
}
.lb-data .lb-close {
    background-size: cover;
}
.lb-data .lb-caption {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.lb-container {
    background: rgba(0,0,0,0.9);
}
.simple-tab {
    position: fixed;
    right: 0;
    top: 150px;
    width: 50px;
    height: 280px;
    background-color: #ff6b35;
    border-radius: 15px 0 0 15px;
    box-shadow: -3px 3px 10px rgba(0,0,0,0.2);
    transition: width 0.3s ease;
    z-index: 999;
    cursor: pointer;
    overflow: hidden;
    display: none; /* скрыт по умолчанию */
}

.simple-tab.visible {
    display: block; /* показываем */
}
.simple-tab::before {
    content: 'ПОДАРОК';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    white-space: nowrap;
    width: 240px;
    text-align: center;
    opacity: 1;
    transition: opacity 0.2s ease;
}
.simple-tab:hover {
    width: 55px;
    background-color: #e0552a;
}
.simple-tab.active {
    width: 260px;
    background-color: #ff6b35;
}
.simple-tab.active::before {
    opacity: 0;
    pointer-events: none;
}
.simple-tab .tab-content {
    display: none;
    padding: 25px 15px 20px;
    color: white;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}
.simple-tab.active .tab-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    opacity: 1;
}
.simple-tab .coupon-title {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(255,215,0,0.25);
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    width: 100%;
    margin-bottom: 10px;
}
.simple-tab .coupon-code {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: monospace;
    background: rgba(255,255,255,0.25);
    padding: 8px 12px;
    border-radius: 40px;
    margin: 5px 0;
    letter-spacing: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    border: 1px solid rgba(255,255,255,0.3);
}
.simple-tab .coupon-code:hover {
    background: rgba(255,255,255,0.4);
    transform: scale(1.05);
}
.simple-tab .coupon-code:active {
    transform: scale(0.95);
}
.simple-tab .coupon-offer {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 8px 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.15);
    padding: 8px 10px;
    border-radius: 20px;
    width: 100%;
}
.simple-tab .coupon-hint {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 5px 0;
    font-weight: 500;
}
.simple-tab .coupon-feedback {
    font-size: 0.75rem;
    margin-top: 5px;
    margin-bottom: 5px;
    opacity: 0.8;
    font-style: italic;
    background: rgba(0,0,0,0.1);
    padding: 3px 10px;
    border-radius: 20px;
}
.contact-choice {
    background-color: #fff0e6;
    border-radius: 20px;
    padding: 15px 20px;
    margin-bottom: 20px;
}
.choice-label {
    display: block;
    font-weight: 600;
    color: #4a2e1f;
    margin-bottom: 12px;
    font-size: 1rem;
}
.choice-options {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.choice-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 1rem;
}
.choice-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #ff6b35;
    margin: 0;
}
.choice-option span {
    color: #2d2d2d;
}
.phone-field, .email-field {
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.phone-field {
    opacity: 1;
    transform: translateY(0);
}
.email-field {
    opacity: 0;
    transform: translateY(-10px);
}
.email-field.active {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
}
.phone-field.hidden {
    display: none !important;
}
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) and (orientation: portrait) {
    body {
        padding-top: 90px;
    }
    .header {
        padding: 15px 0;
    }
    .logo-img {
        height: 50px;
    }
    h1 { 
        font-size: 2.5rem; 
    }
    .steps { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .step:not(:last-child):after { 
        display: none; 
    }
    .reviews-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .simple-tab {
        top: 200px;
        height: 240px;
        width: 45px;
    }
    .simple-tab.active {
        width: 220px;
    }
    .simple-tab .coupon-code {
        font-size: 1.8rem;
    }
    .reveal-left, .reveal-right {
        opacity: 1 !important;
        transform: translateX(0) !important;
        transition: none !important;
    }
}
@media (max-width: 768px) and (orientation: portrait) {
    body {
        padding-top: 80px;
    }
    .header {
        padding: 10px 0;
    }
    .logo-container {
        gap: 8px;
    }
    .logo-img {
        height: 40px;
    }
    .logo-desktop {
        display: none;
    }
    .logo-mobile {
        display: block;
        font-size: 0.7rem;
    }
    .header-contacts {
        gap: 15px;
    }
    .header-contacts .contact-links {
        gap: 12px;
    }
    .header-contacts .contact-links a span {
        display: none;
    }
    .header-contacts .contact-links a i {
        font-size: 1.2rem;
        margin-right: 0;
    }
    .header-contacts .btn-primary {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .feature-card {
        padding: 20px 10px;
    }
    .feature-icon {
        font-size: 2rem;
    }
    .feature-card h3 {
        font-size: 1.1rem;
    }
    .products-grid { 
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    .product-tag-btn {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    .steps { 
        grid-template-columns: 1fr; 
    }
    .form-wrapper { 
        padding: 30px 20px; 
    }
    .portfolio-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .portfolio-item {
        width: 100%;
        margin-bottom: 0;
    }
    .portfolio-divider {
        display: block;
        margin: 20px 0 25px 0;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .review-card {
        padding: 20px;
    }
    .review-avatar {
        font-size: 2.5rem;
    }
    .simple-tab {
        top: 150px;
        height: 220px;
        width: 38px;
    }
    .simple-tab.active {
        width: 200px;
    }
    .simple-tab::before {
        width: 180px;
        font-size: 0.85rem;
    }
    .simple-tab .coupon-title {
        font-size: 0.8rem;
        padding: 4px 10px;
        margin-bottom: 5px;
    }
    .simple-tab .coupon-code {
        font-size: 1.5rem;
        padding: 4px 6px;
        margin: 3px 0;
        letter-spacing: 3px;
    }
    .simple-tab .coupon-offer {
        font-size: 0.75rem;
        padding: 5px 6px;
        margin: 3px 0;
        line-height: 1.2;
    }
    .simple-tab .coupon-hint {
        font-size: 0.7rem;
        margin: 2px 0;
    }
    .simple-tab .coupon-feedback {
        font-size: 0.6rem;
        padding: 2px 6px;
        margin-top: 2px;
    }
}
@media (max-width: 480px) and (orientation: portrait) {
    body {
        padding-top: 70px;
    }
    .logo-img {
        height: 35px;
    }
    .logo-mobile {
        font-size: 0.6rem;
    }
    .header-contacts {
        gap: 10px;
    }
    .header-contacts .contact-links {
        gap: 8px;
    }
    .header-contacts .contact-links a i {
        font-size: 1rem;
    }
    .header-contacts .btn-primary {
        padding: 4px 8px;
        font-size: 0.65rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .simple-tab {
        top: 120px;
        height: 200px;
        width: 35px;
    }
    .simple-tab.active {
        width: 180px;
    }
    .simple-tab .coupon-title {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    .simple-tab .coupon-code {
        font-size: 1.3rem;
        padding: 3px 5px;
    }
    .simple-tab .coupon-offer {
        font-size: 0.65rem;
        padding: 4px 5px;
    }
    .simple-tab .coupon-hint {
        font-size: 0.6rem;
    }
    .simple-tab .coupon-feedback {
        font-size: 0.55rem;
        padding: 2px 5px;
    }
}
@media (max-width: 992px) and (orientation: landscape) {
    body {
        padding-top: 60px;
        overflow-x: hidden;
    }
    .header {
        padding: 5px 0;
    }
    .header .container {
        padding: 0 15px;
    }
    .logo-container {
        gap: 5px;
    }
    .logo-img {
        height: 30px;
    }
    .logo-desktop {
        display: none;
    }
    .logo-mobile {
        display: block;
        font-size: 0.55rem;
    }
    .header-contacts {
        gap: 8px;
    }
    .header-contacts .contact-links {
        gap: 6px;
    }
    .header-contacts .contact-links a span {
        display: none;
    }
    .header-contacts .contact-links a i {
        font-size: 1rem;
        margin-right: 0;
    }
    .header-contacts .btn-primary {
        padding: 3px 8px;
        font-size: 0.6rem;
    }
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .feature-card {
        padding: 15px 8px;
    }
    .feature-icon {
        font-size: 1.8rem;
    }
    .feature-card h3 {
        font-size: 1rem;
    }
    .feature-card p {
        font-size: 0.8rem;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .product-img {
        height: 150px;
    }
    .product-info {
        padding: 15px;
    }
    .product-tag-btn {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .step h4 {
        font-size: 1rem;
    }
    .step p {
        font-size: 0.8rem;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .portfolio-item {
        height: 150px;
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .review-card {
        padding: 15px;
    }
    .review-avatar {
        font-size: 2rem;
    }
    .simple-tab {
        top: 100px;
        height: 180px;
        width: 35px;
    }
    .simple-tab.active {
        width: 180px;
    }
    .simple-tab .coupon-code {
        font-size: 1.4rem;
    }
    .simple-tab .coupon-title {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    .simple-tab .coupon-offer {
        font-size: 0.7rem;
        padding: 4px 5px;
    }
    .simple-tab .coupon-hint {
        font-size: 0.65rem;
    }
    .simple-tab .coupon-feedback {
        font-size: 0.6rem;
    }
    .reveal-left, .reveal-right {
        opacity: 1 !important;
        transform: translateX(0) !important;
        transition: none !important;
    }
}
@media (max-width: 768px) and (orientation: landscape) {
    body {
        padding-top: 55px;
    }
    .logo-img {
        height: 28px;
    }
    .logo-mobile {
        font-size: 0.5rem;
    }
    .header-contacts .btn-primary {
        padding: 2px 6px;
        font-size: 0.55rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-img {
        height: 120px;
    }
    .simple-tab {
        top: 80px;
        height: 160px;
        width: 30px;
    }
    .simple-tab.active {
        width: 160px;
    }
    .simple-tab .coupon-code {
        font-size: 1.2rem;
    }
}
@media (max-width: 992px) {
    .reveal-left, .reveal-right {
        opacity: 1 !important;
        transform: translateX(0) !important;
        transition: none !important;
    }
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}
.benefit-card {
    background: white;
    padding: 30px 20px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255,107,53,0.1);
}
.benefit-icon {
    font-size: 2.8rem;
    color: #ff6b35;
    margin-bottom: 20px;
    text-align: center;
}
.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #1e1e1e;
    text-align: left;
}
.benefit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}
.benefit-card ul li {
    margin-bottom: 10px;
}
.benefit-card .point-item {
    display: block;
    position: relative;
    padding-left: 20px;
    color: #5a5a5a;
    font-size: 0.95rem;
    line-height: 1.4;
}
.benefit-card .point-item:before {
    content: "•";
    color: #ff6b35;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -8px;
    line-height: 1;
}
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefit-card {
        padding: 25px 15px;
    }
    .benefit-icon {
        font-size: 2.5rem;
    }
}
.checkbox-group {
    margin: 20px 0 25px;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #4f4f4f;
}
.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #ff6b35;
    cursor: pointer;
}
.checkbox-text {
    line-height: 1.4;
}
.checkbox-text a {
    color: #ff6b35;
    text-decoration: underline;
    transition: color 0.2s;
}
.checkbox-text a:hover {
    color: #e0552a;
}
.navi-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed #ff6b35;
    transition: all 0.2s ease;
    display: inline;
}
.navi-link:hover {
    color: #ff6b35;
    border-bottom-style: solid;
}
.__ymContent,
.__ymHidden,
div[class*="__ym"],
iframe[src*="yandex"],
div[id*="ym_"],
div[style*="position: absolute"][style*="left: -9999px"] {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}
