/* Змінні */
:root {
    --primary-color: #ff5377;
    --secondary-color: #333;
    --accent-color: #ff4b6e;
    --text-color: #333;
    --light-text: #fff;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --gradient: linear-gradient(45deg, #ff4b6e, #ff758c);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --animation-duration: 0.3s;
    --animation-easing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-color: #e2e2e2;
    --success-color: #28a745;
    --font-main: 'Roboto', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Базові стилі */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Загальні стилі для секцій */
.section {
    padding: 80px 0;
}

/* Світлий фон для секцій */
.bg-light {
    background-color: var(--light-bg);
}

/* Прибираємо підкреслення у всіх посилань */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Типографіка */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

/* Хедер */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: var(--box-shadow);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    color: var(--accent-color);
}

.note-icon {
    color: var(--primary-color);
    margin: 0 2px;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list a {
    color: var(--secondary-color);
    font-weight: 500;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-button {
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: #fff !important;
    border-radius: 4px;
    font-weight: 500;
}

.nav-button:hover {
    background-color: #d63f5d;
}

/* Герой секція */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideshow 24s linear infinite;
    z-index: -1;
}

.hero-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-background:nth-child(1) {
    animation-delay: 0s;
}

.hero-background:nth-child(2) {
    animation-delay: 4s;
}

.hero-background:nth-child(3) {
    animation-delay: 8s;
}

.hero-background:nth-child(4) {
    animation-delay: 12s;
}

.hero-background:nth-child(5) {
    animation-delay: 16s;
}

.hero-background:nth-child(6) {
    animation-delay: 20s;
}

@keyframes slideshow {
    0%, 17% {
        opacity: 1;
    }
    20%, 97% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--light-text);
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    margin: 0 15px 15px;
}

.hero-feature i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Кнопки */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: #d63f5d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-blink {
    animation: blink 2s infinite;
}

@keyframes blink {
    0% {
        background-color: var(--primary-color);
    }
    50% {
        background-color: #d63f5d;
    }
    100% {
        background-color: var(--primary-color);
    }
}

/* Послуги */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3, .service-card p, .service-card .price {
    padding: 0 20px;
}

.service-card h3 {
    margin-top: 20px;
}

.service-card p {
    margin-bottom: 20px;
}

.service-card .price {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    padding-bottom: 20px;
}

/* Процес роботи */
.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
}

/* Відгуки */
.reviews-slider {
    margin: 50px 0;
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 300px;
    margin: 0 15px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.review-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.review-author h4 {
    margin-bottom: 0;
}

.review-text {
    font-style: italic;
}

.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-nav button {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border: none;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.slider-nav button.active {
    background-color: var(--primary-color);
}

.more-reviews {
    text-align: center;
    margin-top: 30px;
}

/* Переваги та гарантії */
.benefits-grid, .guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-card, .guarantee-card {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.benefit-card:hover, .guarantee-card:hover {
    transform: translateY(-5px);
}

.benefit-card i, .guarantee-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.guarantee-section {
    padding: 80px 0;
    background-color: #fff;
}

/* Форма замовлення */
.order-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

select {
    cursor: pointer;
}

.conditional {
    display: none;
}

.conditional.active {
    display: block;
}

small {
    color: #666;
    font-size: 0.85rem;
}

/* Футер */
.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-info {
    flex: 2;
    min-width: 300px;
    margin-bottom: 30px;
}

.footer-nav, .footer-social {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer h3 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a, .footer-social a {
    color: #ccc;
}

.footer-nav a:hover, .footer-social a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

/* Viber кнопка */
.viber-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.viber-fixed a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #665cac;
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.viber-fixed a:hover {
    transform: scale(1.1);
    background-color: #5a4f9a;
}

.viber-fixed i {
    font-size: 28px;
    color: #ffffff;
}

/* Візуально приховуємо текст для скрін-рідерів */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Чат-віджет */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 100;
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: none;
}

.chat-widget.active {
    display: block;
}

.chat-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-body {
    height: 300px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}

.chat-body textarea {
    resize: none;
    border: none;
    border-top: 1px solid #eee;
    padding: 10px;
    height: 80px;
}

.chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 90px;
    z-index: 100;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.chat-toggle i {
    font-size: 1.2rem;
}

/* Адаптивний дизайн */
@media (max-width: 991px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .promo-banner {
        flex-direction: column;
    }
    
    .promo-content {
        padding: 30px;
    }
    
    .promo-image {
        width: 100%;
        height: 300px;
        border-radius: 0;
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .step {
        flex: 0 0 48%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    /* Зменшуємо відступи секцій на мобільних */
    .section {
        padding: 60px 0;
    }
    
    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle br {
        display: none;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-feature {
        margin-bottom: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .proof-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .proof-item {
        margin-bottom: 30px;
    }
    
    .step {
        flex: 0 0 100%;
    }
    
    .reviews-track {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
    }
    
    .review-card {
        flex: 0 0 90%;
        scroll-snap-align: center;
    }
    
    .benefit-card, .guarantee-card {
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .order-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    /* Ще менші відступи для маленьких екранів */
    .section {
        padding: 40px 0;
    }
    
    .hero {
        height: 450px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .countdown-item {
        padding: 8px 15px;
        margin-right: 10px;
    }
    
    .countdown-item span {
        font-size: 1.5rem;
    }
    
    .chat-widget {
        width: 90%;
        right: 5%;
        left: 5%;
    }
}

/* Доступність */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Додаємо нові стилі для демо-секції */
.demo-section {
    background: var(--gradient);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.demo-section h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.lead {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.demo-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.old-price {
    font-size: 2.5rem;
    text-decoration: line-through;
    opacity: 0.7;
    color: var(--white);
}

.new-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
}

.demo-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 4rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Оновлені стилі для вибору стилю */
.styles-section {
    padding: 80px 0;
}

.styles-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.style-button {
    background: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
}

.style-button i {
    font-size: 1.2rem;
}

.style-button:hover,
.style-button.active {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-2px);
}

/* Оновлені стилі для цін */
.pricing-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 4rem auto 0;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.5;
    margin-right: 1rem;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.pricing-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.pricing-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 75, 110, 0.2);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.benefit-card p {
    color: var(--text-color);
    opacity: 0.8;
}

.more-reviews {
    text-align: center;
    margin-top: 2rem;
}

.more-reviews .cta-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.more-reviews .cta-button:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.conditional {
    display: none;
}

/* Мобільне меню */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 5px 0;
    transition: 0.4s;
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        transform: translateY(-20px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-list.active {
        display: flex;
        flex-direction: column;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-list li {
        margin: 0.5rem 0;
    }

    .nav-list a {
        padding: 1rem;
        border-radius: 8px;
        display: block;
        transition: background 0.2s ease;
    }

    .nav-list a:hover {
        background: rgba(255, 75, 110, 0.05);
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: var(--primary-color);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn span {
        background: var(--white);
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Стилі для слайдера відгуків */
.reviews-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    flex: 0 0 calc(33.333% - 2rem);
    margin: 0 1rem;
    opacity: 0.7;
    transform: scale(0.9);
    transition: all 0.5s ease-in-out;
}

.review-card.active {
    opacity: 1;
    transform: scale(1);
}

.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-color);
    opacity: 0.3;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.slider-dot.active {
    opacity: 1;
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 calc(100% - 2rem);
    }
}

/* Додати фокус-стайл для інтерактивних елементів */
a:focus, button:focus, input:focus, select:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* Покращити контрастність */
:root {
    --text-color: #333;
    --primary-color: #ff5377; /* Більш контрастний відтінок */
}

/* Стилі для блоку з таймером */
.promo-section {
    background: var(--gradient);
    color: var(--white);
    padding: 80px 0;
}

.promo-banner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.promo-content {
    flex: 1;
}

.promo-content h2 {
    color: var(--white);
    text-align: left;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.promo-list {
    list-style: none;
    margin: 2rem 0;
    font-size: 1.2rem;
}

.promo-list li {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
}

.countdown {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.countdown-item {
    text-align: center;
    background: rgba(255,255,255,0.15);
    padding: 1.5rem 2.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.countdown-item span {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.countdown-item small {
    font-size: 1rem;
    opacity: 0.9;
}

/* Мобільна версія промо-секції */
@media (max-width: 768px) {
    .promo-banner {
        grid-template-columns: 1fr;
    }
    
    .promo-image {
        max-height: 300px;
    }

    .promo-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .countdown {
        justify-content: center;
    }

    .countdown-item {
        padding: 1rem 1.5rem;
    }

    .countdown-item span {
        font-size: 2rem;
    }
}

.guarantee-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.guarantee-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-5px);
}

.guarantee-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.guarantee-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.guarantee-card p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

.social-proof {
    background: var(--gradient);
    color: var(--white);
    padding: 80px 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.proof-item i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.proof-item .count {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    animation: countUp 2s ease-out forwards;
    opacity: 0;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.proof-item span:last-child {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Мобільна версія */
@media (max-width: 768px) {
    .social-proof {
        padding: 3rem 1rem;
    }

    .proof-item {
        padding: 1.5rem;
    }

    .proof-item .count {
        font-size: 2.5rem;
    }

    .proof-item span:last-child {
        font-size: 1rem;
    }
}

.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    width: 300px;
    overflow: hidden;
    display: none;
}

.chat-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-body {
    padding: 1rem;
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.chat-widget textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    resize: none;
    height: 80px;
}

.chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-toggle i {
    font-size: 1.5rem;
}

/* Анімації */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-blink {
    animation: pulse 1.5s infinite;
    transition: all 0.3s ease;
}

.countdown-item {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(255, 223, 0, 0.5);
    }
    to {
        box-shadow: 0 0 15px rgba(255, 223, 0, 0.8);
    }
}

.promo-list li {
    position: relative;
    padding-left: 30px;
    margin: 15px 0;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Затримки для анімації елементів списку */
.promo-list li:nth-child(1) { animation-delay: 0.2s; }
.promo-list li:nth-child(2) { animation-delay: 0.4s; }
.promo-list li:nth-child(3) { animation-delay: 0.6s; }
.promo-list li:nth-child(4) { animation-delay: 0.8s; }
.promo-list li:nth-child(5) { animation-delay: 1s; }

/* Стилі для зображення */
.promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    max-height: 400px;
}

@media (max-width: 768px) {
    .promo-banner {
        grid-template-columns: 1fr;
    }
    
    .promo-image {
        max-height: 300px;
    }
} 