/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #f8f9fc;
    color: #121826;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* header */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: -0.02em;
    color: #121826;
    text-decoration: none;
}

.logo-icon {
    background: linear-gradient(145deg, #0057ff, #35a2fc);
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 10px 20px -5px rgba(0, 87, 255, 0.3);
}

.nav-links {
    display: flex;
    gap: 40px;
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #0057ff;
}

.btn-outline-small {
    border: 1.5px solid #d0d9e8;
    border-radius: 40px;
    padding: 10px 24px;
    font-weight: 600;
    color: #121826;
    text-decoration: none;
    transition: 0.2s;
    white-space: nowrap;
}

.btn-outline-small:hover {
    border-color: #0057ff;
    color: #0057ff;
}

/* hero */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge, .hero-counter {
    background: rgba(0, 87, 255, 0.08);
    color: #0057ff;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero-counter i {
    margin-right: 6px;
    color: #0057ff;
}

#counterValue {
    font-weight: 700;
    color: #0057ff;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

.hero h1 span {
    background: linear-gradient(145deg, #0057ff, #21b3f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: #4a5568;
    max-width: 650px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #0057ff;
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 20px 30px -10px rgba(0, 87, 255, 0.4);
}

.btn-primary:hover {
    background: #003ecb;
    transform: scale(1.02);
}

.btn-ghost {
    background: transparent;
    border: 1px solid #cbd5e0;
    padding: 16px 36px;
    border-radius: 60px;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    transition: 0.2s;
}

.btn-ghost:hover {
    border-color: #0057ff;
    color: #0057ff;
}

/* логотип бота */
.bot-highlight {
    background: #ffffff;
    border-radius: 100px;
    padding: 8px 18px 8px 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-top: 40px;
    border: 1px solid #e2e8f0;
}

.bot-avatar {
    background: #27a7e7;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.bot-highlight span {
    font-weight: 600;
}

/* блок ОСНОВНИХ ПЕРЕВАГ */
.key-advantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 70px 0 30px;
}

.advantage-item {
    background: white;
    border-radius: 36px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 20px 30px -12px rgba(0, 87, 255, 0.1);
    border: 1px solid rgba(0, 87, 255, 0.05);
    transition: transform 0.2s;
}

.advantage-item:hover {
    transform: translateY(-6px);
}

.advantage-icon {
    background: #e9f0ff;
    width: 80px;
    height: 80px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #0057ff;
    margin: 0 auto 24px;
}

.advantage-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
}

.advantage-item p {
    color: #2e405b;
    font-size: 16px;
}

.badge-largest {
    background: #ffedd5;
    color: #b45309;
    border-radius: 40px;
    padding: 4px 14px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-top: 12px;
}

/* НОВИЙ БЛОК: ДЖЕРЕЛА МОНІТОРИНГУ */
.sources-section {
    background: white;
    border-radius: 70px;
    padding: 70px 40px;
    margin: 60px 0;
    box-shadow: 0 20px 40px -20px #a0b8d4;
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.source-item {
    text-align: left;
    padding: 30px;
    border-radius: 40px;
    background: #f8fafd;
    transition: transform 0.2s;
    border: 1px solid #e2ecfc;
}

.source-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(0,87,255,0.15);
}

.source-icon {
    width: 70px;
    height: 70px;
    border-radius: 25px;
    background: #e9f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #0057ff;
    margin-bottom: 24px;
}

.source-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.source-item ul {
    list-style: none;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

.source-item li {
    margin-bottom: 8px;
}

.source-item li i {
    color: #34a853;
    margin-right: 8px;
    font-size: 14px;
}

.audio-badge {
    background: #fff3cd;
    color: #997404;
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-left: 8px;
}

.threads-badge {
    background: #d1e7ff;
    color: #0057ff;
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-left: 8px;
}

.coming-soon {
    background: #f1f5f9;
    border-radius: 20px;
    padding: 6px 14px;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-top: 15px;
}

/* НОВИЙ БАНЕР ЗАКЛИКУ */
.cta-banner {
    background: linear-gradient(145deg, #eef4ff, #ffffff);
    border-radius: 40px;
    padding: 40px 50px;
    margin: 40px 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    border: 1px solid rgba(0, 87, 255, 0.2);
    box-shadow: 0 10px 30px -15px #0057ff66;
}

.cta-banner-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(145deg, #0057ff, #21b3f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-banner-content p {
    font-size: 18px;
    color: #2c3e50;
}

.cta-banner-button .btn-primary {
    padding: 18px 42px;
    font-size: 20px;
    box-shadow: 0 20px 30px -10px #0057ff;
    white-space: nowrap;
}

/* НОВИЙ РЕАЛІСТИЧНИЙ IPHONE */
.phone-section {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.outside-border {
    background: linear-gradient(145deg, #2a2a2a, #0a0a0a);
    position: relative;
    width: 280px;
    height: 580px;
    border: 0.6px solid rgba(255,255,255,0.5);
    border-radius: 45px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}

.silencer {
    position: absolute;
    background-color: rgba(255,255,255,0.8);
    border-radius: 5px;
    width: 3px;
    height: 18px;
    left: -3px;
    top: 105px;
    z-index: 2;
}

.volume-up, .volume-down {
    position: absolute;
    background-color: rgba(255,255,255,0.8);
    border-radius: 5px;
    height: 35px;
    width: 2.5px;
    left: -2.5px;
    z-index: 2;
}

.volume-up {
    top: 145px;
}

.volume-down {
    top: 195px;
}

.button-on {
    position: absolute;
    background-color: rgba(255,255,255,0.8);
    border-radius: 5px;
    height: 55px;
    width: 3px;
    right: -3px;
    z-index: 2;
    top: 160px;
}

.inside-border {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    border: 8px solid black;
    border-radius: 45px;
    background: rgba(0,0,0,0.2);
    overflow: hidden;
}

/* Верхня камера */
.camera {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100px;
    height: 28px;
    background-color: black;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    top: 0;
    z-index: 10;
}

.camera-dot {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 7px;
    height: 7px;
    left: 15px;
    top: 7px;
}

.camera-dot-2 {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    width: 5px;
    height: 5px;
    opacity: 0.3;
}

.camera-dot-3 {
    position: absolute;
    background-color: #000;
    border-radius: 50%;
    width: 1.5px;
    height: 1.5px;
    opacity: 0.7;
}

.camera-speaker {
    position: absolute;
    background-color: #fff;
    width: 35px;
    height: 1.5px;
    border-radius: 20px;
    top: -3px;
    opacity: 0.2;
}

/* Контейнер для чату */
.chat-fullscreen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f9fafc;
    padding: 40px 12px 20px 12px;
    overflow: hidden;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    color: #141414;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    padding: 0 5px;
}

.chat-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 0 6px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.chat-container::before,
.chat-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    pointer-events: none;
    z-index: 2;
}

.chat-container::before {
    top: 0;
    background: linear-gradient(to bottom, #f9fafc, transparent);
}

.chat-container::after {
    bottom: 0;
    background: linear-gradient(to top, #f9fafc, transparent);
}

.chat-scroll {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 4px 0;
    animation: scrollChat 30s linear infinite;
    will-change: transform;
}

@keyframes scrollChat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Стилі повідомлень */
.message {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.message-bubble {
    background: white;
    border-radius: 15px 15px 15px 5px;
    padding: 10px 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e9ecf0;
    position: relative;
    font-size: 12px;
    line-height: 1.4;
    color: #1c1e24;
}

.message-bubble::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 10px;
    width: 8px;
    height: 8px;
    background: white;
    border-left: 1px solid #e9ecf0;
    border-bottom: 1px solid #e9ecf0;
    transform: rotate(45deg);
    border-radius: 1px;
}

.message-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
    margin-left: 10px;
    font-size: 10px;
    color: #8e9eb5;
}

.message-author {
    font-weight: 600;
    color: #0057ff;
}

.keyword-pill {
    background: #eef2f6;
    border-radius: 20px;
    padding: 3px 8px;
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 5px;
    border: 1px solid #d0d9e8;
    color: #0057ff;
}

.timestamps {
    background: #f4f6f9;
    border-radius: 8px;
    padding: 5px 8px;
    margin: 6px 0;
    border-left: 2px solid #ff5252;
    font-size: 11px;
}

.file-attachment {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f7ff;
    border-radius: 8px;
    padding: 8px;
    margin: 6px 0;
    border: 1px solid #c2d9ff;
}

.file-icon {
    width: 30px;
    height: 30px;
    background: #34a853;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.file-info {
    flex: 1;
}

.file-name {
    font-weight: 600;
    font-size: 11px;
    color: #1c1e24;
}

.file-size {
    font-size: 9px;
    color: #6a7c95;
}

.message-button {
    background: #0057ff;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    margin-top: 5px;
}

/* Нижня кнопка */
.bottom-line {
    position: absolute;
    height: 3px;
    width: 100px;
    background-color: rgba(255,255,255,0.8);
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    z-index: 20;
}

/* НОВИЙ БЛОК: МЕНЮ З ТЕЛЕФОНОМ */
.menu-showcase {
    background: linear-gradient(145deg, #ffffff, #f5f9ff);
    border-radius: 100px;
    padding: 60px 40px;
    margin: 80px 0;
}

.menu-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 350px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 16px 24px;
    border-radius: 60px;
    box-shadow: 0 10px 25px -8px rgba(0,87,255,0.2);
    border: 1px solid #e2ecfc;
    transition: transform 0.2s;
    position: relative;
}

.menu-item:hover {
    transform: translateX(10px);
    border-color: #0057ff;
}

.menu-item.left-item::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #0057ff, transparent);
    border-radius: 2px;
}

.menu-item.right-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(270deg, #0057ff, transparent);
    border-radius: 2px;
}

.menu-icon {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: #e9f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0057ff;
}

.menu-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.menu-text p {
    color: #566573;
    font-size: 14px;
}

.menu-left {
    text-align: right;
}

.menu-right {
    text-align: left;
}

/* НОВИЙ БЛОК: ЗВЕРНЕННЯ ВІД CEO */
.ceo-section {
    background: #08102b;
    border-radius: 70px;
    padding: 60px;
    margin: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.ceo-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.ceo-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0057ff, #21b3f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90px;
    color: white;
    box-shadow: 0 20px 40px rgba(0,87,255,0.4);
    border: 4px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.ceo-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.ceo-avatar:hover .ceo-photo {
    transform: scale(1.05);
}

.ceo-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

.ceo-photo[src]:not([src=""]) + .ceo-icon,
.ceo-photo:not([src=""]) ~ .ceo-icon {
    opacity: 0;
}

.ceo-content {
    flex: 1;
}

.ceo-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ceo-content .ceo-quote {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 30px;
    color: #cbd5e1;
}

.ceo-content p {
    font-size: 18px;
    color: #9aa8b9;
    margin-bottom: 20px;
    line-height: 1.6;
}

.ceo-signature {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-top: 30px;
}

.ceo-signature span {
    color: #0057ff;
}

.ceo-social-minimal {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-link-minimal {
    color: #9aa8b9;
    font-size: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-minimal:hover {
    color: #0057ff;
    transform: translateY(-3px);
}

/* ОНОВЛЕНИЙ БЛОК: B2B З ВІЗУАЛІЗАЦІЯМИ */
.b2b-section {
    background: #0b1120;
    border-radius: 70px;
    padding: 80px 60px;
    margin: 80px 0;
    box-shadow: 0 30px 50px -30px #000000;
    border: 1px solid #1f2a41;
    color: white;
}

.b2b-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.b2b-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(145deg, #fff, #a0c0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.b2b-header p {
    font-size: 20px;
    color: #9aaec9;
}

/* Навігація каруселі */
.carousel-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 15px;
}

.carousel-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1a2645;
    border: 1px solid #2a3f70;
    color: #b0ccff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.carousel-nav-btn:hover {
    background: #0057ff;
    color: white;
    transform: scale(1.1);
}

.carousel-nav-btn:active {
    transform: scale(0.95);
}

/* Карусель */
.b2b-dashboard-carousel {
    display: flex;
    gap: 16px;
    margin: 30px 0 20px;
    padding: 5px 0 15px;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    scrollbar-width: thin;
    scrollbar-color: #0057ff #1a2540;
}

.b2b-dashboard-carousel:active {
    cursor: grabbing;
}

.b2b-dashboard-carousel::-webkit-scrollbar {
    height: 6px;
    background: #1a2540;
    border-radius: 10px;
}

.b2b-dashboard-carousel::-webkit-scrollbar-thumb {
    background: #0057ff;
    border-radius: 10px;
    transition: background 0.2s;
}

.b2b-dashboard-carousel::-webkit-scrollbar-thumb:hover {
    background: #40a0ff;
}

.dashboard-preview-card {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: #0f1a2f;
    border-radius: 24px;
    padding: 18px 16px;
    color: #fff;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
}

.dashboard-preview-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 87, 255, 0.3);
    box-shadow: 0 25px 35px -12px #0057ff40;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 500;
}

.preview-title {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #b4c6e0;
}

.preview-title i {
    color: #0057ff;
    font-size: 14px;
}

.preview-date {
    color: #7a8caa;
    font-size: 10px;
    background: rgba(255,255,255,0.03);
    padding: 3px 8px;
    border-radius: 30px;
}

.preview-badge {
    background: #1e2a45;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 600;
    color: #34a853;
}

.preview-badge.sentiment-positive {
    background: rgba(52, 168, 83, 0.15);
    color: #34a853;
    border: 1px solid rgba(52, 168, 83, 0.3);
}

.preview-link {
    color: #0057ff;
    font-size: 11px;
    cursor: default;
    opacity: 0.8;
}

/* Індикатори каруселі */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 10px 0 5px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2a3f70;
    transition: all 0.2s;
    cursor: pointer;
}

.carousel-dot.active {
    width: 24px;
    border-radius: 12px;
    background: #0057ff;
}

/* Підказка для прокрутки */
.scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 5px 0 15px;
    color: #6a7c95;
    font-size: 12px;
    opacity: 0.7;
}

.scroll-hint i {
    animation: scrollHint 1.5s infinite;
}

@keyframes scrollHint {
    0% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(5px); opacity: 1; }
    100% { transform: translateX(0); opacity: 0.5; }
}

/* Географія */
.world-map-preview {
    position: relative;
    height: 130px;
    background: radial-gradient(circle at 30% 40%, #1c2a4a, #0a1020);
    border-radius: 18px;
    padding: 12px;
    overflow: hidden;
}

.world-map-preview::before {
    content: "🌍";
    position: absolute;
    font-size: 60px;
    opacity: 0.1;
    bottom: -10px;
    right: -10px;
    transform: rotate(10deg);
}

.map-dots {
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.map-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 12px currentColor;
    border: 1px solid rgba(255,255,255,0.3);
}

.map-dot.pulse {
    animation: mapPulse 1.8s infinite;
}

@keyframes mapPulse {
    0% { box-shadow: 0 0 0 0 rgba(0,87,255,0.8); }
    70% { box-shadow: 0 0 0 12px rgba(0,87,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,87,255,0); }
}

.map-stats {
    position: absolute;
    bottom: 10px;
    left: 12px;
    right: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 12px;
    background: rgba(0,0,0,0.7);
    padding: 8px 10px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 3;
}

.map-stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #ccddf8;
}

.map-stat-item span {
    width: 8px;
    height: 8px;
    border-radius: 4px;
}

.map-stat-item strong {
    color: white;
    margin-left: auto;
    font-size: 11px;
}

/* Тренди */
.trend-chart {
    height: 130px;
    display: flex;
    align-items: flex-end;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px;
    width: 100%;
    height: 110px;
}

.bar-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.bar {
    width: 100%;
    background: linear-gradient(to top, #2a4a9e, #3a6fd4);
    border-radius: 8px 8px 4px 4px;
    min-height: 8px;
    position: relative;
    transition: height 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}

.bar span {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    font-weight: 600;
    color: #b0c6e5;
    white-space: nowrap;
}

.bar-container small {
    font-size: 8px;
    font-weight: 600;
    color: #8da0c0;
}

/* Порівняльна таблиця */
.sources-comparison {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.source-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
}

.source-row span:first-child {
    width: 85px;
    color: #ccddf8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.source-row i {
    width: 18px;
    color: #0057ff;
    font-size: 12px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: #1f2b44;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.4);
}

.progress-bar div {
    height: 100%;
    background: linear-gradient(90deg, #0057ff, #40a0ff);
    border-radius: 10px;
}

.source-value {
    font-weight: 700;
    color: white;
    min-width: 40px;
    text-align: right;
    font-size: 11px;
}

/* Сентимент */
.sentiment-chart {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 120px;
}

.pie-preview {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #121d38;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
    border: 2px solid rgba(255,255,255,0.05);
}

.pie-segment {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: rgba(20, 35, 70, 0.9);
    border: 1px solid rgba(255,255,255,0.15);
    font-weight: 600;
}

.sentiment-legend {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sentiment-legend div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #c0d0ec;
}

.sentiment-legend span {
    width: 10px;
    height: 10px;
    border-radius: 4px;
}

.sentiment-legend strong {
    color: white;
    margin-left: auto;
    font-size: 12px;
}

/* Сповіщення */
.alerts-preview {
    background: #0c1530;
}

.alerts-stream {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 150px;
    overflow-y: auto;
    padding-right: 4px;
}

.alerts-stream::-webkit-scrollbar {
    width: 3px;
}

.alerts-stream::-webkit-scrollbar-track {
    background: #1a2540;
}

.alerts-stream::-webkit-scrollbar-thumb {
    background: #0057ff;
    border-radius: 3px;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: rgba(30, 45, 75, 0.7);
    border-radius: 14px;
    font-size: 11px;
    border-left: 3px solid transparent;
}

.alert-item.highlight {
    background: rgba(0, 87, 255, 0.15);
    border-left-color: #0057ff;
}

.alert-source {
    width: 26px;
    height: 26px;
    background: #1e2e4e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0057ff;
    font-size: 13px;
}

.alert-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.alert-keyword {
    background: #1e2e4e;
    padding: 2px 8px;
    border-radius: 30px;
    font-size: 8px;
    font-weight: 700;
    color: #70b0ff;
    align-self: flex-start;
    border: 1px solid #2a3f6a;
}

.alert-time {
    color: #889fc7;
    font-size: 9px;
    font-weight: 500;
    background: rgba(0,0,0,0.3);
    padding: 2px 6px;
    border-radius: 20px;
}

.pulse-badge {
    animation: livePulse 1.5s infinite;
    background: #0057ff;
    color: white;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
}

@keyframes livePulse {
    0% { opacity: 1; background: #0057ff; }
    50% { opacity: 0.7; background: #ff3b3b; }
    100% { opacity: 1; background: #0057ff; }
}

/* Таймлайн */
.timeline-preview {
    margin-top: 15px;
}

.timeline-hours {
    display: flex;
    justify-content: space-between;
    color: #6a7c95;
    font-size: 9px;
    margin-bottom: 10px;
}

.timeline-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
}

.timeline-bars div {
    flex: 1;
    background: #2a3f70;
    border-radius: 6px 6px 0 0;
    min-height: 10px;
    transition: height 0.3s;
}

/* Хмара тегів */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tag {
    background: #1a2645;
    color: #b0ccff;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 12px;
    border: 1px solid #2a3f70;
    transition: all 0.2s;
    cursor: default;
}

.tag:hover {
    background: #0057ff;
    color: white;
    transform: scale(1.05);
}

.b2b-custom-badge {
    background: #1a2645;
    color: #b0ccff;
    border: 1px solid #2a3f70;
    border-radius: 40px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin: 20px 0;
}

.b2b-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.b2b-card {
    background: #111b32;
    border: 1px solid #1f2e51;
    border-radius: 40px;
    padding: 35px 30px;
    transition: transform 0.2s;
    color: white;
}

.b2b-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px -10px rgba(0,87,255,0.2);
}

.b2b-icon {
    width: 70px;
    height: 70px;
    background: #1e2e4e;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #0057ff;
    margin-bottom: 25px;
}

.b2b-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.b2b-card p {
    color: #a5bbdd;
    margin-bottom: 20px;
}

.b2b-features {
    list-style: none;
}

.b2b-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccddf8;
}

.b2b-features li i {
    color: #34a853;
}

.b2b-cta {
    background: linear-gradient(145deg, #102a55, #07122a);
    border-radius: 60px;
    padding: 50px;
    color: white;
    text-align: center;
    margin-top: 50px;
}

.b2b-cta h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.b2b-cta p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.btn-b2b {
    background: white;
    color: #0057ff;
    border: none;
    padding: 18px 42px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-b2b:hover {
    background: #e0f0ff;
    transform: scale(1.05);
}

/* блок "ДЛЯ КОГО" */
.audience-section {
    background: white;
    border-radius: 70px;
    padding: 70px 40px;
    margin: 60px 0;
    box-shadow: 0 20px 40px -20px #a0b8d4;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.audience-item {
    text-align: center;
}

.audience-icon {
    background: #e9f0ff;
    width: 80px;
    height: 80px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #0057ff;
    margin: 0 auto 20px;
}

.audience-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.audience-item p {
    color: #566573;
    font-size: 14px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-align: center;
}

.section-desc {
    font-size: 18px;
    color: #4b5565;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* таблиця тарифів */
.pricing-section {
    padding: 70px 40px;
    margin: 60px 0;
    background: #ffffff;
    border-radius: 70px;
    box-shadow: 0 20px 40px -20px #a0b8d4;
    border: 1px solid #e2ecfc;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-top: 40px;
}

.pricing-card {
    background: #fbfdff;
    border-radius: 40px;
    padding: 40px 30px;
    flex: 1 1 300px;
    max-width: 370px;
    border: 1px solid #e6edf8;
    box-shadow: 0 20px 40px -20px #a0b8d4;
    transition: all 0.2s;
}

.pricing-card.super {
    border: 2px solid #0057ff;
    background: white;
    transform: scale(1.02);
    box-shadow: 0 30px 50px -20px #0057ff80;
}

.pricing-name {
    font-size: 28px;
    font-weight: 700;
}

.price {
    font-size: 44px;
    font-weight: 800;
    margin: 20px 0 10px;
}

.price small {
    font-size: 16px;
    font-weight: 400;
    color: #64748b;
}

.feature-list {
    list-style: none;
    margin: 30px 0 40px;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #edf2f7;
    display: flex;
    gap: 12px;
    align-items: center;
}

.feature-list i.fa-check-circle {
    color: #0057ff;
    font-size: 18px;
    width: 24px;
}

.feature-list i.fa-times-circle {
    color: #a0afc0;
    font-size: 18px;
    width: 24px;
}

.btn-plan {
    background: #0057ff;
    color: white;
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-plan:hover {
    background: #0035a0;
}

.btn-outline-plan {
    background: white;
    border: 2px solid #cbd5e0;
    color: #1e293b;
}

.btn-outline-plan:hover {
    border-color: #0057ff;
    color: #0057ff;
}

/* c2a */
.cta-block {
    background: #08102b;
    border-radius: 70px;
    padding: 80px 40px;
    color: white;
    text-align: center;
    margin: 80px 0;
}

.cta-block h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-block .btn-primary {
    background: white;
    color: #0057ff;
    box-shadow: 0 20px 30px -5px #ffffff50;
}

/* Блок "Як це працює?" в один рядок */
.how-it-works-row {
    background: white;
    border-radius: 60px;
    padding: 12px 24px;
    margin: 40px 0;
    box-shadow: 0 10px 30px -15px rgba(0,87,255,0.15);
    border: 1px solid rgba(0,87,255,0.1);
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
}

.how-title-row {
    font-weight: 700;
    color: #0057ff;
    background: #e9f0ff;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.how-steps-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.step-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8fafd;
    padding: 4px 12px;
    border-radius: 40px;
    border: 1px solid #e2ecfc;
    font-size: 13px;
}

.step-number-row {
    background: #0057ff;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

.step-text-row {
    font-weight: 500;
    color: #2c3e50;
    white-space: nowrap;
}

.step-arrow-row {
    color: #0057ff;
    font-size: 12px;
    opacity: 0.4;
}

.how-note-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f7ff;
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 12px;
    color: #0057ff;
    border: 1px dashed #0057ff;
    white-space: nowrap;
}

.how-note-row i {
    font-size: 13px;
}

/* АДАПТИВНІСТЬ ДЛЯ МОБІЛЬНИХ ПРИСТРОЇВ */
@media (max-width: 1200px) {
    .how-it-works-row {
        flex-wrap: wrap;
        white-space: normal;
    }
    .how-steps-row {
        flex-wrap: wrap;
    }
}

@media (max-width: 1000px) {
    .key-advantages,
    .sources-grid,
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .b2b-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 52px;
    }
}

@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .menu-container {
        flex-direction: column;
    }
    
    .menu-item.left-item::after,
    .menu-item.right-item::before {
        display: none;
    }
    
    .ceo-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .ceo-social-minimal {
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .btn-primary,
    .btn-ghost {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .key-advantages,
    .sources-grid,
    .audience-grid,
    .b2b-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sources-section,
    .audience-section,
    .pricing-section,
    .b2b-section,
    .menu-showcase,
    .ceo-section,
    .cta-block {
        padding: 40px 20px;
        border-radius: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-desc {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .advantage-item,
    .source-item,
    .audience-item,
    .b2b-card,
    .pricing-card {
        padding: 30px 20px;
    }
    
    .cta-banner {
        padding: 30px 20px;
        text-align: center;
        justify-content: center;
    }
    
    .cta-banner-content h3 {
        font-size: 24px;
    }
    
    .cta-banner-content p {
        font-size: 16px;
    }
    
    .b2b-dashboard-carousel {
        gap: 12px;
    }
    
    .dashboard-preview-card {
        min-width: 260px;
    }
    
    .pricing-card.super {
        transform: scale(1);
    }
    
    .outside-border {
        width: 260px;
        height: 540px;
    }
    
    .ceo-content h2 {
        font-size: 32px;
    }
    
    .ceo-content .ceo-quote {
        font-size: 20px;
    }
    
    .ceo-content p {
        font-size: 16px;
    }
    
    .b2b-cta {
        padding: 30px 20px;
    }
    
    .b2b-cta h3 {
        font-size: 28px;
    }
    
    .cta-block h2 {
        font-size: 32px;
    }
}

@media (max-width: 500px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }
    
    .bot-highlight {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links {
        gap: 12px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    .btn-outline-small {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .pricing-grid {
        gap: 20px;
    }
    
    .price {
        font-size: 36px;
    }
    
    .b2b-custom-badge {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }
    
    .outside-border {
        width: 240px;
        height: 500px;
    }
    
    .carousel-nav {
        justify-content: center;
    }
}

/* КОМПАКТНИЙ БАНЕР З ОДНІЄЮ КАРТКОЮ */
.b2b-mini-banner {
    background: linear-gradient(145deg, #0b1120, #1a2645);
    border-radius: 48px;
    padding: 40px 48px;
    margin: 50px 0;
    border: 1px solid #2a3f70;
    box-shadow: 0 25px 35px -18px #000000;
    position: relative;
    overflow: hidden;
}

.b2b-mini-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #0057ff15, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.mini-banner-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.mini-banner-left {
    flex: 1.2;
}

.mini-banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 87, 255, 0.12);
    border: 1px solid rgba(0, 87, 255, 0.3);
    color: #b0ccff;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.mini-banner-tag i {
    color: #0057ff;
    font-size: 14px;
}

.mini-banner-left h3 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(145deg, #ffffff, #a0c0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.mini-banner-subtitle {
    font-size: 16px;
    color: #b0c4de;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 400;
}

.mini-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    max-width: 550px;
}

.mini-features-row {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 16px 24px;
    justify-content: space-between;
}

.mini-features-row span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccddf8;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.mini-features i {
    color: #34a853;
    font-size: 14px;
}

/* Адаптивність */
@media (max-width: 1100px) {
    .mini-features-row {
        gap: 12px 16px;
    }
}

@media (max-width: 1000px) {
    .mini-features {
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .mini-features-row {
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .mini-features-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 15px;
    }
    
    .mini-features-row span {
        white-space: normal;
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .mini-features-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

.mini-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0057ff;
    color: white;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 18px 25px -12px #0057ff;
    border: 1px solid rgba(255,255,255,0.1);
}

.mini-banner-btn:hover {
    background: #003ecb;
    transform: translateX(6px);
    box-shadow: 0 22px 30px -12px #0057ff;
}

.mini-banner-btn i {
    transition: transform 0.3s;
    font-size: 14px;
}

.mini-banner-btn:hover i {
    transform: translateX(6px);
}

.mini-banner-right {
    flex: 1;
    max-width: 320px;
}

.mini-card-showcase {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.mini-card-nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1a2645;
    border: 1px solid #2a3f70;
    color: #b0ccff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    font-size: 13px;
}

.mini-card-nav:hover {
    background: #0057ff;
    color: white;
    border-color: #0057ff;
    transform: scale(1.1);
}

.mini-card-container {
    flex: 1;
    overflow: hidden;
    border-radius: 24px;
}

.mini-card-track {
    display: flex;
    transition: transform 0.4s ease;
}

.mini-card {
    min-width: 100%;
    flex-shrink: 0;
    background: #0f1a2f;
    border-radius: 24px;
    padding: 18px 16px;
    border: 1px solid #2a3f70;
    box-shadow: 0 15px 25px -12px #000000;
    transition: all 0.3s;
}

.mini-card:hover {
    border-color: #0057ff;
    transform: scale(1.02);
}

.mini-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 12px;
    color: #b4c6e0;
}

.mini-card-header span:first-child {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mini-card-header i {
    color: #0057ff;
    font-size: 13px;
}

.mini-time {
    color: #6a7c95;
    font-size: 10px;
    background: rgba(255,255,255,0.03);
    padding: 3px 8px;
    border-radius: 30px;
}

.mini-badge {
    background: #1e2a45;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 600;
    color: #34a853;
}

.mini-badge.positive {
    background: rgba(52, 168, 83, 0.15);
    color: #34a853;
    border: 1px solid rgba(52, 168, 83, 0.3);
}

.mini-link {
    color: #0057ff;
    font-size: 14px;
    cursor: default;
    opacity: 0.8;
}

/* Карта */
.mini-map {
    position: relative;
    height: 85px;
    background: radial-gradient(circle at 30% 40%, #1c2a4a, #0a1020);
    border-radius: 18px;
    padding: 10px;
}

.mini-dots {
    position: relative;
    height: 100%;
}

.mini-dots span {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0057ff;
    box-shadow: 0 0 10px #0057ff;
}

.mini-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 9px;
    color: #b0c4de;
}

.mini-stats strong {
    color: white;
    margin-left: 4px;
    font-size: 10px;
}

/* Графік */
.mini-chart {
    height: 85px;
    display: flex;
    align-items: flex-end;
}

.mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    width: 100%;
    height: 75px;
}

.mini-bars div {
    flex: 1;
    background: #2a4a9e;
    border-radius: 6px 6px 0 0;
    min-height: 10px;
    transition: height 0.3s;
}

/* Джерела */
.mini-sources {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.mini-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #ccddf8;
}

.mini-row span:first-child {
    width: 75px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mini-row i {
    color: #0057ff;
    font-size: 12px;
}

.mini-progress {
    flex: 1;
    height: 5px;
    background: #1f2b44;
    border-radius: 6px;
    overflow: hidden;
}

.mini-progress div {
    height: 100%;
    background: linear-gradient(90deg, #0057ff, #40a0ff);
    border-radius: 6px;
}

/* Сентимент */
.mini-sentiment {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 75px;
}

.mini-pie {
    position: relative;
    width: 55px;
    height: 55px;
    background: #121d38;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.05);
}

.mini-pie span {
    position: absolute;
    font-size: 14px;
}

.mini-pie span:nth-child(1) { transform: rotate(0deg) translate(0, -20px); }
.mini-pie span:nth-child(2) { transform: rotate(120deg) translate(0, -20px); }
.mini-pie span:nth-child(3) { transform: rotate(240deg) translate(0, -20px); }

.mini-percents {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mini-percents span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #c0d0ec;
}

.mini-percents span span {
    width: 8px;
    height: 8px;
    border-radius: 4px;
}

/* Сповіщення */
.mini-alerts {
    display: flex;
    flex-direction: column;
    color: #ccddf8 !important;
    gap: 8px;
}

.mini-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccddf8 !important;
    padding: 7px 10px;
    background: rgba(30, 45, 75, 0.6);
    border-radius: 12px;
    font-size: 11px;
    border-left: 3px solid transparent;
}

.mini-alert.highlight {
    background: rgba(0, 87, 255, 0.12);
    border-left-color: #0057ff;
    color: #ccddf8 !important;
}

.mini-alert i {
    color: #ccddf8;
    width: 18px;
    font-size: 12px;
}

.mini-alert span {
    margin-left: auto;
    color: #ccddf8 !important;
    font-size: 9px;
    background: rgba(0,0,0,0.2);
    padding: 2px 6px;
    border-radius: 20px;
}

.mini-pulse {
    width: 8px;
    height: 8px;
    background: #ff3b3b;
    border-radius: 50%;
    animation: miniPulse 1.5s infinite;
}

@keyframes miniPulse {
    0% { box-shadow: 0 0 0 0 #ff3b3b; }
    70% { box-shadow: 0 0 0 8px rgba(255, 59, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0); }
}

/* Таймлайн */
.mini-timeline {
    margin-top: 8px;
}

.mini-hours {
    display: flex;
    justify-content: space-between;
    color: #6a7c95;
    font-size: 8px;
    margin-bottom: 8px;
}

.mini-bars-timeline {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 50px;
}

.mini-bars-timeline div {
    flex: 1;
    background: #2a3f70;
    border-radius: 6px 6px 0 0;
    min-height: 10px;
}

/* Точки */
.mini-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.mini-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2a3f70;
    transition: all 0.2s;
    cursor: pointer;
}

.mini-dot.active {
    width: 24px;
    border-radius: 12px;
    background: #0057ff;
}

/* Адаптивність */
@media (max-width: 1000px) {
    .mini-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .mini-banner-left {
        text-align: center;
    }
    
    .mini-banner-right {
        max-width: 100%;
        width: 100%;
    }
    
    .mini-card-showcase {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .b2b-mini-banner {
        padding: 30px 24px;
        border-radius: 36px;
    }
    
    .mini-banner-left h3 {
        font-size: 26px;
    }

    
    .mini-banner-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}
/* МОДАЛЬНЕ ВІКНО */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #0b1120;
    border-radius: 40px;
    padding: 40px;
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid #2a3f70;
    box-shadow: 0 30px 60px -20px #000;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1a2645;
    border: 1px solid #2a3f70;
    color: #b0ccff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 16px;
    z-index: 10;
}

.modal-close:hover {
    background: #ff3b3b;
    color: white;
    border-color: #ff3b3b;
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 30px;
    text-align: center;
}

.modal-header h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(145deg, #fff, #a0c0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-header p {
    color: #b0c4de;
    font-size: 15px;
    line-height: 1.5;
}

/* Форма */
.modal-form {
    display: block;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.form-group label {
    color: #ccddf8;
    font-size: 14px;
    font-weight: 500;
}

.required {
    color: #ff6b6b;
    margin-left: 2px;
}

.optional {
    color: #6a7c95;
    font-size: 12px;
    font-weight: 400;
    margin-left: 5px;
}

.form-group input,
.form-group textarea {
    background: #1a2645;
    border: 1px solid #2a3f70;
    border-radius: 16px;
    padding: 14px 18px;
    color: white;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0057ff;
    box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6a7c95;
    font-size: 14px;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.error-message {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Підказка */
.form-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 87, 255, 0.1);
    border: 1px solid rgba(0, 87, 255, 0.3);
    border-radius: 16px;
    padding: 15px 18px;
    color: #b0c4de;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.form-note i {
    color: #0057ff;
    font-size: 18px;
    flex-shrink: 0;
}

.form-note a {
    color: #0057ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.form-note a:hover {
    color: #40a0ff;
    text-decoration: underline;
}

/* Кнопка надсилання */
.modal-submit {
    background: #0057ff;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    border: 1px solid rgba(255,255,255,0.1);
}

.modal-submit:hover {
    background: #003ecb;
    transform: translateY(-2px);
    box-shadow: 0 20px 30px -10px #0057ff;
}

.modal-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.modal-submit i {
    font-size: 16px;
    transition: transform 0.3s;
}

.modal-submit:hover i:not(.fa-spin) {
    transform: translateX(5px);
}

/* Повідомлення про успіх */
.modal-success {
    text-align: center;
    padding: 40px 20px;
    background: rgba(52, 168, 83, 0.1);
    border: 2px solid #34a853;
    border-radius: 30px;
    margin: 20px 0;
    display: none;
}

.modal-success.show {
    display: block;
}

.modal-success i {
    font-size: 70px;
    color: #34a853;
    margin-bottom: 20px;
}

.modal-success h4 {
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.modal-success p {
    color: #b0c4de;
    font-size: 16px;
}

/* Адаптивність */
@media (max-width: 500px) {
    .modal-container {
        padding: 30px 20px;
        border-radius: 30px;
    }
    
    .modal-header h3 {
        font-size: 24px;
    }
    
    .modal-success i {
        font-size: 50px;
    }
    
    .modal-success h4 {
        font-size: 20px;
    }
}

/* ========== НОВИЙ FOOTER НА ВСЮ ШИРИНУ ========== */
.site-footer {
    background: #08102b;
    color: #fff;
    padding: 60px 0 0;
    margin-top: 80px;
    border-top: 1px solid #1f2a41;
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Колонка 1: Лого та опис */
.footer-about {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: -0.02em;
    color: white;
    text-decoration: none;
    margin-bottom: 5px;
}

.footer-logo-icon {
    background: linear-gradient(145deg, #0057ff, #35a2fc);
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 10px 20px -5px rgba(0, 87, 255, 0.3);
}

.footer-description {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-description p {
    color: #b0c4de;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-description strong {
    color: white;
    font-weight: 600;
}

.footer-product {
    padding-top: 5px;
    border-top: 1px solid #1f2a41;
}

.footer-copyright {
    margin-top: 10px;
    color: #6a7c95;
    font-size: 13px;
}

.footer-copyright p {
    margin: 3px 0;
}

.footer-fop {
    font-weight: 500;
    color: #b0c4de;
}

/* Заголовки колонок */
.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #0057ff, #35a2fc);
    border-radius: 3px;
}

/* Посилання */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link, 
.footer-links a {
    color: #b0c4de;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    color: #0057ff;
    font-size: 14px;
    width: 18px;
}

.footer-link:hover,
.footer-links a:hover {
    color: #0057ff;
    transform: translateX(5px);
}

/* Соціальні мережі */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1a2645;
    border: 1px solid #2a3f70;
    color: #b0ccff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
}

.footer-social-link:hover {
    background: #0057ff;
    color: white;
    border-color: #0057ff;
    transform: translateY(-3px);
}

/* Нижній рядок */
.footer-bottom {
    border-top: 1px solid #1f2a41;
    padding: 25px 0;
    text-align: center;
    color: #6a7c95;
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

/* Адаптивність */
@media (max-width: 1000px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-about {
        grid-column: span 1;
    }
    
    .footer-col h4 {
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        padding: 20px 0;
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-logo {
        font-size: 22px;
    }
    
    .footer-description p {
        font-size: 13px;
    }
}

/* ЛОГОТИПИ */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 40px; /* Встановлюємо висоту під ваш дизайн */
    width: auto;
    display: block;
}

/* Логотип у футері */
.footer-logo-image {
    height: 50px; /* Можна трохи більше для футера */
    width: auto;
    display: block;
}

/* Адаптивність для мобільних */
@media (max-width: 700px) {
    .logo-image {
        height: 32px;
    }
    
    .footer-logo-image {
        height: 40px;
    }
}

@media (max-width: 500px) {
    .logo-image {
        height: 28px;
    }
    
    .footer-logo-image {
        height: 35px;
    }
}

/* NEW NEW NEW */
/* YouTube картка з акцентом */
.youtube-highlight {
    position: relative;
/*    background: linear-gradient(145deg, #ffffff, #fff5e6); */
    background:white;
    border: 0px solid #ff0000;
    box-shadow: 0 20px 30px -12px rgba(255, 0, 0, 0.3);
    overflow: hidden;
}

.youtube-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Вогник-бадж */
.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b00, #ff0000);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 20px -5px #ff0000;
    animation: bounce 2s infinite;
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Пульсуючі хвилі навколо іконки */
.youtube-pulse {
    position: relative;
    background: #ff0000 !important;
    color: white !important;
    animation: glow 2s infinite;
}

.pulse-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.pulse-waves span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.3);
    animation: pulse-wave 2s infinite;
}

.pulse-waves span:nth-child(1) {
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.pulse-waves span:nth-child(2) {
    width: 80px;
    height: 80px;
    animation-delay: 0.5s;
}

.pulse-waves span:nth-child(3) {
    width: 100px;
    height: 100px;
    animation-delay: 1s;
}

@keyframes pulse-wave {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px #ff0000; }
    50% { box-shadow: 0 0 40px #ff0000; }
}

/* Аудіо-хвилі в заголовку */
.audio-wave {
    display: inline-block;
    animation: wave 1.5s infinite;
    font-size: 20px;
    margin-left: 5px;
}

@keyframes wave {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.8; }
}

/* Покращений аудіо бадж */
.audio-enhanced {
    background: linear-gradient(135deg, #ff0000, #ff6b00) !important;
    color: white !important;
    animation: shimmer 2s infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.audio-enhanced i {
    margin-right: 5px;
    animation: pulse 1s infinite;
}

@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

/* Статистика YouTube */
.youtube-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    font-size: 12px;
    color: #666;
}

.youtube-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.youtube-stats i {
    color: #ff0000;
}

/* Анімація для хвиль від картки */
.youtube-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        #ff0000, 
        #ff6b00, 
        #ff0000, 
        transparent
    );
    animation: slide 2s linear infinite;
    background-size: 200% 100%;
}

@keyframes slide {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* Адаптивність */
@media (max-width: 700px) {
    .featured-badge {
        font-size: 12px;
        padding: 4px 12px;
        top: -8px;
        right: 10px;
    }
    
    .youtube-stats {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
}