/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-consent.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cookie-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cookie-content h3 {
    color: #8B5CF6;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cookie-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.cookie-btn.primary {
    background: #FFA500;
    color: white;
}

.cookie-btn.primary:hover {
    background: #FF8C00;
    transform: translateY(-2px);
}

.cookie-btn.secondary {
    background: transparent;
    color: #FFA500;
    border: 2px solid #FFA500;
}

.cookie-btn.secondary:hover {
    background: #FFA500;
    color: white;
}

/* Header */
.header {
    background: #fff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(139, 92, 246, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    background: var(--gr, linear-gradient(105deg, #40006A 0%, #A10073 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: #282828;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #FFA500;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(105deg, #40006A 0%, #A10073 100%);
    padding: 90px 0 0;
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 14px;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-button {
    border-radius: 60px;
background: #F4A600;
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background: #FF8C00;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3);
}

.hero-image img {
    width: 100%;
   display: block;
    height: auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about h2 {
    color: #8B5CF6;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gr, linear-gradient(105deg, #40006A 0%, #A10073 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    
}

.philosophy {
    margin: 60px 0;
    
}

.philosophy h3 {
    color: #8B5CF6;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.machine-types {
   
}

.machine-types h3 {
    color: #8B5CF6;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.machine-grid {
    display: grid;
    
    gap: 2rem;
    max-width: 929px;
    width: 100%;
    margin: 30px 0 0;
}

.machine-grid img {
    width: 100%;
 
   
    border-radius: 15px;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: #F8F4FF;
}

.advantages h2 {
    color: #8B5CF6;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
   background: var(--gr, linear-gradient(105deg, #40006A 0%, #A10073 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.advantage-item {
    background: white;
    padding: 20px;
    border-radius: 20px;
  
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
    transition: transform 0.3s ease;
    border-radius: 30px;
background: linear-gradient(105deg, rgba(64, 0, 106, 0.10) 0%, rgba(161, 0, 115, 0.10) 100%);
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 50px;
   
    margin: 0 0 1.5rem;
    
    border-radius: 20px;
    display: flex;
   
    justify-content: center;
}

.advantage-icon img {
    width: 100%;
   
   
}

.advantage-item h3 {
    color: #8B5CF6;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gr, linear-gradient(105deg, #40006A 0%, #A10073 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.advantage-item p {
    color: #666;
    line-height: 1.5;
    font-size: 14px;
}

/* Machines Section */
.machines {
    padding: 80px 0;
  background: var(--gr, linear-gradient(105deg, #40006A 0%, #A10073 100%));
    color: white;
}

.machines h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
   color: #fff;
}

.machines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.machines-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.machine-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
}

.machine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.machine-card-image {
    width: 100%;
    
    overflow: hidden;
}

.machine-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.machine-card:hover .machine-card-image img {
    transform: scale(1.05);
}

.machine-card-content {
   
}

.machine-card h3 {
    color: #8B5CF6;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gr, linear-gradient(105deg, #40006A 0%, #A10073 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.machine-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.machines-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: white;
}

.reviews h2 {
    color: #8B5CF6;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: var(--gr, linear-gradient(105deg, #40006A 0%, #A10073 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.reviews-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.review-item {
    flex: 0 1 31%;
    background: #F8F4FF;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    border-radius: 30px;
background: linear-gradient(105deg, rgba(64, 0, 106, 0.10) 0%, rgba(161, 0, 115, 0.10) 100%);
}

.review-item::before {
    content: '';
    position: relative;
    top: 0px;
   display: block;
    font-size: 4rem;
    color: #8B5CF6;
    line-height: 1;
    width: 32px;
    height: 32px;
    background-image: url(/assets/images/q.png);
    background-size: contain;
}

.review-stars {
    color: #FFA500;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-item p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.review-author {
    color: #8B5CF6;
    font-weight: 700;
    font-size: 1.1rem;
    background: var(--gr, linear-gradient(105deg, #40006A 0%, #A10073 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(105deg, #40006A 0%, #A10073 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-form h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.contact-form p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.form {
    margin-bottom: 2rem;
    border-radius: 30px;
background: rgba(255, 255, 255, 0.10);
padding: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.submit-btn {
    background: #FFA500;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #FF8C00;
    transform: translateY(-2px);
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-image img {
    width: 100%;
   
    object-fit: cover;
    border-radius: 20px;
}

/* Footer */
.footer {
    background: #1F1F1F;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFA500;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

/* Thank You Page */
.thank-you {
    padding: 120px 0;
    background: linear-gradient(105deg, #40006A 0%, #A10073 100%);
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.checkmark {
    width: 100px;
    height: 100px;
    background: #FFA500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto;
    animation: checkmarkPulse 2s infinite;
}

@keyframes checkmarkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.thank-you h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.thank-you p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.thank-you-actions {
    margin-top: 3rem;
}

.thank-you-actions .contact-info {
    margin-top: 2rem;
    opacity: 0.8;
}

.thank-you-actions .contact-info a {
    color: #FFA500;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .machines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .machines-grid-bottom {
        grid-template-columns: 1fr;
       
        margin: 0 auto 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .hero {
        padding: 120px 0 0px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .machines-grid {
        grid-template-columns: 1fr;
    }
    
    .machines-grid-bottom {
        grid-template-columns: 1fr;
    }
    
    .machine-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-item {
        flex: 0 1 46%;
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-content {
        margin: 20px;
        padding: 30px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .thank-you h1 {
        font-size: 2rem;
    }
}

@media (max-width: 530px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .contact-form h2 {
        font-size: 2rem;
    }

    .reviews-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .about h2,
    .advantages h2,
    .machines h2,
    .reviews h2 {
        font-size: 2rem;
    }
}

              .page {
                padding: 140px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              
                

                