/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: 
        url('Arch13.png') repeat,  /* Граффити-текстура */
        #000000; /* Основной черный цвет */
    
    background-size: cover;  
    background-attachment: fixed;  

    color: #fff;
    font-family: 'Jura', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

a {
    color: inherit;
    text-decoration: none;
    font-size: 25px;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

section {
    padding: 60px 0;
}

/* Header Styles */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.site-header.fixed {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 120px;
}

.phone {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.phone a {
    transition: all 0.3s ease;
}

.phone a:hover {
    color: #ffb700;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
}

/* Добавьте эти стили к вашему CSS файлу */

/* Стили для статусов отправки формы */
.form-status {
    margin-top: 15px;
    font-family: 'Jura', sans-serif;
}

.success-message {
    color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.1);
    padding: 10px;
    border-radius: 5px;
    border-left: 3px solid #4CAF50;
    font-size: 14px;
    text-align: center;
}

.error-message {
    color: #FF5252;
    background-color: rgba(255, 82, 82, 0.1);
    padding: 10px;
    border-radius: 5px;
    border-left: 3px solid #FF5252;
    font-size: 14px;
    text-align: center;
}

/* Стили для кнопки при загрузке */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Дополнительные стили для формы */

/* Стили для группы поля телефона */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.3);
}

.phone-input-wrapper:focus-within {
    border-color: rgba(255, 187, 0, 0.5);
    box-shadow: 0 0 10px rgba(255, 187, 0, 0.2);
}

.phone-prefix {
    padding: 12px 10px;
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(30, 30, 30, 0.5);
    font-family: 'Jura', sans-serif;
    font-size: 16px;
}

.phone-group input {
    border: none;
    background: transparent;
    width: 100%;
}

.phone-group input:focus {
    box-shadow: none;
    border: none;
    outline: none;
}

/* Стили для статусов отправки формы */
.form-status {
    margin-top: 15px;
    font-family: 'Jura', sans-serif;
}

.success-message {
    color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.1);
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid #4CAF50;
    font-size: 18px;
    text-align: center;
    margin: 30px 0;
}

.error-message {
    color: #FF5252;
    background-color: rgba(255, 82, 82, 0.1);
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid #FF5252;
    font-size: 16px;
    text-align: center;
}

/* Стили для кнопки при загрузке */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Анимация для успешной отправки */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-status .success-message {
    animation: fadeIn 0.5s ease forwards;
}

.hidden {
    display: none;
}

/* Стили для поля телеграм */
input#telegram {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="rgba(255,255,255,0.5)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 2L11 13"/><path d="M22 2L15 22L11 13L2 9L22 2Z"/></svg>');
    background-repeat: no-repeat;
    background-position: 10px center;
    padding-left: 35px;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 201.83deg at 78.96% 41.34%, #ffb700 -46.78deg, rgba(2, 12, 0, 0.47) 46.88deg, rgba(0, 0, 0, 0) 92.06deg, #ffb700 313.22deg, rgba(2, 12, 0, 0.47) 406.88deg);
    animation: gradientRotate 20s linear infinite;
    opacity: 0.85;
}

@keyframes gradientRotate {
    0% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(60deg);
    }
    100% {
        filter: hue-rotate(0deg);
    }
}

.hero-content {
    position: relative;
    padding-top: 150px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.since {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

h1 {
    font-size: 42px;
    line-height: 42px;
    max-width: 600px;
    margin-bottom: 30px;
}

.features {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 30px;
}

.features li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    font-size: 24px;
}

.features li:before {
    content: '·';
    position: absolute;
    left: 0;
    top: 0;
}

.order-btn {
    position: relative;
    width: 300px;
    height: 55px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid #FFFFFF;
    border-radius: 25px;
    font-family: 'Jura', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #FFFFFF;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3),
                0 0 20px rgba(255, 187, 0, 0.2);
}

.order-btn:hover {
    background-color: rgba(255, 187, 0, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5),
                0 0 30px rgba(255, 187, 0, 0.4);
    transform: translateY(-3px);
}

.order-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff7300, #ffb700, #ff7300);
    z-index: -1;
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.order-btn:hover::before {
    opacity: 0.7;
}

.order-btn span {
    position: relative;
    z-index: 2;
}

.paint-drip {
    position: absolute;
    right: -40px;
    top: 36px;
    width: 148px;
    height: 151px;
    background-image: url('paint-drip.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    transition: all 0.5s ease;
    transform: translateY(-50px);
    opacity: 0;
}

.order-btn:hover .paint-drip {
    opacity: 1;
    transform: translateY(0);
}

.hero-image {
    position: absolute;
    right: -400px;
    bottom: -100px;
    width: 1100px;
    height: auto;
    z-index: 1;
    transform-origin: bottom right;
    animation: floatImage 8s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* About Section */
.about {
    /* background: linear-gradient(180deg, rgba(255, 187, 0, 0.15) 0%, rgba(0, 0, 0, 0) 87.39%); */
        padding-top: 40px;
}

.about h2 {
    text-align: left;
    margin-bottom: 20px;
}

.about p {
    font-size: 20px;
    margin-bottom: 30px;
    text-align: justify;
    color: rgba(255, 255, 255, 0.7);
}

.gallery-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    box-shadow: 0 8px 25px rgba(255, 187, 0, 0.25);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.image-tooltip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 15px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 2;
    border-top: 1px solid rgba(255, 187, 0, 0.3);
}

.gallery-item:hover .image-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* Styles Section */
.styles {
    padding-top: 60px;
}

.style-cards {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.style-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 16px;
    padding: 16px;
    color: #ffffff;
    width: calc(33.333% - 20px);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.style-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 187, 0, 0.2);
    border: 1px solid rgba(255, 187, 0, 0.3);
}

.style-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
}

.style-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.style-card p {
    font-size: 16px;
}

.price-note {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
    margin-top: 20px;
}

/* Gallery Section */
.gallery {
    padding-top: 60px;
}

.gallery h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.gallery-slider {
    height: 500px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 2;
}

.gallery-image {
    width: 30%;
    height: 90%;
    border-radius: 12px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.gallery-controls {
    margin-top: 20px;
}

.gallery-image .image-tooltip {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-image:hover .image-tooltip {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {
    .gallery-image {
        width: 100%;
        height: 100%;
        border-radius: 12px;
        position: relative;
        background-size: cover;
        background-position: center;
    }
}
/* Founder Section */
.founder {
    padding-top: 100px;
}

.gradient-title {
    font-size: 32px;
    background: linear-gradient(90deg, #ED1250 0%, #5506FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 30px;
}

.founder-card {
    border: 2px solid #FFFFFF;
    border-radius: 30px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(to right, rgba(20, 20, 20, 0.8), rgba(30, 30, 30, 0.5));
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.founder-photo {
    width: 159px;
    height: 159px;
    border-radius: 50%;
    background-image: url('founder.jpg');
    background-size: cover;
    flex-shrink: 0;
    position: relative;
    border: 5px solid transparent;
    background-clip: padding-box;
}

.founder-photo::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(90% + 10px);
    height: calc(90% + 10px);
    border-radius: 50%;
    background: linear-gradient(45deg, #ff007f, #7f00ff, #007fff);
    z-index: -1;
    /* mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
    mask-composite: exclude;
     animation: borderRotate 8s linear infinite; */
}

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.founder-info h4 {
    font-size: 40px;
}

.founder-info p {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials {
    padding-top: 70px;
}

.testimonials-slider {
    border: 2px solid #FFFFFF;
    border-radius: 30px;
    padding: 30px 40px;
    position: relative;
    margin-top: 30px;
    height: 266px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, rgba(20, 20, 20, 0.8), rgba(30, 30, 30, 0.5));
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-slide.active {
    opacity: 1;
    z-index: 1;
}

.testimonial-slide h4 {
    font-size: 40px;
}

.testimonial-slide p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 30px;
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
    color: #fff;
    background-color: rgba(255, 187, 0, 0.2);
    box-shadow: 0 0 15px rgba(255, 187, 0, 0.3);
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #ffb700;
    box-shadow: 0 0 10px rgba(255, 187, 0, 0.5);
}

/* FAQ Section */
.faq {
    padding-top: 60px;
}

.faq h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(30, 30, 30, 0.3);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    background-color: rgba(30, 30, 30, 0.5);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header h3 {
    font-size: 24px;
}

.toggle {
    font-size: 32px;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 187, 0, 0.1);
}

.accordion-item.active .toggle {
    transform: rotate(45deg);
    background-color: rgba(255, 187, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 187, 0, 0.3);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 20px;
}

.accordion-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #000;
}

.contact-container {
    max-width: 82%;
    margin: 0 auto;
    display: flex;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    background: linear-gradient(to right, rgba(20, 20, 20, 0.8), rgba(30, 30, 30, 0.5));
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.contact-left, .contact-right {
    flex: 1;
    padding: 40px;
}

.contact-left h3, .contact-right h3 {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-left p, .contact-right p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.contact-info {
    margin-bottom: 60px;
}

.contact-info p {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-info a {
    color: #ffb700;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 20px;
    position: absolute;
   /* bottom: 40px;*/
}

.social-link {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    color: #fff;
    font-family: 'Jura', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: rgba(255, 187, 0, 0.5);
    box-shadow: 0 0 10px rgba(255, 187, 0, 0.2);
    outline: none;
}

.submit-btn {
    width: 100%;
    background-color: rgba(255, 187, 0, 0.1);
    border: 1px solid rgba(255, 187, 0, 0.5);
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    font-family: 'Jura', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 0 10px rgba(255, 187, 0, 0.2);
}

.submit-btn:hover {
    background-color: rgba(255, 187, 0, 0.2);
    box-shadow: 0 0 15px rgba(255, 187, 0, 0.3);
    transform: translateY(-3px);
}

.form-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
    text-align: center;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.social {
    display: flex;
    gap: 15px;
}

.social-link {
    font-size: 16px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 187, 0, 0.2);
    border-color: rgba(255, 187, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 187, 0, 0.2);
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .hero-image {
        width: 800px;
        right: -200px;
    }
    
    .style-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .style-card {
        width: 100%;
        max-width: 550px;
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 36px;
        line-height: 40px;
    }
    
    .features li {
        font-size: 20px;
    }
    
    .hero-image {
        width: 600px;
        right: -150px;
    }
    
    .about p {
        font-size: 18px;
    }

    .logo {
        max-width: 90px;
    }

    .hero-content {
        padding-top: 70px;
    }

    .gallery-preview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .founder-photo {
        margin-bottom: 20px;
    }
    
    .accordion-header h3 {
        font-size: 20px;
    }
    
    .contact-container {
        max-width: 90%;
    }
    
    .contact-left h3, .contact-right h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    /* Mobile styles based on the image example */
    body {
        background-color: #000;
    }
    
    .site-header {
        padding: 10px 0;
        position: absolute;
        z-index: 10;
        background-color: transparent;
    }
    
    .site-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        max-width: 100px;
        margin-top: 10px;
        padding: 10px;
    }
    
    .logo img {
        max-width: 100%;
        height: auto;
    }
    
    .phone a {
        font-size: 20px;
        font-weight: 400;
        color: #fff;
    }
    
    /* Hero Section для мобильных */
    .hero {
        min-height: 100vh;
        position: relative;
        display: flex;
        align-items: flex-end;
        background-color: #000;
        overflow: hidden;
        padding: 0;
    }
    
    .hero-gradient {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background: linear-gradient(to top, rgba(151, 230, 0, 0.8) 0%, rgba(0, 0, 0, 0) 40%);
        z-index: 2;
    }
    
    .hero-content {
        position: relative;
        z-index: 3;
        padding: 30px 15px 40px;
        width: 100%;
         background: rgba(0, 0, 0, 0.125); /* Полупрозрачный фон */
         backdrop-filter: blur(40px); /* Размытие фона */
         -webkit-backdrop-filter: blur(3px); /* Поддержка Safari */
         mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
         -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
    }
    
    .hero-image {
        position: absolute;
        top: -3%;
        right: 1%;
        width: 105%;
        height: 100vh;
        object-fit: cover;
        z-index: 1;
    }
    
    .since {
        color: #fff;
        font-size: 22px;
        margin-bottom: 5px;
        /* opacity: 1 */
    }
    
    h1 {
        font-size: 42px;
        line-height: 1.2;
        color: #fff;
        margin-bottom: 20px;
        font-weight: 700;
    }
    
    .features {
        padding: 0;
        margin: 0 0 30px 0;
        list-style: none;
    }
    
    .features li {
        color: #fff;
        font-size: 20px;
        margin-bottom: 8px;
        position: relative;
        padding-left: 15px;
    }
    
    .features li:before {
        content: '·';
        position: absolute;
        left: 0;
        top: 0;
    }
    
    .order-btn {
        position: relative;
        background-color: #000;
        color: #fff;
        border: 2px solid #fff;
        padding: 12px 20px;
        font-size: 20px;
        font-weight: 700;
        border-radius: 50px;
        width: 100%;
        max-width: 300px;
        cursor: pointer;
        overflow: visible;
        z-index: 2;
    }
    
    .paint-drip {
        position: absolute;
        width: 120px;
        height: 100px;
        display: none;
        background-image: url('paint-drip.png');
        background-size: contain;
        background-repeat: no-repeat;
        right: -10px;
        bottom: -80px;
        z-index: 1;
        opacity: 1;
        transform: translateY(0);
    }
    
    /* При прокрутке - фиксированный хедер */
    .site-header.fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        z-index: 100;
    }
    
    /* Other sections adjustments */
    section {
        padding: 40px 0;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .about p {
        font-size: 16px;
    }
    
    .gallery-preview {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 220px;
    }
    
    .gallery-slider {
        height: 300px;
    }
    
    /* Instagram-style for founder card and testimonials */
    .founder-card, .testimonials-slider {
        background-color: rgba(30, 30, 30, 0.8);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 15px;
        padding: 15px;
        display: block;
    }
    
    .founder-photo {
        width: 80px;
        height: 80px;
        margin-right: 15px;
        margin-bottom: 140px;
        float: left;
    }
    
    .founder-info h4 {
        font-size: 18px;
        margin-bottom: 10px;
        text-align: left;
    }
    
    .founder-info p {
        font-size: 14px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.8);
        text-align: left;
    }

    
    
    .testimonial-slide {
        position: relative;
        opacity: 1;
        height: auto;
        padding: 10px 0;
    }
    
    .testimonial-slide:not(.active) {
        display: none;
    }
    
    .testimonial-slide h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .testimonial-slide p {
        font-size: 14px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.8);
    }
    
    /* Contact form mobile */
    .contact-container {
        flex-direction: column;
        max-width: 100%;
        border-radius: 20px;
    }
    
    .contact-left, .contact-right {
        padding: 30px 20px;
    }
    
    .social-links {
        position: static;
        margin-top: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

/* CSS для отображения разных изображений на мобильной и ПК версиях */

/* Общие стили для изображения героя */
.hero-image {
    position: absolute;
    z-index: 1;
    transform-origin: bottom right;
    animation: floatImage 8s ease-in-out infinite;
}

/* Десктопная версия изображения */
.desktop-image {
    display: block;
    right: -220px;
    bottom: -100px;
    width: 1100px;
    height: auto;
}

/* Мобильная версия изображения */
.mobile-image {
    display: none;
}

/* Медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
    .desktop-image {
        display: none;
    }
    
    .mobile-image {
        display: block;
        top: -40px;
        right: 0%;
        width: 120%;
        height: 100vh;
        object-fit: cover;
    }
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}