/* International QR Menu Styles - в стиле главной страницы */
/* Более специфичные селекторы для избежания конфликтов */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Menu — всегда видимое (фиксированное) */
.top-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    padding: 8px 0;
    z-index: 1000;
}

.top-menu-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #FFC709;
}

/* Header */
.header {
    background: linear-gradient(135deg, #FFC709 0%, #FFD700 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFC709 0%, #FFD700 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Убрать белую полосу между меню и первым блоком на services-page */
body.page-services-page .hero {
    margin-top: -56px;
    padding-top: calc(56px + 2.5rem);
    padding-bottom: 3rem;
}

/* То же для страницы Сайт ресторана */
body.page-restaurant-website .hero {
    margin-top: -56px;
    padding-top: calc(56px + 2.5rem);
    padding-bottom: 3rem;
}

/* То же для страницы Модуль меню (services-widget) */
body.page-services-widget .hero {
    margin-top: -56px;
    padding-top: calc(56px + 2.5rem);
    padding-bottom: 3rem;
}

/* То же для страницы Мультиканальный мессенджер */
body.page-multichannel-messenger .hero {
    margin-top: -56px;
    padding-top: calc(56px + 2.5rem);
    padding-bottom: 3rem;
}

/* То же для страницы ИИ бот (ai-messenger-autopilot) */
body.page-ai-messenger-autopilot .hero {
    margin-top: -56px;
    padding-top: calc(56px + 2.5rem);
    padding-bottom: 3rem;
}

/* То же для страницы Бронирование столиков (table-booking) */
body.page-table-booking .hero {
    margin-top: -56px;
    padding-top: calc(56px + 2.5rem);
    padding-bottom: 3rem;
}

/* То же для страницы ИИ ассистент (ai-messenger-assistant) */
body.page-ai-messenger-assistant .hero {
    margin-top: -56px;
    padding-top: calc(56px + 2.5rem);
    padding-bottom: 3rem;
}

/* Чередование фонов: белый — серый */
body.page-ai-messenger-assistant .features { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
body.page-ai-messenger-assistant .problem-solution { background: #fff; }
body.page-ai-messenger-assistant .benefits { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
body.page-ai-messenger-assistant .how-it-works { background: #fff; }
body.page-ai-messenger-assistant .see-the-difference { background: #f8fafc; }
body.page-ai-messenger-assistant .pricing { background: #fff; }
body.page-ai-messenger-assistant .faq { background: #f8fafc; }

/* Страница Мобильное приложение (mobile-app) */
body.page-mobile-app .hero {
    margin-top: -56px;
    padding-top: calc(56px + 2.5rem);
    padding-bottom: 3rem;
}
body.page-mobile-app .section.features { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
/* Возможности: карточки по центру, во второй строке две карточки тоже по центру */
body.page-mobile-app .section.features .features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
body.page-mobile-app .section.features .feature-card {
    width: calc(33.333% - 27px);
    min-width: 260px;
    max-width: 360px;
}
@media (max-width: 900px) {
    body.page-mobile-app .section.features .feature-card {
        width: calc(50% - 20px);
    }
}
@media (max-width: 500px) {
    body.page-mobile-app .section.features .feature-card {
        width: 100%;
        max-width: none;
    }
}
body.page-mobile-app .section.problem-solution { background: #fff; }
body.page-mobile-app .section.benefits { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
/* Преимущества: по две карточки на строку */
body.page-mobile-app .section.benefits .benefits-grid.benefits-grid--cards {
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 500px) {
    body.page-mobile-app .section.benefits .benefits-grid.benefits-grid--cards {
        grid-template-columns: 1fr;
    }
}
body.page-mobile-app .section.how-it-works { background: #fff; }
body.page-mobile-app .section.see-the-difference { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
body.page-mobile-app .section.pricing { background: #fff; }
body.page-mobile-app .section.faq { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }

/* mobile-app: «Как это работает» — первая строка 3 карточки, вторая строка 2 по центру экрана */
body.page-mobile-app .steps--mobile-app {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    margin-top: 60px;
}
body.page-mobile-app .steps--mobile-app .step:nth-child(1) {
    grid-column: 1 / 3;
}
body.page-mobile-app .steps--mobile-app .step:nth-child(2) {
    grid-column: 3 / 5;
}
body.page-mobile-app .steps--mobile-app .step:nth-child(3) {
    grid-column: 5 / 7;
}
body.page-mobile-app .steps--mobile-app .step:nth-child(4) {
    grid-column: 2 / 4;
}
body.page-mobile-app .steps--mobile-app .step:nth-child(5) {
    grid-column: 4 / 6;
}
@media (max-width: 900px) {
    body.page-mobile-app .steps--mobile-app {
        grid-template-columns: 1fr;
    }
    body.page-mobile-app .steps--mobile-app .step:nth-child(1),
    body.page-mobile-app .steps--mobile-app .step:nth-child(2),
    body.page-mobile-app .steps--mobile-app .step:nth-child(3),
    body.page-mobile-app .steps--mobile-app .step:nth-child(4),
    body.page-mobile-app .steps--mobile-app .step:nth-child(5) {
        grid-column: auto;
    }
}

/* mobile-app: блок «Увидите разницу» — только текст, без кнопки и демо */
body.page-mobile-app .see-the-difference--text-only .see-the-difference__content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
body.page-mobile-app .see-the-difference--text-only .section-title {
    margin-bottom: 1rem;
    color: #000;
}
body.page-mobile-app .see-the-difference--text-only p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #374151;
}
body.page-mobile-app .see-the-difference--text-only p:last-child {
    margin-bottom: 0;
}

/* Простая цена без тарифов (mobile-app) */
.pricing-simple {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    margin: 1rem 0;
}

/* То же для страницы Онлайн-заказ блюд (online-food-ordering) */
body.page-online-food-ordering .hero {
    margin-top: -56px;
    padding-top: calc(56px + 2.5rem);
    padding-bottom: 3rem;
}

/* То же для страницы Кнопки быстрых контактов (msg-icons) */
body.page-msg-icons .hero {
    margin-top: -56px;
    padding-top: calc(56px + 2.5rem);
    padding-bottom: 3rem;
}

/* То же для страницы Модуль чата для сайта (chat-widget) */
body.page-chat-widget .hero {
    margin-top: -56px;
    padding-top: calc(56px + 2.5rem);
    padding-bottom: 3rem;
}

/* То же для страницы Приём онлайн-платежей (online-payments) */
body.page-online-payments .hero {
    margin-top: -56px;
    padding-top: calc(56px + 2.5rem);
    padding-bottom: 3rem;
}

/* online-payments: блок «Увидите разницу» — только текст по центру */
body.page-online-payments .see-the-difference--centered .see-the-difference__content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
body.page-online-payments .see-the-difference--centered .section-title {
    margin-bottom: 1rem;
    color: #000;
}
body.page-online-payments .see-the-difference--centered p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #374151;
}
body.page-online-payments .see-the-difference--centered p:last-child {
    margin-bottom: 0;
}

/* online-payments: чередование фонов секций — белый / серый */
body.page-online-payments .section.features {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
body.page-online-payments .section.problem-solution {
    background: #fff;
}
body.page-online-payments .section.benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
body.page-online-payments .section.how-it-works {
    background: #fff;
}
body.page-online-payments .section.see-the-difference {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
body.page-online-payments .section.pricing {
    background: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Language Currency Selector */
.language-currency-selector {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.selector-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.selector-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.selector-group label {
    font-weight: bold;
    color: #000;
    font-size: 1.1rem;
}

.selector-group select {
    padding: 12px 20px;
    border: 2px solid #FFC709;
    border-radius: 10px;
    background: #fff;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.selector-group select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 199, 9, 0.2);
}

.selector-group select option {
    padding: 10px;
    font-size: 1rem;
}

/* Auto Detection */
.auto-detection {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 25px;
    margin: 30px auto;
    max-width: 500px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease-out;
}

.auto-detection-icon {
    font-size: 1.2rem;
    color: #FFC709;
}

.auto-detection span {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.cta-button {
    display: inline-block;
    background: #000;
    color: #FFC709;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.hero-buttons .cta-button {
    margin-top: 0;
}

.cta-button--outline {
    background: transparent;
    color: #000;
    border: 2px solid #000;
    box-shadow: none;
}

.cta-button--outline:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #000;
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
    color: #000;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* What is it Section */
.what-is-it {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.what-is-it .content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.what-is-it p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #555;
}

.what-is-it p:last-child {
    margin-bottom: 0;
}

/* Problem Solution Section */
.problem-solution {
    background: #fff;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 2rem;
}

.problem-card {
    background: #f8fafc;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #FFC709;
    transition: all 0.25s ease;
    box-shadow: none;
}

.problem-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border-color: rgba(255, 199, 9, 0.3);
}

.problem-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #000;
    font-weight: bold;
}

.problem-card p {
    color: #555;
    line-height: 1.55;
    font-size: 0.95rem;
    margin: 0;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

/* Возможности — 3 карточки в ряд, цветные иконки Font Awesome */
.features-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .features-grid--three {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid--three {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: #fff;
    padding: 1.25rem 1.25rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
    border: 1px solid #e5e7eb;
}

/* Первая строка: иконка слева, заголовок справа */
.feature-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}

.feature-card-header .feature-icon--color {
    margin-bottom: 0;
    flex-shrink: 0;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: rgba(255, 199, 9, 0.4);
}

.feature-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    display: block;
}

.feature-icon--color {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
}

.feature-icon--color i {
    font-size: 1.5rem;
}

/* Цветные иконки в карточках Возможности */
.feature-card:nth-child(1) .feature-icon--color { background: rgba(37, 99, 235, 0.12); }
.feature-card:nth-child(1) .feature-icon--color i { color: #2563eb; }
.feature-card:nth-child(2) .feature-icon--color { background: rgba(249, 115, 22, 0.12); }
.feature-card:nth-child(2) .feature-icon--color i { color: #ea580c; }
.feature-card:nth-child(3) .feature-icon--color { background: rgba(13, 148, 136, 0.12); }
.feature-card:nth-child(3) .feature-icon--color i { color: #0d9488; }
.feature-card:nth-child(4) .feature-icon--color { background: rgba(124, 58, 237, 0.12); }
.feature-card:nth-child(4) .feature-icon--color i { color: #7c3aed; }
.feature-card:nth-child(5) .feature-icon--color { background: rgba(22, 163, 74, 0.12); }
.feature-card:nth-child(5) .feature-icon--color i { color: #16a34a; }
.feature-card:nth-child(6) .feature-icon--color { background: rgba(59, 130, 246, 0.12); }
.feature-card:nth-child(6) .feature-icon--color i { color: #3b82f6; }

.feature-card-header h3,
.feature-card h3 {
    font-size: 1.05rem;
    margin: 0;
    color: #000;
    font-weight: bold;
}

.feature-card p {
    color: #555;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

/* Benefits Section — серый фон как у Возможностей */
.benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.benefit-category {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border-top: 6px solid #FFC709;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.benefit-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.benefit-category h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #000;
    font-weight: bold;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefit-list li:last-child {
    margin-bottom: 0;
}

/* Преимущества — карточки (компактно, в стиле страницы) */
.benefits-grid--cards {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

/* Преимущества — 3 колонки на десктопе, 2 на мобилках (страница Сайт ресторана) */
.benefits-grid--three-col {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .benefits-grid--three-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .benefits-grid--three-col {
        grid-template-columns: 1fr;
    }
}

/* Преимущества — 2 колонки (3 строки) на services-widget */
.benefits-grid--two-col {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 600px) {
    .benefits-grid--two-col {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: #fff;
    padding: 1.25rem 1.25rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border-color: rgba(255, 199, 9, 0.4);
}

.benefit-card .benefit-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Иконки Font Awesome в блоке Преимущества — цветные, посередине карточки */
.benefit-icon--fa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.benefit-icon--fa i {
    font-size: 1.25rem;
}

.benefit-card:nth-child(1) .benefit-icon--fa { background: rgba(22, 163, 74, 0.12); }
.benefit-card:nth-child(1) .benefit-icon--fa i { color: #16a34a; }
.benefit-card:nth-child(2) .benefit-icon--fa { background: rgba(59, 130, 246, 0.12); }
.benefit-card:nth-child(2) .benefit-icon--fa i { color: #3b82f6; }
.benefit-card:nth-child(3) .benefit-icon--fa { background: rgba(249, 115, 22, 0.12); }
.benefit-card:nth-child(3) .benefit-icon--fa i { color: #ea580c; }
.benefit-card:nth-child(4) .benefit-icon--fa { background: rgba(124, 58, 237, 0.12); }
.benefit-card:nth-child(4) .benefit-icon--fa i { color: #7c3aed; }
.benefit-card:nth-child(5) .benefit-icon--fa { background: rgba(234, 179, 8, 0.2); }
.benefit-card:nth-child(5) .benefit-icon--fa i { color: #ca8a04; }
.benefit-card:nth-child(6) .benefit-icon--fa { background: rgba(236, 72, 153, 0.12); }
.benefit-card:nth-child(6) .benefit-icon--fa i { color: #db2777; }

.benefit-card p {
    margin: 0;
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.5;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFC709;
    font-weight: bold;
    font-size: 1.2rem;
    background: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* How it works Section */
.how-it-works {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    background: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFC709 0%, #FFD700 100%);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(255, 199, 9, 0.3);
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #000;
    font-weight: bold;
}

.step p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Cases Section */
.cases {
    background: #fff;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.case-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border-left: 6px solid #FFC709;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.case-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #000;
    font-weight: bold;
}

.case-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.case-result {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #FFC709;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Pricing Section */
.pricing {
    background: #fff;
}

.section.pricing.pricing--gray-bg {
    background: #f3f4f6;
}

.pricing-cta {
    text-align: center;
}

.pricing-cta .pricing-button-wrap {
    margin-top: 1.5rem;
}

/* Увидите разницу — просто текст (без карточки) */
.see-the-difference .see-the-difference-desc {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
    color: #374151;
}
.see-the-difference .see-the-difference-cta {
    margin-top: 1rem;
    text-align: center;
}

/* Увидите разницу — один столбец (online-food-ordering и др.) */
.see-the-difference__content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.see-the-difference__content .section-title {
    margin-bottom: 1rem;
}
.see-the-difference__content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #374151;
}
.see-the-difference__content .pricing-button-wrap {
    margin-top: 1.5rem;
}

.pricing-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 500px;
    margin: 60px auto 0;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFC709, #FFD700);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.pricing-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #000;
    font-weight: bold;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #FFC709;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(255, 199, 9, 0.3);
}

.price-period {
    color: #666;
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 35px;
}

.pricing-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.5;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFC709;
    font-weight: bold;
    font-size: 1.2rem;
    background: #f8f9fa;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQ Section */
.faq {
    background: #fff;
}

.faq-grid {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.faq-question {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    cursor: pointer;
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #FFC709;
    transition: transform 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

.faq-answer.show {
    padding: 25px;
    max-height: 300px;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #FFC709 0%, #FFD700 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.2;
}

.final-cta p {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 40px 0;
}

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

.footer-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FFC709;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Плавные переходы для всех интерактивных элементов */
.feature-card, .benefit-category, .step, .case-card, .pricing-card, .problem-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Улучшенные тени */
.feature-card:hover, .benefit-category:hover, .step:hover, .case-card:hover, .pricing-card:hover, .problem-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .language-currency-selector {
        flex-direction: column;
        gap: 20px;
    }
    
    .selector-group {
        width: 100%;
        max-width: 300px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .final-cta {
        padding: 60px 0;
    }
    
    .what-is-it .content {
        padding: 30px 20px;
    }
    
    .pricing-card {
        margin: 40px auto 0;
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .problem-card, .feature-card, .benefit-category, .step, .case-card, .pricing-card {
        margin-bottom: 20px;
    }
    
    .language-currency-selector {
        margin: 30px 0;
    }
    
    .auto-detection {
        margin: 20px auto;
        padding: 12px 20px;
    }
    
    .what-is-it .content {
        padding: 25px 15px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
}

/* --- ai-messenger-autopilot: компактные шаги «Как это работает» --- */
.steps--compact {
    gap: 24px;
    margin-top: 2rem;
}
/* Десктоп: первая строка — 3 карточки, вторая — 2 по центру */
@media (min-width: 901px) {
    .steps--compact {
        grid-template-columns: repeat(6, 1fr);
    }
    .steps--compact .step:nth-child(1) { grid-column: 1 / 3; }
    .steps--compact .step:nth-child(2) { grid-column: 3 / 5; }
    .steps--compact .step:nth-child(3) { grid-column: 5 / 7; }
    .steps--compact .step:nth-child(4) { grid-column: 2 / 4; }
    .steps--compact .step:nth-child(5) { grid-column: 4 / 6; }
}
@media (max-width: 900px) {
    .steps--compact .step:nth-child(n) { grid-column: auto; }
}
.steps--compact .step {
    padding: 24px 18px;
    border-radius: 14px;
}
.steps--compact .step-number {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    margin-bottom: 14px;
}
.steps--compact .step h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.steps--compact .step p {
    font-size: 0.95rem;
}

/* --- ai-messenger-autopilot: блок «Увидите разницу» с телефоном и диалогом --- */
.see-the-difference .ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.see-the-difference .ai-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.see-the-difference .ai-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}
.see-the-difference .ai-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Рамка телефона с диалогом (ai-messenger-autopilot и ai-messenger-assistant) */
.page-ai-messenger-autopilot .ai-phone-mockup,
.page-ai-messenger-assistant .ai-phone-mockup {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}
.page-ai-messenger-autopilot .ai-phone-mockup .phone-frame,
.page-ai-messenger-assistant .ai-phone-mockup .phone-frame {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    pointer-events: none;
    vertical-align: top;
}
.page-ai-messenger-autopilot .ai-phone-mockup .phone-screen,
.page-ai-messenger-assistant .ai-phone-mockup .phone-screen {
    position: absolute;
    top: 6.2%;
    left: 4.5%;
    right: 4.5%;
    bottom: 5.8%;
    z-index: 1;
    background: transparent;
    overflow: visible;
    display: flex;
    flex-direction: column;
}
.page-ai-messenger-autopilot .ai-phone-mockup .phone-chat,
.page-ai-messenger-assistant .ai-phone-mockup .phone-chat {
    padding: 14px 10px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-height: 0;
}
.page-ai-messenger-autopilot .ai-phone-mockup .chat-bubble,
.page-ai-messenger-assistant .ai-phone-mockup .chat-bubble {
    padding: 8px 12px;
    border-radius: 14px;
    font-size: 12px;
    line-height: 1.4;
    max-width: 88%;
    word-wrap: break-word;
}
.page-ai-messenger-autopilot .ai-phone-mockup .chat-bubble--guest,
.page-ai-messenger-assistant .ai-phone-mockup .chat-bubble--guest {
    align-self: flex-end;
    background: #e8e8ed;
    color: #000;
    border-bottom-right-radius: 4px;
}
.page-ai-messenger-autopilot .ai-phone-mockup .chat-bubble--assistant,
.page-ai-messenger-assistant .ai-phone-mockup .chat-bubble--assistant {
    align-self: flex-start;
    background: #fff;
    color: #000;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
    .see-the-difference .ai-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .page-ai-messenger-autopilot .ai-phone-mockup,
    .page-ai-messenger-assistant .ai-phone-mockup {
        max-width: 220px;
    }
    .page-ai-messenger-autopilot .ai-phone-mockup .phone-screen,
    .page-ai-messenger-assistant .ai-phone-mockup .phone-screen {
        top: 6.5%;
        left: 5%;
        right: 5%;
        bottom: 6%;
    }
    .page-ai-messenger-autopilot .ai-phone-mockup .phone-chat,
    .page-ai-messenger-assistant .ai-phone-mockup .phone-chat {
        padding: 10px 8px 14px;
        gap: 8px;
    }
    .page-ai-messenger-autopilot .ai-phone-mockup .chat-bubble,
    .page-ai-messenger-assistant .ai-phone-mockup .chat-bubble {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* Страница msg-icons (кнопки быстрых контактов) — блок Возможности как на online-food-ordering */
body.page-msg-icons .features .features-grid {
    gap: 20px;
    margin-top: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
body.page-msg-icons .features .features-grid.features-grid--three {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
    body.page-msg-icons .features .features-grid.features-grid--three {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    body.page-msg-icons .features .features-grid.features-grid--three {
        grid-template-columns: 1fr;
    }
}
body.page-msg-icons .features .feature-card {
    background: #fff;
    padding: 1.25rem 1.25rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
    border: 1px solid #e5e7eb;
}
body.page-msg-icons .features .feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: rgba(255, 199, 9, 0.4);
}
body.page-msg-icons .features .feature-card-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}
body.page-msg-icons .features .feature-card-header .feature-icon--color {
    margin: 0;
    margin-bottom: 0;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
}
body.page-msg-icons .features .feature-card-header .feature-icon--color i {
    font-size: 1.5rem;
}
body.page-msg-icons .features .feature-card-header h3,
body.page-msg-icons .features .feature-card h3 {
    font-size: 1.05rem;
    margin: 0;
    color: #000;
    font-weight: bold;
}
body.page-msg-icons .features .feature-card p {
    color: #555;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}
body.page-msg-icons .features .feature-card:nth-child(1) .feature-icon--color { background: rgba(37, 99, 235, 0.12); }
body.page-msg-icons .features .feature-card:nth-child(1) .feature-icon--color i { color: #2563eb; }
body.page-msg-icons .features .feature-card:nth-child(2) .feature-icon--color { background: rgba(249, 115, 22, 0.12); }
body.page-msg-icons .features .feature-card:nth-child(2) .feature-icon--color i { color: #ea580c; }
body.page-msg-icons .features .feature-card:nth-child(3) .feature-icon--color { background: rgba(13, 148, 136, 0.12); }
body.page-msg-icons .features .feature-card:nth-child(3) .feature-icon--color i { color: #0d9488; }
body.page-msg-icons .features .feature-card:nth-child(4) .feature-icon--color { background: rgba(124, 58, 237, 0.12); }
body.page-msg-icons .features .feature-card:nth-child(4) .feature-icon--color i { color: #7c3aed; }
body.page-msg-icons .features .feature-card:nth-child(5) .feature-icon--color { background: rgba(22, 163, 74, 0.12); }
body.page-msg-icons .features .feature-card:nth-child(5) .feature-icon--color i { color: #16a34a; }
body.page-msg-icons .features .feature-card:nth-child(6) .feature-icon--color { background: rgba(59, 130, 246, 0.12); }
body.page-msg-icons .features .feature-card:nth-child(6) .feature-icon--color i { color: #3b82f6; }
body.page-msg-icons .what-is-it .what-is-it-intro {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
body.page-msg-icons .integration-product-card::before {
    background: linear-gradient(135deg, #FFC709 0%, #FFD700 100%);
}
body.page-msg-icons .product-icon {
    background: linear-gradient(135deg, #FFC709 0%, #FFD700 100%);
}
body.page-msg-icons .integration .feature-tag {
    background: rgba(255, 199, 9, 0.15);
    color: #b45309;
    border-color: rgba(255, 199, 9, 0.4);
}
body.page-msg-icons .integration .feature-tag:hover {
    background: #FFC709;
    color: #000;
}
body.page-msg-icons .integration .product-link {
    color: #FFC709;
    border-color: #FFC709;
    background: #fff;
}
body.page-msg-icons .integration .product-link:hover {
    background: #FFC709;
    color: #000;
}
body.page-msg-icons .integration .product-content h3,
body.page-msg-icons .integration .product-content p {
    text-align: left;
}
body.page-msg-icons .integration .product-features {
    justify-content: flex-start;
}
.see-the-difference--full .section-title,
.see-the-difference--full p {
    text-align: left;
}
.see-the-difference--full .section-title {
    margin-bottom: 1rem;
}
.see-the-difference--full p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #374151;
}
.see-the-difference--full .pricing-button-wrap {
    margin-top: 1.5rem;
    text-align: center;
}

/* msg-icons: Увидите разницу — серый фон; Тарифы — белый; FAQ — серый */
body.page-msg-icons .see-the-difference {
    background: #f3f4f6;
}
body.page-msg-icons .section.pricing.pricing--gray-bg {
    background: #fff;
}
/* FAQ на msg-icons — серый фон, те же цвета карточек что на ai-messenger-autopilot */
body.page-msg-icons .faq {
    background: #f3f4f6;
}
body.page-msg-icons .faq-grid {
    max-width: 900px;
    margin: 60px auto 0;
}
body.page-msg-icons .faq-item {
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
body.page-msg-icons .faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
body.page-msg-icons .faq-question {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    padding-right: 50px;
    color: #000;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
body.page-msg-icons .faq-question:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}
body.page-msg-icons .faq-question.active {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #000;
}
body.page-msg-icons .faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #FFC709;
    transition: transform 0.3s ease;
}
body.page-msg-icons .faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}
body.page-msg-icons .faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}
body.page-msg-icons .faq-answer.show {
    padding: 25px;
    max-height: 300px;
}

/* chat-widget: Увидите разницу — две колонки (текст слева, блок справа), как было изначально */
body.page-chat-widget .see-the-difference--chat-widget .demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
body.page-chat-widget .see-the-difference--chat-widget .demo-text .section-title {
    text-align: left;
    margin-bottom: 1rem;
    color: #000;
}
body.page-chat-widget .see-the-difference--chat-widget .demo-text p {
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1rem;
}
body.page-chat-widget .see-the-difference--chat-widget .demo-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
body.page-chat-widget .see-the-difference--chat-widget .demo-placeholder .demo-icon {
    font-size: 3rem;
    color: #FFC709;
    margin-bottom: 1rem;
}
body.page-chat-widget .see-the-difference--chat-widget .demo-placeholder h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #000;
}
body.page-chat-widget .see-the-difference--chat-widget .demo-placeholder p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
body.page-chat-widget .see-the-difference--chat-widget .demo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
body.page-chat-widget .see-the-difference--chat-widget .demo-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: #374151;
}
body.page-chat-widget .see-the-difference--chat-widget .demo-feature i {
    color: #FFC709;
}
@media (max-width: 900px) {
    body.page-chat-widget .see-the-difference--chat-widget .demo-content {
        grid-template-columns: 1fr;
    }
}

/* chat-widget: чередование фона секций */
body.page-chat-widget .section.features { background: #fff; }
body.page-chat-widget .section.problem-solution { background: #f3f4f6; }
body.page-chat-widget .section.benefits { background: #fff; }
body.page-chat-widget .section.how-it-works { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
body.page-chat-widget .section.what-is-it { background: #fff; }
body.page-chat-widget .see-the-difference--chat-widget { background: #f3f4f6; }
body.page-chat-widget .section.pricing { background: #fff; }
body.page-chat-widget .section.faq { background: #f3f4f6; }
/* chat-widget: FAQ активный пункт — жёлтый как везде (переопределяем синий из quick-contact-buttons) */
body.page-chat-widget .faq-question {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    padding-right: 50px;
    color: #000;
}
body.page-chat-widget .faq-question:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}
body.page-chat-widget .faq-question.active {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #000;
}
body.page-chat-widget .faq-question::after {
    content: '+';
    color: #FFC709;
}
body.page-chat-widget .faq-question.active::after {
    color: #FFC709;
}
body.page-chat-widget .final-cta { background: #fff; }

/* chat-widget: блок Возможности — верстка как на ai-messenger-autopilot (msg-icons) */
body.page-chat-widget .features .features-grid {
    gap: 20px;
    margin-top: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
body.page-chat-widget .features .features-grid.features-grid--three {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
    body.page-chat-widget .features .features-grid.features-grid--three {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    body.page-chat-widget .features .features-grid.features-grid--three {
        grid-template-columns: 1fr;
    }
}
body.page-chat-widget .features .feature-card {
    background: #fff;
    padding: 1.25rem 1.25rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
    border: 1px solid #e5e7eb;
}
body.page-chat-widget .features .feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: rgba(255, 199, 9, 0.4);
}
body.page-chat-widget .features .feature-card-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}
body.page-chat-widget .features .feature-card-header .feature-icon--color {
    margin: 0;
    margin-bottom: 0;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
}
body.page-chat-widget .features .feature-card-header .feature-icon--color i {
    font-size: 1.5rem;
}
body.page-chat-widget .features .feature-card-header h3,
body.page-chat-widget .features .feature-card h3 {
    font-size: 1.05rem;
    margin: 0;
    color: #000;
    font-weight: bold;
}
body.page-chat-widget .features .feature-card p {
    color: #555;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}
body.page-chat-widget .features .feature-card:nth-child(1) .feature-icon--color { background: rgba(37, 99, 235, 0.12); }
body.page-chat-widget .features .feature-card:nth-child(1) .feature-icon--color i { color: #2563eb; }
body.page-chat-widget .features .feature-card:nth-child(2) .feature-icon--color { background: rgba(249, 115, 22, 0.12); }
body.page-chat-widget .features .feature-card:nth-child(2) .feature-icon--color i { color: #ea580c; }
body.page-chat-widget .features .feature-card:nth-child(3) .feature-icon--color { background: rgba(13, 148, 136, 0.12); }
body.page-chat-widget .features .feature-card:nth-child(3) .feature-icon--color i { color: #0d9488; }
body.page-chat-widget .features .feature-card:nth-child(4) .feature-icon--color { background: rgba(124, 58, 237, 0.12); }
body.page-chat-widget .features .feature-card:nth-child(4) .feature-icon--color i { color: #7c3aed; }
body.page-chat-widget .features .feature-card:nth-child(5) .feature-icon--color { background: rgba(22, 163, 74, 0.12); }
body.page-chat-widget .features .feature-card:nth-child(5) .feature-icon--color i { color: #16a34a; }
body.page-chat-widget .features .feature-card:nth-child(6) .feature-icon--color { background: rgba(59, 130, 246, 0.12); }
body.page-chat-widget .features .feature-card:nth-child(6) .feature-icon--color i { color: #3b82f6; }

/* chat-widget: Как это работает — заголовки шагов по центру (quick-contact-buttons даёт .step h3 display:flex, поэтому центрируем через justify-content) */
body.page-chat-widget .how-it-works .step {
    text-align: center;
}
body.page-chat-widget .how-it-works .step h3 {
    text-align: center;
    justify-content: center;
    display: flex;
}
body.page-chat-widget .how-it-works .step p {
    text-align: center;
} 