﻿:root {
    --primary-color: #0070f3;
    --secondary-color: #7928ca;
    --accent-color: #ff4b4b;
    --dark-color: #0a0a0a;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --text-color: #333333;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), #ff8f4b);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 112, 243, 0.2);
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Оновлений Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* Оновлений логотип */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);

}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /*display: none;  За замовчуванням приховано */
}

/* Адаптивний логотип */
@media (max-width: 768px) {
    .logo-img {
        display: none;
    }
    
    .logo-text {
        display: block;
        font-size: 22px;
    }
}

/* Оновлене меню */
.main-nav {
    flex: 1;
    margin: 0 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 25px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-color);
}

.dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Випадаюче меню */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--light-color);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
    list-style: none;
    border: 1px solid rgba(0,0,0,0.05);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0 20px;
}

.dropdown-menu li a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 10px 0;
    transition: var(--transition);
    font-size: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Анімована кнопка */
/* Покращена анімація для іконки літака */
.animated-icon {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.animated-icon i {
    position: relative;
    z-index: 2;
    animation: softFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 5px rgba(0,112,243,0.2));
}

/* Ніжна плаваюча анімація */
@keyframes softFloat {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(3px) translateY(-3px) rotate(5deg);
    }
    50% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    75% {
        transform: translateX(-3px) translateY(3px) rotate(-5deg);
    }
    100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
}

/* Ефект при наведенні */
.animated-icon:hover i {
    animation: none;
    transform: translateX(5px) scale(1.1);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Додатковий ефект "сліду" */
.animated-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.animated-icon:hover::after {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.3;
}

/* Варіант для мобільної версії */
@media (max-width: 768px) {
    .animated-icon i {
        animation: softFloatMobile 2.5s ease-in-out infinite;
    }
    
    @keyframes softFloatMobile {
        0%, 100% {
            transform: translateY(0) rotate(0deg);
        }
        50% {
            transform: translateY(-3px) rotate(5deg);
        }
    }
}





.animated-icon:hover i {
    animation: none;
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Mobile Menu Toggle - тільки ОДИН раз! */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
}

.burger-line {
    width: 100%;
    height: 2px;
    background: var(--dark-color);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Мобільне меню футер */
.mobile-menu-footer {
    display: none;
    padding: 30px 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 30px;
}

.mobile-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.mobile-contacts a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.mobile-contacts a i {
    color: var(--primary-color);
    width: 20px;
}

.mobile-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mobile-social a {
    width: 40px;
    height: 40px;
    background: rgba(0,112,243,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.mobile-social a:hover {
    background: var(--gradient);
    color: var(--light-color);
    transform: translateY(-3px);
}

/* Адаптивний хедер */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
    }
}

/* ========== АДАПТИВНЕ МЕНЮ (Mobile First) ========== */
@media (max-width: 768px) {
    /* Основа мобільного меню */
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        z-index: 99;
        overflow-y: auto;
        transition: left 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
        padding: 80px 0 30px;
        box-shadow: 0 0 30px rgba(0,0,0,0.2);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    /* Стилізація скролбару */
    .main-nav::-webkit-scrollbar {
        width: 5px;
    }
    
    .main-nav::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
    .main-nav::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }
    
    /* Меню список */
    .nav-menu {
        flex-direction: column;
        padding: 0;
        margin: 0;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-link {
        padding: 18px 20px;
        font-size: 16px;
        font-weight: 600;
        justify-content: space-between;
        background: white;
        transition: background 0.3s ease;
    }
    
    .nav-link:active {
        background: rgba(0,112,243,0.05);
    }
    
    .dropdown-icon {
        transition: transform 0.3s ease;
    }
    
    .nav-item.active .dropdown-icon {
        transform: rotate(180deg);
    }
    
    /* Мега-меню в мобільній версії */
    .megamenu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        background: #f8f9fa;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }
    
    .nav-item.active .megamenu {
        max-height: 2000px;
        padding: 15px 0;
    }
    
    .megamenu-header {
        padding: 0 20px 15px;
    }
    
    .megamenu-parent-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--primary-color);
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        padding: 8px 15px;
        background: rgba(0,112,243,0.1);
        border-radius: 20px;
    }
    
    .megamenu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .megamenu-col {
        padding: 0;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    
    .megamenu-title {
        padding: 15px 20px;
        margin: 0;
        background: linear-gradient(90deg, rgba(0,112,243,0.05), transparent);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
    }
    
    .megamenu-title i {
        color: var(--primary-color);
        font-size: 16px;
    }
    
    .megamenu-list {
        padding: 10px 0;
    }
    
    .megamenu-list li {
        margin: 0;
    }
    
    .megamenu-list li a {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 12px 20px;
        border-radius: 0;
        transition: background 0.3s ease;
    }
    
    .megamenu-list li a:hover,
    .megamenu-list li a:active {
        background: rgba(0,112,243,0.05);
    }
    
    .megamenu-list li a.highlight {
        background: rgba(0,112,243,0.1);
        position: relative;
    }
    
    .menu-item-icon {
        width: 36px;
        height: 36px;
        background: rgba(0,112,243,0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .menu-item-icon i {
        font-size: 18px;
        color: var(--primary-color);
    }
    
    .menu-item-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .menu-item-title {
        font-weight: 600;
        font-size: 15px;
        color: var(--dark-color);
    }
    
    .menu-item-desc {
        font-size: 12px;
        color: #666;
        margin-top: 2px;
    }
    
    .menu-item-badge {
        display: inline-block;
        background: var(--gradient);
        color: white;
        font-size: 10px;
        padding: 2px 8px;
        border-radius: 20px;
        margin-left: 10px;
        font-weight: 600;
        text-transform: uppercase;
    }
    
    /* Промо блоки в меню */
    .megamenu-promo.mobile-promo {
        padding: 15px 20px;
        background: linear-gradient(135deg, #f5f7fa, #e9eef5);
        margin-top: 10px;
    }
    
    .promo-mini {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .promo-mini i {
        width: 40px;
        height: 40px;
        background: var(--gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
    }
    
    .promo-mini div {
        display: flex;
        flex-direction: column;
    }
    
    .promo-mini strong {
        font-size: 14px;
        color: var(--dark-color);
    }
    
    .promo-mini span {
        font-size: 12px;
        color: #666;
    }
    
    .megamenu-features {
        padding: 15px 20px;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        font-size: 13px;
    }
    
    .feature-item i {
        color: #00c853;
        font-size: 16px;
    }
    
    .megamenu-stats-card {
        padding: 20px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 12px;
        color: white;
        margin: 15px;
    }
    
    .stat-item {
        text-align: center;
        padding: 10px 0;
    }
    
    .stat-value {
        font-size: 28px;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 12px;
        opacity: 0.9;
    }
    
    .megamenu-promo-block {
        padding: 20px;
        background: linear-gradient(135deg, #0070f3, #00c6fb);
        border-radius: 12px;
        color: white;
        margin: 15px;
        text-align: center;
    }
    
    .promo-text strong {
        display: block;
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .promo-text p {
        font-size: 13px;
        opacity: 0.9;
        margin-bottom: 15px;
    }
    
    .btn-sm {
        padding: 8px 20px;
        font-size: 13px;
        background: white;
        color: var(--primary-color);
        border: none;
    }
    
    /* Мобільний футер меню */
    .mobile-menu-footer {
        display: block;
        padding: 30px 20px;
        background: #f8f9fa;
        margin-top: 30px;
        border-top: 1px solid rgba(0,0,0,0.1);
    }
    
    .mobile-menu-contacts {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
        text-decoration: none;
        color: var(--dark-color);
        padding: 10px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    
    .mobile-contact-item i {
        width: 40px;
        height: 40px;
        background: rgba(0,112,243,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 18px;
    }
    
    .mobile-contact-item div {
        display: flex;
        flex-direction: column;
    }
    
    .mobile-contact-item span {
        font-size: 12px;
        color: #666;
    }
    
    .mobile-contact-item strong {
        font-size: 15px;
        margin-top: 2px;
    }
    
    .mobile-menu-social {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 18px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    
    .social-icon:active {
        transform: scale(0.95);
    }
    
    .mobile-menu-copyright {
        text-align: center;
        font-size: 12px;
        color: #999;
        padding-top: 20px;
        border-top: 1px solid rgba(0,0,0,0.1);
    }
    
    /* Анімація бургера */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1000;
    }
    
    .burger-line {
        width: 100%;
        height: 2px;
        background: var(--dark-color);
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .mobile-menu-toggle.active .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background: var(--primary-color);
    }
    
    .mobile-menu-toggle.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background: var(--primary-color);
    }
}

/* Для планшетів */
@media (min-width: 769px) and (max-width: 1024px) {
    .megamenu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .main-nav {
        width: 100%;
        max-width: none;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--light-color);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9eef5 100%);
    overflow: hidden;
    position: relative;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 30px;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}
/* 
.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px; */
}

/* Hero Animation */
.hero-animation {
    position: relative;
    height: 500px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

.floating-element i {
    font-size: 24px;
    color: var(--primary-color);
}

.element-1 { top: 0; left: 10%; animation-delay: 0s; }
.element-2 { top: 80%; right: 0%; animation-delay: 1s; }
.element-3 { bottom: 0%; left: 15%; animation-delay: 2s; }
.element-4 { bottom: 75%; right: 5%; animation-delay: 3s; }
.element-5 { top: 0%; left: 50%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Cube Animation */
.cube-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    perspective: 600px;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 20s infinite linear;
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(0, 112, 243, 0.2);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    backdrop-filter: blur(5px);
}

.front { transform: translateZ(100px); }
.back { transform: rotateY(180deg) translateZ(100px); }
.right { transform: rotateY(90deg) translateZ(100px); }
.left { transform: rotateY(-90deg) translateZ(100px); }
.top { transform: rotateX(90deg) translateZ(100px); }
.bottom { transform: rotateX(-90deg) translateZ(100px); }

@keyframes rotate {
    0% { transform: rotateX(0) rotateY(0); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

/* Circles Animation */
.circles-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* USP Section */
.usp {
    padding: 80px 0;
    background: var(--light-color);
}

.usp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: var(--light-color);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
}

.badge-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.usp-card {
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.usp-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.usp-card.featured {
    background: var(--gradient);
    color: var(--light-color);
}

.usp-card.featured .usp-icon i {
    color: var(--light-color);
}

.usp-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 112, 243, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.usp-card.featured .usp-icon {
    background: rgba(255, 255, 255, 0.2);
}

.usp-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.usp-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.usp-card p {
    font-size: 16px;
    line-height: 1.7;
}

/* Services Categories */
.services-categories {
    padding: 80px 0;
    background: var(--gray-color);
}

.categories-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 30px;
    border: none;
    background: transparent;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gradient);
    color: var(--light-color);
    border-color: transparent;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    display: block;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card.highlight {
    background: var(--gradient);
    color: var(--light-color);
}

.service-card.highlight .card-icon i {
    color: var(--light-color);
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.service-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.card-link {
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-card.highlight .card-link {
    color: var(--light-color);
}

.card-link i {
    transition: var(--transition);
}

.service-card:hover .card-link i {
    transform: translateX(5px);
}

/* Process Timeline */
.process {
    padding: 80px 0;
    background: var(--light-color);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient);
    opacity: 0.3;
}

.process-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.process-number {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--light-color);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow);
}

.process-content {
    flex: 1;
    padding-left: 60px;
}

.process-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.process-content p {
    font-size: 16px;
    color: #666;
}

/* Blog Preview */
.blog-preview {
    padding: 80px 0;
    background: var(--gray-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.blog-category {
    background: var(--gradient);
    color: var(--light-color);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.blog-date {
    color: #999;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    font-size: 14px;
    color: #666;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--light-color);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    display: none;
    padding-top: 15px;
    color: #666;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo p {
    margin-top: 20px;
    color: #999;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999;
}

.contact-info li i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 14px;
}

/* ========== ПРЕМІАЛЬНА МОДАЛЬНА ФОРМА ========== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-dialog {
    position: relative;
    max-width: 550px;
    width: 90%;
    background: var(--light-color);
    border-radius: 32px;
    overflow: hidden;
    animation: modalSlideIn 0.4s cubic-bezier(0.21, 1.11, 0.35, 1.05);
    box-shadow: 0 50px 80px rgba(0, 0, 0, 0.3);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--gradient);
    color: white;
    transform: rotate(90deg);
}

/* Декоративні елементи */
.modal-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.decoration-shape {
    position: absolute;
    background: var(--gradient);
    opacity: 0.03;
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: -50px;
}

/* Заголовок форми */
.modal-header {
    text-align: center;
    padding: 40px 30px 20px;
    position: relative;
    z-index: 2;
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0,112,243,0.1), rgba(121,40,202,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.modal-icon i {
    font-size: 32px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Контейнер форми */
.form-container {
    padding: 0 30px 40px;
    position: relative;
    z-index: 2;
}

/* Рядок з двома полями */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

/* Стилізовані поля вводу */
.form-group {
    margin-bottom: 15px;
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 2;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 2px solid #eef2f6;
    border-radius: 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group textarea {
    padding: 14px 15px 14px 45px;
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 112, 243, 0.1);
}

.form-group input:focus + .input-icon,
.form-group select:focus + .input-icon,
.form-group textarea:focus + .input-icon {
    color: var(--primary-color);
}

/* Стилі для select */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

/* Опції select з групами */
optgroup {
    font-weight: 700;
    color: var(--primary-color);
    background: #f8f9fa;
}

/* Блок переваг */
.form-benefits {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 20px 0;
    padding: 12px 0;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
}

.benefit-item i {
    color: #00c853;
    font-size: 14px;
}

/* Чекбокс */
.privacy-checkbox {
    margin-bottom: 25px;
}

.privacy-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #666;
}

.privacy-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
    margin: 0;
    padding: 0;
}

.privacy-checkbox a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.privacy-checkbox a:hover {
    text-decoration: underline;
}

/* Кнопка відправки */
.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 112, 243, 0.3);
}

.form-submit:active {
    transform: translateY(0);
}

/* Success контейнер */
.success-container {
    text-align: center;
    padding: 50px 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00c853, #69f0ae);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: scaleIn 0.5s ease;
}

.success-icon i {
    font-size: 40px;
    color: white;
}

.success-container h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.success-container p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.close-success {
    min-width: 150px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 40px;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-success:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Анімація fade-out */
.form-container.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Адаптивність */
@media (max-width: 600px) {
    .modal-dialog {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-container {
        padding: 0 20px 30px;
    }
    
    .modal-header {
        padding: 30px 20px 15px;
    }
    
    .modal-header h2 {
        font-size: 24px;
    }
    
    .form-benefits {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .benefit-item {
        font-size: 12px;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Стилі для успішного повідомлення */
.success-container {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00c853, #69f0ae);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: scaleIn 0.5s ease;
}

.success-icon i {
    font-size: 40px;
    color: white;
}

.success-container h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.success-container p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.close-success {
    min-width: 150px;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Анімація приховування форми */
.form-container.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Анімація появи успіху */
.success-container {
    animation: slideInUp 0.4s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Стилі для мега-меню */
.has-megamenu {
    position: static !important;
}

.megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 105%;
    background: var(--light-color);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
    border-top: 3px solid var(--primary-color);
}

.nav-item:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.megamenu-col {
    padding-right: 20px;
}

.megamenu-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.megamenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.megamenu-list li {
    margin-bottom: 12px;
}

.megamenu-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    background: transparent;
}

.megamenu-list li a:hover {
    background: rgba(0, 112, 243, 0.05);
    transform: translateX(5px);
    color: var(--primary-color);
}

.megamenu-list li a i {
    width: 20px;
    color: var(--primary-color);
    font-size: 16px;
}

.megamenu-list li a span {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.megamenu-list li a small {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

/* Промо блок */
.promo-col {
    background: linear-gradient(135deg, #f5f7fa, #e9eef5);
    border-radius: var(--border-radius);
    padding: 25px !important;
}

.megamenu-promo {
    text-align: center;
}

.promo-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.promo-icon i {
    font-size: 30px;
    color: white;
}

.megamenu-promo h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.megamenu-promo p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

/* Особливості */
.megamenu-features {
    list-style: none;
    padding: 0;
}

.megamenu-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0, 112, 243, 0.03);
    border-radius: var(--border-radius-sm);
}

.megamenu-features li i {
    color: #00c853;
    font-size: 18px;
}

.megamenu-features li span {
    font-size: 14px;
    color: var(--text-color);
}

/* Статистика в меню */
.megamenu-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background: var(--gradient);
    border-radius: var(--border-radius);
    color: white;
}

.megamenu-stats .stat {
    text-align: center;
}

.megamenu-stats .stat-value {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.megamenu-stats .stat-label {
    font-size: 12px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Адаптація для мобільних */
@media (max-width: 1024px) {
    .megamenu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .has-megamenu {
        position: relative !important;
    }
    
    .megamenu {
        position: static;
        width: 100%;
        padding: 15px;
        box-shadow: none;
        border-top: none;
        background: transparent;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .nav-item.active .megamenu {
        display: block;
    }
    
    .megamenu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .megamenu-col {
        padding-right: 0;
    }
    
    .megamenu-list li a {
        padding: 10px;
    }
}

/* Стилі для секції послуг */
.services {
    padding: 80px 0;
    background: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 112, 243, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
}

/* Таби */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.services-tabs .tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: 2px solid transparent;
    background: #f5f5f5;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.services-tabs .tab-btn i {
    font-size: 18px;
}

.services-tabs .tab-btn.active {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

.services-tabs .tab-btn:hover:not(.active) {
    border-color: var(--primary-color);
    background: white;
}

/* Категорії послуг */
.services-category {
    margin-bottom: 60px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 112, 243, 0.2);
}

.category-title i {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

/* Сітка послуг */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient);
    transition: height 0.3s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-card.highlight {
    background: var(--gradient);
    color: white;
}

.service-card.highlight .card-icon i {
    color: white;
}

.service-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 112, 243, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card.highlight .card-icon {
    background: rgba(255, 255, 255, 0.2);
}

.card-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.service-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-card.highlight .card-link {
    color: white;
}

.card-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .card-link i {
    transform: translateX(5px);
}

.services-footer {
    text-align: center;
    margin-top: 50px;
}

/* Адаптивність */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .services-tabs .tab-btn {
        justify-content: center;
    }
    
    .category-title {
        font-size: 20px;
    }
}

/* Покращення для мобільного меню */
.megamenu-list li a {
    position: relative;
    overflow: hidden;
}

.megamenu-list li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.megamenu-list li a:active::after {
    transform: translateX(0);
}

/* Анімація появи пунктів меню */
.main-nav.active .nav-item {
    animation: slideInRight 0.3s ease forwards;
    opacity: 0;
    transform: translateX(-20px);
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.main-nav.active .nav-item:nth-child(1) { animation-delay: 0.05s; }
.main-nav.active .nav-item:nth-child(2) { animation-delay: 0.1s; }
.main-nav.active .nav-item:nth-child(3) { animation-delay: 0.15s; }
.main-nav.active .nav-item:nth-child(4) { animation-delay: 0.2s; }
.main-nav.active .nav-item:nth-child(5) { animation-delay: 0.25s; }
.main-nav.active .nav-item:nth-child(6) { animation-delay: 0.3s; }

/* Бейдж "Хіт" */
.menu-item-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Запобігання скролу при відкритому меню */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Покращення для тач-пристроїв */
@media (hover: none) and (pointer: coarse) {
    .nav-link,
    .megamenu-list li a,
    .mobile-contact-item,
    .social-icon {
        -webkit-tap-highlight-color: transparent;
    }
    
    .nav-link:active,
    .megamenu-list li a:active {
        background-color: rgba(0,112,243,0.1);
    }
}


/* Service Hero */
.service-hero {
    padding: 50px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9eef5 100%);
    position: relative;
    overflow: hidden;
}

.service-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,112,243,0.1);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.service-badge i {
    color: var(--primary-color);
}

.service-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.service-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
}

.service-features-mini {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

.mini-feature i {
    color: #00c853;
}

.service-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-stars {
    color: #ffc107;
}

.rating-value {
    font-weight: 700;
    color: var(--dark-color);
}

.rating-count {
    color: #999;
    font-size: 14px;
}

/* Audit Stats Card */
.audit-stats-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.audit-stats-card .stat-item {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.audit-stats-card .stat-item:last-child {
    border-bottom: none;
}

.audit-stats-card .stat-value {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.audit-stats-card .stat-label {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

.audit-stats-card .stat-desc {
    font-size: 12px;
    color: #999;
}

/* Floating Icons */
.floating-icons {
    position: relative;
    height: 100%;
}

.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

.float-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.icon-1 { top: 20%; right: 20%; animation-delay: 0s; }
.icon-2 { top: 40%; left: 10%; animation-delay: 1s; }
.icon-3 { bottom: 30%; right: 10%; animation-delay: 2s; }
.icon-4 { bottom: 20%; left: 20%; animation-delay: 3s; }

/* Service USP */
.service-usp {
    padding: 60px 0;
    background: var(--light-color);
}

.usp-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.usp-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: pulse 2s ease-in-out infinite;
}

.usp-icon-large i {
    font-size: 40px;
    color: white;
}

.usp-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.usp-block p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* Audit Scope */
.audit-scope {
    padding: 80px 0;
    background: #f8f9fa;
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.scope-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.scope-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.scope-icon {
    width: 60px;
    height: 60px;
    background: rgba(0,112,243,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.scope-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.scope-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.scope-list {
    list-style: none;
    padding: 0;
}

.scope-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
}

.scope-list li i {
    color: #00c853;
    font-size: 14px;
}

.scope-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 10px;
    transform: translateY(100%);
    transition: var(--transition);
}

.scope-card:hover .scope-hover {
    transform: translateY(0);
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: var(--light-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-header p {
    color: #666;
    font-size: 14px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.pricing-features li i {
    width: 20px;
    font-size: 14px;
}

.pricing-features li i.fa-check {
    color: #00c853;
}

.pricing-features li i.fa-times {
    color: #ff4b4b;
}

.pricing-features li.disabled {
    color: #ccc;
}

.pricing-footer {
    text-align: center;
}

.btn-block {
    width: 100%;
}

/* Audit Results */
.audit-results {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.results-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.results-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.results-list {
    list-style: none;
    padding: 0;
}

.results-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.results-list li i {
    font-size: 30px;
    color: rgba(255,255,255,0.8);
}

.results-list li h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.results-list li p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.report-preview {
    background: #1e1e2d;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.report-preview:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.report-header {
    background: #2a2a3c;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.report-dots {
    display: flex;
    gap: 8px;
}

.report-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: var(--transition);
}

.report-dots span:nth-child(1) { background: #ff5f56; }
.report-dots span:nth-child(2) { background: #ffbd2e; }
.report-dots span:nth-child(3) { background: #27c93f; }

.report-dots span:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.report-title {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.report-title i {
    color: #ff5f56;
    font-size: 18px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.report-size {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    background: rgba(255,255,255,0.1);
    padding: 4px 8px;
    border-radius: 12px;
}

.report-content {
    padding: 25px;
    background: linear-gradient(135deg, #1e1e2d 0%, #2a2a3c 100%);
}

/* Кришки сторінок */
.report-pages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.page-thumb {
    background: #2a2a3c;
    border-radius: 8px;
    padding: 10px 8px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.page-thumb:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0,112,243,0.2);
}

.page-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    color: white;
    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.page-thumb:hover .page-number {
    opacity: 1;
}

.page-preview {
    min-height: 60px;
}

/* Стилі для різних типів сторінок */
.preview-header {
    margin-bottom: 8px;
}

.preview-line {
    height: 4px;
    background: linear-gradient(90deg, #0070f3, #7928ca);
    border-radius: 2px;
    margin-bottom: 4px;
}

.preview-line.short {
    width: 60%;
    background: rgba(255,255,255,0.3);
}

.preview-stats {
    display: flex;
    gap: 5px;
}

.stat-box {
    flex: 1;
    height: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

.preview-chart {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
}

.chart-bar {
    flex: 1;
    height: 100%;
    background: linear-gradient(180deg, #0070f3, #7928ca);
    border-radius: 2px 2px 0 0;
}

.preview-checklist .check-item {
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    margin-bottom: 4px;
}

.preview-checklist .check-item:last-child {
    width: 70%;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
}

.grid-cell {
    height: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
}

/* Деталі звіту */
.report-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 14px;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
}

.priority {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.priority.high { background: #ff5f56; box-shadow: 0 0 10px #ff5f56; }
.priority.medium { background: #ffbd2e; box-shadow: 0 0 10px #ffbd2e; }
.priority.low { background: #27c93f; box-shadow: 0 0 10px #27c93f; }

/* Прогрес читання */
.report-progress {
    margin-bottom: 15px;
}

.progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0070f3, #7928ca);
    border-radius: 2px;
    position: relative;
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.progress-text {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

/* Дата створення */
.report-date {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

.report-date i {
    color: var(--primary-color);
}

/* Футер звіту */
.report-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #2a2a3c;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.report-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,112,243,0.2);
    padding: 5px 12px;
    border-radius: 20px;
}

.report-badge i {
    color: #0070f3;
    font-size: 12px;
}

.report-badge span {
    font-size: 11px;
    color: white;
    font-weight: 500;
}

.report-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-avatar-mini {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.report-author span {
    font-size: 12px;
    color: white;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-color);
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 50px;
    background: white;
    transition: var(--transition);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-block {
    text-align: center;
    color: white;
}

.cta-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-block p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-block .btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-block .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .service-hero-wrapper {
        grid-template-columns: 1fr;
    }
    
    .scope-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-title {
        font-size: 36px;
    }
    
    .scope-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .service-features-mini {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-cta {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .audit-stats-card {
        margin-top: 30px;
    }
}

/* Слайдер відгуків */
.testimonials-slider {
    position: relative;
    margin: 50px 0;
    padding: 0 50px;
}

.slider-container {
    overflow: hidden;
    margin: 0 -15px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

/* Стрілки слайдера */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: -10px;
}

.slider-arrow.next {
    right: -10px;
}

.slider-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #ccc;
    color: #ccc;
}

.slider-arrow:disabled:hover {
    background: white;
    color: #ccc;
    transform: translateY(-50%);
}

/* Точки навігації */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(0,112,243,0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover {
    background: rgba(0,112,243,0.5);
}

.dot.active {
    width: 30px;
    background: var(--gradient);
    border-radius: 10px;
}

/* Адаптивність слайдера */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonials-slider {
        padding: 0 30px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(100% - 20px);
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow.prev {
        left: -5px;
    }
    
    .slider-arrow.next {
        right: -5px;
    }
}


/* Дизайнерські елементи */
.gradient-border {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                var(--gradient) border-box;
    border-radius: 20px;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    background: var(--gradient);
    opacity: 0.05;
    border-radius: 50%;
    animation: floatShape 20s linear infinite;
}

.shape1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.shape2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

@keyframes floatShape {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Мікро-взаємодії */
.hover-glow {
    transition: var(--transition);
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(0,112,243,0.3);
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-scale {
    transition: var(--transition);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* ========== ДЕТАЛЬНИЙ SEO-ТЕКСТ ЗІ СКРОЛОМ ========== */
.seo-scroll-section {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Декоративний фоновий елемент */
.seo-scroll-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,112,243,0.03) 0%, transparent 70%);
    animation: rotateBg 30s linear infinite;
    z-index: 1;
}

@keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Заголовок секції */
.seo-scroll-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.seo-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulseIcon 2s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0,112,243,0.3);
}

@keyframes pulseIcon {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(0,112,243,0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 0 15px rgba(0,112,243,0.1);
    }
}

.seo-icon i {
    font-size: 36px;
    color: white;
}

.seo-main-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.seo-scroll-subtitle {
    color: #666;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 400;
}

.seo-scroll-subtitle::before,
.seo-scroll-subtitle::after {
    content: '';
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Контейнер зі скролом */
.seo-scroll-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid rgba(0,112,243,0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.seo-scroll-container:hover {
    box-shadow: 0 30px 60px rgba(0,112,243,0.15);
    transform: translateY(-8px);
    border-color: rgba(0,112,243,0.3);
}

/* Скрол-контент */
.seo-scroll-content {
    max-height: 600px;
    overflow-y: auto;
    padding: 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f0f0f0;
}

/* Стилізація скролбару */
.seo-scroll-content::-webkit-scrollbar {
    width: 8px;
}

.seo-scroll-content::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.seo-scroll-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #0070f3, #7928ca);
    border-radius: 10px;
    transition: var(--transition);
}

.seo-scroll-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #7928ca, #0070f3);
}

/* H2 заголовки всередині скролу */
.seo-h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 45px 0 25px;
    padding-bottom: 12px;
    color: var(--dark-color);
    position: relative;
    border-bottom: 2px solid rgba(0,112,243,0.15);
}

/* Гарна вертикальна лінія біля H2 (як була в старих стилях) */
.seo-h2::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    border-radius: 4px;
    opacity: 0.7;
    box-shadow: 0 0 15px rgba(0,112,243,0.3);
}

/* Градієнтна лінія під H2 */
.seo-h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

/* H3 заголовки */
.seo-h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 35px 0 15px;
    color: var(--primary-color);
    position: relative;
    padding-left: 15px;
}

/* Вертикальна лінія біля H3 (менша) */
.seo-h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 3px;
    background: var(--gradient);
    border-radius: 3px;
    opacity: 0.5;
}

/* Контент секції */
.seo-section-content {
    padding-left: 15px;
    margin-bottom: 30px;
}

.seo-section-content p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: #444;
    font-size: 15px;
}

.seo-section-content p:last-child {
    margin-bottom: 0;
}

.seo-section-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Списки */
.seo-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.seo-list li {
    padding: 10px 0 10px 35px;
    position: relative;
    line-height: 1.7;
    color: #555;
    font-size: 15px;
    border-bottom: 1px dashed rgba(0,0,0,0.03);
}

.seo-list li:last-child {
    border-bottom: none;
}

.seo-list li::before {
    content: '▹';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.seo-list li i {
    color: var(--primary-color);
    margin-right: 12px;
    width: 20px;
    font-size: 16px;
}

.seo-list li strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* Акцентні блоки */
.results-highlight {
    background: linear-gradient(135deg, rgba(0,112,243,0.02), rgba(121,40,202,0.02));
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.results-highlight:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(0,112,243,0.04), rgba(121,40,202,0.04));
    box-shadow: 0 8px 25px rgba(0,112,243,0.05);
}

.results-highlight h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 20px;
}

.results-highlight p {
    margin-bottom: 10px;
}

.results-highlight .seo-list {
    margin: 10px 0 0;
}

/* Пріоритети */
.priority {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px currentColor;
}

.priority.high { 
    background: #ff5f56; 
    box-shadow: 0 0 10px rgba(255, 95, 86, 0.5);
}
.priority.medium { 
    background: #ffbd2e; 
    box-shadow: 0 0 10px rgba(255, 189, 46, 0.5);
}
.priority.low { 
    background: #27c93f; 
    box-shadow: 0 0 10px rgba(39, 201, 63, 0.5);
}

/* Декоративний скрол-бар */
.seo-scroll-bar {
    position: absolute;
    right: 4px;
    top: 40px;
    bottom: 40px;
    width: 4px;
    background: rgba(0,112,243,0.1);
    border-radius: 2px;
    pointer-events: none;
    z-index: 5;
}

.scroll-handle {
    position: absolute;
    width: 100%;
    height: 100px;
    background: var(--gradient);
    border-radius: 2px;
    animation: scrollIndicate 8s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes scrollIndicate {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(300px); }
}

/* Футер секції */
.seo-scroll-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px 30px;
    background: white;
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(0,112,243,0.1);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.seo-scroll-footer:hover {
    box-shadow: 0 15px 40px rgba(0,112,243,0.1);
    transform: translateY(-3px);
    border-color: rgba(0,112,243,0.2);
}

.seo-scroll-footer p {
    color: #444;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.seo-scroll-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    padding: 5px 15px;
    background: rgba(0,112,243,0.05);
    border-radius: 30px;
    margin-left: 5px;
}

.seo-scroll-footer a:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,112,243,0.3);
}

/* ========== АДАПТИВНІСТЬ ========== */
@media (max-width: 992px) {
    .seo-main-title {
        font-size: 28px;
    }
    
    .seo-scroll-content {
        padding: 30px;
    }
    
    .seo-h2::before {
        left: -30px;
    }
}

@media (max-width: 768px) {
    .seo-scroll-section {
        padding: 40px 0 60px;
    }
    
    .seo-scroll-content {
        padding: 25px;
        max-height: 500px;
    }
    
    .seo-main-title {
        font-size: 24px;
    }
    
    .seo-scroll-subtitle {
        font-size: 14px;
        gap: 10px;
    }
    
    .seo-scroll-subtitle::before,
    .seo-scroll-subtitle::after {
        width: 30px;
    }
    
    .seo-h2 {
        font-size: 22px;
        margin: 35px 0 20px;
    }
    
    .seo-h2::before {
        left: -20px;
        width: 3px;
    }
    
    .seo-h3 {
        font-size: 20px;
        margin: 25px 0 12px;
    }
    
    .seo-section-content {
        padding-left: 10px;
    }
    
    .seo-section-content p,
    .seo-list li {
        font-size: 14px;
    }
    
    .seo-list li {
        padding: 8px 0 8px 30px;
    }
    
    .seo-icon {
        width: 70px;
        height: 70px;
    }
    
    .seo-icon i {
        font-size: 30px;
    }
    
    .results-highlight {
        padding: 20px;
    }
    
    .seo-scroll-footer {
        padding: 15px 20px;
        max-width: 90%;
    }
    
    .seo-scroll-footer p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .seo-scroll-content {
        padding: 20px;
        max-height: 450px;
    }
    
    .seo-main-title {
        font-size: 20px;
    }
    
    .seo-scroll-subtitle {
        flex-direction: column;
        gap: 5px;
    }
    
    .seo-scroll-subtitle::before,
    .seo-scroll-subtitle::after {
        display: none;
    }
    
    .seo-h2 {
        font-size: 20px;
        margin: 30px 0 15px;
    }
    
    .seo-h2::before {
        left: -15px;
    }
    
    .seo-h2::after {
        width: 60px;
    }
    
    .seo-h3 {
        font-size: 18px;
        margin: 20px 0 10px;
    }
    
    .seo-section-content {
        padding-left: 5px;
    }
    
    .seo-list li {
        padding-left: 25px;
        font-size: 13px;
    }
    
    .seo-list li::before {
        left: 5px;
        font-size: 16px;
    }
    
    .seo-icon {
        width: 60px;
        height: 60px;
    }
    
    .seo-icon i {
        font-size: 26px;
    }
    
    .results-highlight {
        padding: 15px;
    }
    
    .results-highlight h3 {
        font-size: 18px;
    }
    
    .seo-scroll-footer p {
        flex-direction: column;
        gap: 10px;
    }
    
    .seo-scroll-footer a {
        margin-left: 0;
    }
}

/* Для дуже маленьких екранів */
@media (max-width: 360px) {
    .seo-h2::before {
        display: none;
    }
    
    .seo-h2 {
        padding-left: 10px;
    }
}


/* ========== НОВИЙ ПРЕМІАЛЬНИЙ БЛОК СТАТИСТИКИ ========== */
.stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.premium-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 112, 243, 0.2);
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stats-badge {
    background: rgba(0, 112, 243, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stats-dots {
    display: flex;
    gap: 5px;
}

.stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: var(--transition);
}

.stats-dots span:nth-child(1) { background: #ff5f56; }
.stats-dots span:nth-child(2) { background: #ffbd2e; }
.stats-dots span:nth-child(3) { background: #27c93f; }

.stats-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-block {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 15px;
    border-radius: 20px;
    transition: var(--transition);
}

.stat-block.primary {
    background: linear-gradient(135deg, rgba(0, 112, 243, 0.05), rgba(121, 40, 202, 0.05));
}

.stat-block.secondary {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.05), rgba(0, 112, 243, 0.05));
}

.stat-block:hover {
    background: linear-gradient(135deg, rgba(0, 112, 243, 0.1), rgba(121, 40, 202, 0.1));
    transform: scale(1.02);
}

.stat-visual {
    position: relative;
    flex-shrink: 0;
}

/* Кругова діаграма */
.circular-progress {
    position: relative;
    width: 90px;
    height: 90px;
}

.circular-chart {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 8;
}

.circle-progress {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    animation: progress 1.5s ease-out forwards;
}

.circle-1 {
    stroke: url(#gradient);
}

.progress-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 283;
    }
}

/* Графік зростання */
.growth-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 120px;
    width: 90px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #0070f3, #7928ca);
    border-radius: 6px 6px 0 0;
    transition: height 0.3s ease;
    animation: barGrow 1s ease-out forwards;
    transform-origin: bottom;
}

@keyframes barGrow {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

.chart-bar.bar-1 { animation-delay: 0.1s; }
.chart-bar.bar-2 { animation-delay: 0.2s; }
.chart-bar.bar-3 { animation-delay: 0.3s; }
.chart-bar.bar-4 { animation-delay: 0.4s; }
.chart-bar.bar-5 { animation-delay: 0.5s; }

.stat-trend {
    position: absolute;
    top: -10px;
    right: -10px;
    background: white;
    border-radius: 30px;
    padding: 5px 12px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat-trend i {
    font-size: 12px;
}

.stat-trend.positive i {
    color: #00c853;
}

.stat-info {
    flex: 1;
}

.stat-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.stat-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.stat-detail {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding-top: 5px;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.detail-label {
    color: #999;
}

.detail-value {
    font-weight: 600;
    color: var(--primary-color);
}

.stats-divider {
    position: relative;
    text-align: center;
    margin: 5px 0;
}

.stats-divider span {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 3px;
}

/* Футер статистики */
.stats-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
}

.stats-source {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
}

.stats-source i {
    color: #00c853;
    font-size: 12px;
}

.stats-meta {
    display: flex;
    gap: 8px;
    color: #999;
}

.stats-meta span {
    background: rgba(0,112,243,0.05);
    padding: 3px 8px;
    border-radius: 12px;
}

/* Міні-картки */
.stats-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.stats-mini-card {
    background: white;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}

.stats-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,112,243,0.1);
    border-color: var(--primary-color);
}

.mini-icon {
    width: 40px;
    height: 40px;
    background: rgba(0,112,243,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-icon i {
    font-size: 18px;
    color: var(--primary-color);
}

.mini-content {
    flex: 1;
}

.mini-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}

.mini-label {
    font-size: 11px;
    color: #999;
}

/* Адаптивність */
@media (max-width: 992px) {
    .stats-showcase {
        max-width: 450px;
    }
    
    .stat-block {
        padding: 12px;
    }
    
    .stat-info h4 {
        font-size: 14px;
    }
    
    .stat-info p {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .stats-showcase {
        max-width: 100%;
        margin-top: 30px;
    }
    
    .premium-card {
        padding: 20px;
    }
    
    .stats-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stat-block {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-trend {
        position: static;
        margin-top: 10px;
        display: inline-flex;
    }
    
    .stats-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .stats-meta {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stats-mini-grid {
        grid-template-columns: 1fr;
    }
}

/* Анімація для floating icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,112,243,0.2);
    animation: floatAround 6s ease-in-out infinite;
    z-index: 2;
}

.float-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.icon-1 { top: 10%; left: 10%; animation-delay: 0s; }
.icon-2 { top: 60%; left: 20%; animation-delay: 1s; }
.icon-3 { top: 30%; right: 15%; animation-delay: 2s; }
.icon-4 { bottom: 20%; right: 25%; animation-delay: 3s; }
.icon-5 { top: 70%; right: 40%; animation-delay: 4s; }

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -15px) rotate(5deg);
    }
    50% {
        transform: translate(15px, -5px) rotate(10deg);
    }
    75% {
        transform: translate(5px, -20px) rotate(5deg);
    }
}

/* Додати градієнт для SVG */
svg defs {
    position: absolute;
    width: 0;
    height: 0;
}


/* ========== ПРЕМІАЛЬНІ ХЛІБНІ КРИХТИ ========== */
.breadcrumbs {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    padding: 18px 0;
    margin-top: 54px;
    border-bottom: 1px solid rgba(0, 112, 243, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    z-index: 5;
    overflow: hidden;
}

/* Декоративний елемент - градієнтна лінія зверху */
.breadcrumbs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0070f3, #7928ca, #ff4b4b, #7928ca, #0070f3);
    background-size: 200% 100%;
    animation: gradientMove 10s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Контейнер */
.breadcrumbs .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Список хлібних крихт */
.breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Елементи списку */
.breadcrumbs-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    position: relative;
}

/* Стиль для розділювача (замість звичайного слеша) */
.breadcrumbs-list li:not(:last-child)::after {
    content: '›';
    margin-left: 12px;
    color: #0070f3;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    opacity: 0.7;
}

/* Посилання */
.breadcrumbs-list li a {
    color: #0070f3;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 12px;
    background: rgba(0, 112, 243, 0.05);
    border-radius: 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid transparent;
}

.breadcrumbs-list li a:hover {
    background: rgba(0, 112, 243, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 112, 243, 0.15);
    border-color: rgba(0, 112, 243, 0.2);
}

.breadcrumbs-list li a:active {
    transform: translateY(0);
}

/* Іконка дому (додамо через псевдоелемент) */
.breadcrumbs-list li:first-child a {
    padding-left: 10px;
}

.breadcrumbs-list li:first-child a::before {
    content: '\f015';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 6px;
    font-size: 12px;
    color: #0070f3;
}

/* Останній елемент (поточна сторінка) */
.breadcrumbs-list li:last-child span {
    color: #333;
    font-weight: 700;
    font-size: 14px;
    background: linear-gradient(135deg, #0070f3, #7928ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(0, 112, 243, 0.3);
    box-shadow: 0 2px 8px rgba(0, 112, 243, 0.1);
    position: relative;
    letter-spacing: 0.3px;
}

/* Додаємо блимаючий ефект для останнього елемента */
.breadcrumbs-list li:last-child span::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #0070f3, #7928ca, #0070f3);
    border-radius: 32px;
    z-index: -1;
    opacity: 0.2;
    filter: blur(4px);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

/* Схема розмітка - прихована але доступна */
[itemprop="name"] {
    /* Нормальне відображення */
}

/* Додаємо іконку для поточної сторінки (необов'язково) */
.breadcrumbs-list li:last-child span::before {
    content: '\f0a9';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    font-size: 12px;
    background: linear-gradient(135deg, #0070f3, #7928ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========== АДАПТИВНІСТЬ ========== */

/* Планшети */
@media (max-width: 992px) {
    .breadcrumbs {
        padding: 16px 0;
        margin-top: 54px;
    }
    
    .breadcrumbs-list {
        gap: 10px;
    }
    
    .breadcrumbs-list li a,
    .breadcrumbs-list li:last-child span {
        font-size: 13px;
        padding: 5px 10px;
    }
}

/* Мобільні пристрої */
@media (max-width: 768px) {
    .breadcrumbs {
        margin-top: 54px;
        padding: 14px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #0070f3 #f0f0f0;
    }
    
    /* Стилізація скролбару для мобільних */
    .breadcrumbs::-webkit-scrollbar {
        height: 3px;
    }
    
    .breadcrumbs::-webkit-scrollbar-track {
        background: #f0f0f0;
    }
    
    .breadcrumbs::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, #0070f3, #7928ca);
        border-radius: 3px;
    }
    
    .breadcrumbs-list {
        flex-wrap: nowrap;
        padding-bottom: 5px;
        gap: 15px;
    }
    
    .breadcrumbs-list li {
        white-space: nowrap;
    }
    
    .breadcrumbs-list li:not(:last-child)::after {
        margin-left: 15px;
        font-size: 16px;
    }
    
    .breadcrumbs-list li a {
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .breadcrumbs-list li:last-child span {
        padding: 4px 12px;
        font-size: 12px;
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .breadcrumbs-list li:first-child a::before {
        font-size: 11px;
    }
}

/* Маленькі мобільні */
@media (max-width: 480px) {
    .breadcrumbs {
        margin-top: 54px;
        padding: 12px 0;
    }
    
    .breadcrumbs-list {
        gap: 12px;
    }
    
    .breadcrumbs-list li:not(:last-child)::after {
        margin-left: 12px;
    }
    
    .breadcrumbs-list li a {
        padding: 3px 6px;
        font-size: 11px;
    }
    
    .breadcrumbs-list li:last-child span {
        padding: 3px 10px;
        font-size: 11px;
        max-width: 150px;
    }
    
    .breadcrumbs-list li:first-child a::before {
        font-size: 10px;
        margin-right: 4px;
    }
}

/* ========== ТЕМНА ТЕМА (якщо знадобиться) ========== */
.breadcrumbs.dark-theme {
    background: linear-gradient(135deg, #1a1a2a 0%, #16213e 100%);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.breadcrumbs.dark-theme::before {
    opacity: 0.7;
}

.breadcrumbs.dark-theme .breadcrumbs-list li a {
    color: #66b0ff;
    background: rgba(102, 176, 255, 0.1);
}

.breadcrumbs.dark-theme .breadcrumbs-list li a:hover {
    background: rgba(102, 176, 255, 0.2);
}

.breadcrumbs.dark-theme .breadcrumbs-list li:not(:last-child)::after {
    color: #66b0ff;
}

.breadcrumbs.dark-theme .breadcrumbs-list li:last-child span {
    background: linear-gradient(135deg, #66b0ff, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-color: rgba(102, 176, 255, 0.3);
}

/* ========== АНІМАЦІЯ ПОЯВИ ========== */
@keyframes breadcrumbsFadeIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumbs {
    animation: breadcrumbsFadeIn 0.5s ease forwards;
}

/* ========== ДОДАТКОВІ ЕФЕКТИ ========== */

/* Ефект при наведенні на весь блок (опціонально) */
.breadcrumbs:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0f5ff 100%);
}

/* Стиль для активного посилання (коли натиснули) */
.breadcrumbs-list li a:active {
    transform: scale(0.97);
}

/* Іконка для зовнішніх посилань (якщо є) */
.breadcrumbs-list li a[target="_blank"]::after {
    content: '\f08e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    margin-left: 5px;
    opacity: 0.6;
}


/* ========== GEO-СПЕЦИФІЧНІ СТИЛІ ========== */

/* Hero секція */
.geo-hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdef5 100%);
}

/* Карта в hero */
.geo-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.geo-map-card {
    background: white;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.map-pulse {
    position: absolute;
    top: 20%;
    left: 30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,112,243,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseMap 4s ease-in-out infinite;
}

@keyframes pulseMap {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0.1; }
}

.map-markers {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f5f7fa, #e9eef5);
    border-radius: 20px;
    margin-bottom: 20px;
}

.marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: markerPulse 2s ease-in-out infinite;
}

.marker i {
    font-size: 24px;
    color: var(--primary-color);
    filter: drop-shadow(0 5px 10px rgba(0,112,243,0.3));
}

.marker-label {
    font-size: 10px;
    font-weight: 600;
    background: white;
    padding: 2px 6px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-top: 2px;
}

@keyframes markerPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.marker-1 { top: 20%; left: 40%; }
.marker-2 { top: 60%; left: 70%; }
.marker-3 { top: 30%; left: 15%; }
.marker-4 { top: 70%; left: 30%; }
.marker-5 { top: 45%; left: 55%; }

.geo-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.geo-stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(0,112,243,0.03);
    border-radius: 12px;
}

.geo-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.geo-stat-label {
    font-size: 11px;
    color: #666;
    margin: 3px 0;
}

.geo-stat-desc {
    font-size: 9px;
    color: #999;
}

.geo-gmb-card {
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-radius: 16px;
    padding: 15px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gmb-header i {
    font-size: 24px;
    margin-right: 10px;
}

.gmb-header span {
    font-weight: 600;
}

.gmb-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.gmb-stars i {
    color: #ffc107;
    font-size: 14px;
}

.gmb-rating {
    margin-left: 5px;
    font-weight: 700;
}

/* About секція */
.geo-about {
    padding: 80px 0;
    background: white;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    margin: 20px 0 25px;
    line-height: 1.3;
}

.about-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.about-feature i {
    width: 50px;
    height: 50px;
    background: rgba(0,112,243,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
}

.about-feature h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.about-feature p {
    color: #666;
    font-size: 14px;
}

.about-stats {
    display: flex;
    gap: 30px;
}

.stat-circle {
    flex: 1;
    background: linear-gradient(135deg, #f5f7fa, #ffffff);
    border-radius: 30px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-circle.secondary {
    background: linear-gradient(135deg, #e3f2fd, #ffffff);
}

.circle-value {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.circle-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.circle-desc {
    font-size: 13px;
    color: #666;
}

/* ========== УНІКАЛЬНІ СТИЛІ ДЛЯ GEO-ПРОЦЕСУ ========== */
.geo-process-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.geo-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.geo-process-item {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.02);
    z-index: 2;
}

.geo-process-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0,112,243,0.1);
}

.geo-process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 42px;
    font-weight: 800;
    color: rgba(0,112,243,0.08);
    font-family: 'Inter', sans-serif;
    line-height: 1;
    transition: var(--transition);
}

.geo-process-item:hover .geo-process-number {
    color: rgba(0,112,243,0.15);
    transform: scale(1.1);
}

.geo-process-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.geo-process-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}

.geo-process-item:hover .geo-process-icon::after {
    opacity: 1;
}

.geo-process-icon i {
    font-size: 34px;
    position: relative;
    z-index: 2;
}

/* Індивідуальні кольори для кожного кроку */
.geo-process-item:nth-child(1) .geo-process-icon {
    background: rgba(0,112,243,0.12);
}
.geo-process-item:nth-child(1) .geo-process-icon i {
    color: #0070f3;
}

.geo-process-item:nth-child(2) .geo-process-icon {
    background: rgba(121,40,202,0.12);
}
.geo-process-item:nth-child(2) .geo-process-icon i {
    color: #7928ca;
}

.geo-process-item:nth-child(3) .geo-process-icon {
    background: rgba(255,75,75,0.12);
}
.geo-process-item:nth-child(3) .geo-process-icon i {
    color: #ff4b4b;
}

.geo-process-item:nth-child(4) .geo-process-icon {
    background: rgba(0,200,83,0.12);
}
.geo-process-item:nth-child(4) .geo-process-icon i {
    color: #00c853;
}

.geo-process-item:nth-child(5) .geo-process-icon {
    background: rgba(255,152,0,0.12);
}
.geo-process-item:nth-child(5) .geo-process-icon i {
    color: #ff9800;
}

.geo-process-item:nth-child(6) .geo-process-icon {
    background: rgba(0,112,243,0.12);
}
.geo-process-item:nth-child(6) .geo-process-icon i {
    color: #0070f3;
}

.geo-process-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.geo-process-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.geo-process-item:hover h3::after {
    width: 60px;
}

.geo-process-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.geo-process-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.geo-process-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
    transition: var(--transition);
}

.geo-process-item:hover .geo-process-list li {
    transform: translateX(3px);
}

.geo-process-list li i {
    font-size: 14px;
    width: 18px;
    color: #00c853;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .geo-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .geo-process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .geo-process-item {
        padding: 25px;
    }
    
    .geo-process-icon {
        width: 70px;
        height: 70px;
    }
    
    .geo-process-icon i {
        font-size: 28px;
    }
    
    .geo-process-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .geo-process-item {
        padding: 20px;
    }
    
    .geo-process-list li {
        font-size: 13px;
    }
}

/* Переваги */
.geo-advantages {
    padding: 80px 0;
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.advantage-card {
    background: linear-gradient(135deg, #f5f7fa, #ffffff);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,112,243,0.05);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: rgba(0,112,243,0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.advantage-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.advantage-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.advantage-stat {
    display: flex;
    flex-direction: column;
    padding: 15px 0 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-text {
    font-size: 12px;
    color: #999;
}

/* Локація */
.location-map {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.location-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.location-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.location-info p {
    color: #666;
    margin-bottom: 30px;
}

.location-details {
    margin-bottom: 30px;
}

.location-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.location-item i {
    width: 40px;
    height: 40px;
    background: rgba(0,112,243,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
}

.location-item strong {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 3px;
}

.location-item span,
.location-item a {
    font-size: 16px;
    color: var(--dark-color);
    text-decoration: none;
}

.location-map-preview {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #f5f7fa, #e9eef5);
    border-radius: 20px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-placeholder i.fa-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    color: rgba(0,112,243,0.1);
}

.map-marker-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.map-marker-large i {
    font-size: 40px;
    color: var(--primary-color);
    filter: drop-shadow(0 5px 10px rgba(0,112,243,0.3));
    animation: markerBounce 2s ease-in-out infinite;
}

.map-marker-large span {
    background: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 5px;
}

@keyframes markerBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0,112,243,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,112,243,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-wrapper,
    .location-card {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .process-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .geo-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .location-card {
        padding: 25px;
    }
    
    .location-map-preview {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .about-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .map-markers {
        height: 150px;
    }
    
    .marker i {
        font-size: 18px;
    }
    
    .marker-label {
        font-size: 8px;
    }
}

/* ========== ОНОВЛЕНІ GEO СТИЛІ ========== */

/* Блок статистики GEO з фоном */
.geo-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.geo-stats-card {
    background: linear-gradient(145deg, #ffffff, #f8faff);
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(0,112,243,0.15), 0 0 0 1px rgba(0,112,243,0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.geo-stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,112,243,0.03) 0%, transparent 70%);
    animation: rotateBg 20s linear infinite;
}

.geo-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.geo-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0,112,243,0.1), rgba(121,40,202,0.1));
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid rgba(0,112,243,0.2);
}

.geo-stats-badge i {
    font-size: 14px;
}

.geo-stats-dots {
    display: flex;
    gap: 5px;
}

.geo-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: var(--transition);
}

.geo-stats-dots span:nth-child(1) { background: #ff5f56; }
.geo-stats-dots span:nth-child(2) { background: #ffbd2e; }
.geo-stats-dots span:nth-child(3) { background: #27c93f; }

/* Карта */
.geo-map-container {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #e8f0fe, #d9e8ff);
    border-radius: 24px;
    margin-bottom: 25px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}

.geo-map-pulse {
    position: absolute;
    top: 30%;
    left: 40%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0,112,243,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: geoPulse 4s ease-in-out infinite;
}

@keyframes geoPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0.2; }
}

.geo-cities {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.city-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -50%);
    animation: cityFloat 3s ease-in-out infinite;
}

.city-marker i {
    font-size: 24px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
    transition: var(--transition);
}

.city-marker:hover i {
    transform: scale(1.2);
}

.city-label {
    background: white;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2px;
    border: 1px solid rgba(0,112,243,0.2);
}

@keyframes cityFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-5px); }
}

.geo-map-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0,112,243,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,112,243,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 2;
}

/* Цифри статистики */
.geo-stats-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.geo-stat-number {
    text-align: center;
    padding: 15px 5px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid rgba(0,112,243,0.1);
    transition: var(--transition);
}

.geo-stat-number:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 25px rgba(0,112,243,0.1);
    border-color: rgba(0,112,243,0.3);
}

.geo-stat-value {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,112,243,0.2);
}

.geo-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.geo-stat-desc {
    font-size: 10px;
    color: #666;
}

/* Футер статистики */
.geo-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0,112,243,0.1);
    position: relative;
    z-index: 2;
}

.geo-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #666;
}

.geo-stats-source i {
    color: #00c853;
    font-size: 12px;
}

.geo-stats-tools {
    display: flex;
    gap: 8px;
}

.geo-stats-tools span {
    background: rgba(0,112,243,0.05);
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid rgba(0,112,243,0.1);
}

/* Плаваючі елементи */
.geo-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.geo-float {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,112,243,0.15);
    animation: geoFloat 6s ease-in-out infinite;
    border: 1px solid rgba(0,112,243,0.2);
}

.geo-float i {
    font-size: 18px;
    color: var(--primary-color);
}

.geo-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.geo-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.geo-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.geo-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes geoFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

/* Оновлені кольори для процесу */
.process-card:nth-child(1) .process-icon { background: rgba(0,112,243,0.1); }
.process-card:nth-child(1) .process-icon i { color: #0070f3; }
.process-card:nth-child(2) .process-icon { background: rgba(121,40,202,0.1); }
.process-card:nth-child(2) .process-icon i { color: #7928ca; }
.process-card:nth-child(3) .process-icon { background: rgba(255,75,75,0.1); }
.process-card:nth-child(3) .process-icon i { color: #ff4b4b; }
.process-card:nth-child(4) .process-icon { background: rgba(0,200,83,0.1); }
.process-card:nth-child(4) .process-icon i { color: #00c853; }
.process-card:nth-child(5) .process-icon { background: rgba(255,152,0,0.1); }
.process-card:nth-child(5) .process-icon i { color: #ff9800; }
.process-card:nth-child(6) .process-icon { background: rgba(0,112,243,0.1); }
.process-card:nth-child(6) .process-icon i { color: #0070f3; }

/* Адаптивність */
@media (max-width: 768px) {
    .geo-stats-numbers {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .geo-stat-number {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        text-align: left;
    }
    
    .geo-stat-value {
        margin-bottom: 0;
        font-size: 30px;
    }
    
    .geo-stat-label {
        margin-bottom: 0;
    }
    
    .geo-map-container {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .geo-stats-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .geo-stats-tools {
        flex-wrap: wrap;
    }
}

/* ========== СТИЛІ ДЛЯ SEO НА ЕТАПІ РОЗРОБКИ ========== */

.devseo-hero {
    background: linear-gradient(135deg, #fff5f5 0%, #fff0f0 100%);
}

.devseo-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.devseo-stats-card {
    background: white;
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(255,75,75,0.2), 0 0 0 1px rgba(255,75,75,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.devseo-stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,75,75,0.03) 0%, transparent 70%);
    animation: rotateBg 20s linear infinite;
}

.devseo-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.devseo-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,75,75,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #ff4b4b;
}

.devseo-stats-badge i {
    font-size: 14px;
}

.devseo-stats-dots {
    display: flex;
    gap: 5px;
}

.devseo-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.devseo-stats-dots span:nth-child(1) { background: #ff5f56; }
.devseo-stats-dots span:nth-child(2) { background: #ffbd2e; }
.devseo-stats-dots span:nth-child(3) { background: #27c93f; }

.devseo-main-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.devseo-stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(255,75,75,0.02);
    border-radius: 20px;
    border: 1px solid rgba(255,75,75,0.05);
}

.devseo-stat-value {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.devseo-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.devseo-stat-desc {
    font-size: 11px;
    color: #666;
}

.devseo-timeline {
    margin-bottom: 25px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 12px;
    transition: var(--transition);
}

.timeline-item.good {
    background: rgba(0,200,83,0.05);
}

.timeline-item.bad {
    background: rgba(255,75,75,0.05);
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00c853;
}

.timeline-item.bad .timeline-dot {
    background: #ff4b4b;
}

.timeline-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
}

.timeline-value {
    font-size: 16px;
    font-weight: 700;
    color: #ff4b4b;
}

.timeline-item.good .timeline-value {
    color: #00c853;
}

.devseo-mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 12px;
}

.mini-stat i {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4b4b;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.mini-stat-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}

.mini-stat-label {
    font-size: 11px;
    color: #666;
}

.devseo-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,75,75,0.1);
}

.devseo-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #666;
}

.devseo-stats-source i {
    color: #00c853;
}

.devseo-stats-tools {
    display: flex;
    gap: 8px;
}

.devseo-stats-tools span {
    background: rgba(255,75,75,0.05);
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 600;
    color: #ff4b4b;
}

.devseo-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.devseo-float {
    position: absolute;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255,75,75,0.15);
    animation: devseoFloat 6s ease-in-out infinite;
    border: 1px solid rgba(255,75,75,0.2);
}

.devseo-float i {
    font-size: 20px;
    color: #ff4b4b;
}

.devseo-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.devseo-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.devseo-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.devseo-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes devseoFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

/* Унікальна пропозиція */
.devseo-usp {
    padding: 60px 0;
    background: white;
}

/* Проблема vs Рішення */
.devseo-problem-solution {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.comparison-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.comparison-card.bad {
    border-top: 5px solid #ff4b4b;
}

.comparison-card.good {
    border-top: 5px solid #00c853;
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.comparison-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.comparison-card.bad .comparison-icon {
    background: rgba(255,75,75,0.1);
    color: #ff4b4b;
}

.comparison-card.good .comparison-icon {
    background: rgba(0,200,83,0.1);
    color: #00c853;
}

.comparison-header h3 {
    font-size: 22px;
    margin: 0;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
}

.comparison-list li i.fa-times {
    color: #ff4b4b;
}

.comparison-list li i.fa-check {
    color: #00c853;
}

.comparison-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 16px;
}

.comparison-price strong {
    font-size: 24px;
    color: var(--dark-color);
}

/* Що входить в послугу */
.devseo-includes {
    padding: 80px 0;
    background: white;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.includes-card {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 30px;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(255,75,75,0.05);
}

.includes-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,75,75,0.1);
    border-color: rgba(255,75,75,0.2);
}

.includes-phase {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #999;
}

.includes-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.includes-icon i {
    font-size: 30px;
}

.includes-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.includes-list {
    list-style: none;
    padding: 0;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.includes-list li i {
    color: #00c853;
}

/* ========== АДАПТИВНІСТЬ ДЛЯ ЩО ВХОДИТЬ ========== */
@media (max-width: 1024px) {
    .includes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .includes-grid {
        grid-template-columns: 1fr; /* Вертикальне розташування */
        gap: 20px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .includes-card {
        padding: 25px;
        width: 100%;
    }
    
    .includes-phase {
        font-size: 11px;
        top: 15px;
        right: 15px;
    }
    
    .includes-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .includes-icon i {
        font-size: 24px;
    }
    
    .includes-card h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .includes-list li {
        font-size: 13px;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .includes-card {
        padding: 20px;
    }
    
    .includes-card h3 {
        font-size: 16px;
    }
    
    .includes-list li {
        font-size: 12px;
    }
}

/* Проблема vs Рішення */
.devseo-problem-solution {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.comparison-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

/* ========== АДАПТИВНІСТЬ ДЛЯ ПРОБЛЕМА VS РІШЕННЯ ========== */
@media (max-width: 992px) {
    .comparison-grid {
        gap: 20px;
    }
    
    .comparison-card {
        padding: 30px;
    }
    
    .comparison-header h3 {
        font-size: 20px;
    }
    
    .comparison-list li {
        font-size: 14px;
    }
    
    .comparison-price strong {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr; /* Вертикальне розташування */
        gap: 25px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .comparison-card {
        padding: 30px;
        width: 100%;
    }
    
    .comparison-card.bad {
        border-top-width: 4px;
    }
    
    .comparison-card.good {
        border-top-width: 4px;
    }
    
    .comparison-header {
        margin-bottom: 20px;
    }
    
    .comparison-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .comparison-header h3 {
        font-size: 18px;
    }
    
    .comparison-list {
        margin-bottom: 25px;
    }
    
    .comparison-list li {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .comparison-price {
        font-size: 14px;
    }
    
    .comparison-price strong {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .comparison-card {
        padding: 25px;
    }
    
    .comparison-header {
        gap: 10px;
    }
    
    .comparison-icon {
        width: 45px;
        height: 45px;
    }
    
    .comparison-header h3 {
        font-size: 16px;
    }
    
    .comparison-list li {
        font-size: 12px;
    }
    
    .comparison-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Робочий процес */
.devseo-workflow {
    padding: 80px 0;
    background: #f8f9fa;
}

.workflow-timeline {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.workflow-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #ff4b4b, #ff8f4b);
    opacity: 0.3;
}

.workflow-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.workflow-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(255,75,75,0.2);
}

.workflow-content {
    flex: 1;
    padding-top: 10px;
}

.workflow-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.workflow-content p {
    color: #666;
    line-height: 1.6;
}

/* Переваги */
.devseo-advantages {
    padding: 80px 0;
    background: white;
}

.advantages-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.advantages-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.advantages-list li i {
    width: 50px;
    height: 50px;
    background: rgba(255,75,75,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    color: #ff4b4b;
}

.advantages-list li h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.advantages-list li p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ВИПРАВЛЕНИЙ ГРАФІК */
.advantages-graph {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,75,75,0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.graph-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.graph-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(255,75,75,0.1);
}

.graph-label {
    width: 140px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
    display: flex;
    flex-direction: column;
}

.graph-label small {
    font-size: 12px;
    color: #999;
    font-weight: normal;
}

.graph-bar-container {
    flex: 1;
    height: 40px;
    background: #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.graph-bar {
    height: 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    transition: width 1s ease;
    position: relative;
    overflow: hidden;
}

.graph-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.graph-bar.bar-good {
    background: linear-gradient(135deg, #00c853, #69f0ae);
}

.graph-bar.bar-bad {
    background: linear-gradient(135deg, #ff4b4b, #ff8f4b);
}

.graph-value {
    margin-left: 15px;
    font-weight: 700;
    font-size: 16px;
    min-width: 70px;
    text-align: right;
}

.graph-value.good {
    color: #00c853;
}

.graph-value.bad {
    color: #ff4b4b;
}

.graph-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255,75,75,0.03);
    border-radius: 12px;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid #ff4b4b;
}

.graph-note i {
    color: #ff4b4b;
    font-size: 18px;
}

.graph-note strong {
    color: #ff4b4b;
    font-weight: 600;
}

/* Адаптивність */
@media (max-width: 768px) {
    .advantages-wrapper {
        grid-template-columns: 1fr;
    }
    
    .graph-item {
        flex-wrap: wrap;
    }
    
    .graph-label {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .graph-value {
        margin-left: 0;
        margin-top: 5px;
        text-align: left;
    }
}


/* ========== СТИЛІ ДЛЯ LINK BUILDING ========== */

.linkbuilding-hero {
    background: linear-gradient(135deg, #f0fff4 0%, #e0ffe8 100%);
}

.linkbuilding-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.linkbuilding-stats-card {
    background: white;
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(0,200,83,0.2), 0 0 0 1px rgba(0,200,83,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.linkbuilding-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.linkbuilding-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,200,83,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #00c853;
}

.linkbuilding-stats-dots {
    display: flex;
    gap: 5px;
}

.linkbuilding-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.linkbuilding-stats-dots span:nth-child(1) { background: #ff5f56; }
.linkbuilding-stats-dots span:nth-child(2) { background: #ffbd2e; }
.linkbuilding-stats-dots span:nth-child(3) { background: #27c93f; }

.linkbuilding-main-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.linkbuilding-stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(0,200,83,0.02);
    border-radius: 20px;
    border: 1px solid rgba(0,200,83,0.05);
}

.linkbuilding-stat-value {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.linkbuilding-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.linkbuilding-stat-desc {
    font-size: 11px;
    color: #666;
}

.linkbuilding-dr-meter {
    margin-bottom: 25px;
}

.dr-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.dr-label {
    width: 70px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-color);
}

.dr-bar-container {
    flex: 1;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.dr-bar {
    height: 100%;
    border-radius: 4px;
}

.dr-value {
    width: 60px;
    font-size: 13px;
    font-weight: 600;
    color: #00c853;
    text-align: right;
}

.linkbuilding-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.type-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 30px;
    font-size: 12px;
    color: var(--dark-color);
}

.type-item i {
    color: #00c853;
    font-size: 14px;
}

.linkbuilding-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0,200,83,0.1);
}

.linkbuilding-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #666;
}

.linkbuilding-stats-source i {
    color: #00c853;
}

.linkbuilding-stats-tools {
    display: flex;
    gap: 8px;
}

.linkbuilding-stats-tools span {
    background: rgba(0,200,83,0.05);
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 600;
    color: #00c853;
}

.linkbuilding-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.linkbuilding-float {
    position: absolute;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,200,83,0.15);
    animation: linkbuildingFloat 6s ease-in-out infinite;
    border: 1px solid rgba(0,200,83,0.2);
}

.linkbuilding-float i {
    font-size: 20px;
    color: #00c853;
}

.linkbuilding-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.linkbuilding-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.linkbuilding-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.linkbuilding-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes linkbuildingFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

.linkbuilding-about {
    padding: 80px 0;
    background: white;
}

.linkbuilding-types-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.type-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.type-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.type-icon i {
    font-size: 30px;
}

.type-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.type-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.type-list {
    list-style: none;
    padding: 0;
}

.type-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #555;
}

.type-list li i {
    color: #00c853;
    font-size: 12px;
}

.linkbuilding-process {
    padding: 80px 0;
    background: white;
}

.process-steps {
    max-width: 800px;
    margin: 50px auto 0;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0,200,83,0.2);
}

.step-content {
    flex: 1;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.linkbuilding-advantages {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .linkbuilding-main-stats {
        grid-template-columns: 1fr;
    }
    
    .linkbuilding-types {
        grid-template-columns: 1fr;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .dr-item {
        flex-wrap: wrap;
    }
    
    .dr-label {
        width: 100%;
    }
    
    .dr-value {
        width: 100%;
        text-align: left;
    }
}

/* ========== СТИЛІ ДЛЯ ВНУТРІШНЬОЇ ОПТИМІЗАЦІЇ ========== */

.onpage-hero {
    background: linear-gradient(135deg, #f8f3ff 0%, #f0e6ff 100%);
}

.onpage-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.onpage-stats-card {
    background: white;
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(121,40,202,0.2), 0 0 0 1px rgba(121,40,202,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.onpage-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.onpage-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(121,40,202,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #7928ca;
}

.onpage-stats-dots {
    display: flex;
    gap: 5px;
}

.onpage-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.onpage-stats-dots span:nth-child(1) { background: #ff5f56; }
.onpage-stats-dots span:nth-child(2) { background: #ffbd2e; }
.onpage-stats-dots span:nth-child(3) { background: #27c93f; }

.onpage-main-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.onpage-stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(121,40,202,0.02);
    border-radius: 20px;
    border: 1px solid rgba(121,40,202,0.05);
}

.onpage-stat-value {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.onpage-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.onpage-stat-desc {
    font-size: 11px;
    color: #666;
}

.onpage-factors {
    margin-bottom: 25px;
}

.factor-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.factor-label {
    width: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-color);
}

.factor-bar-container {
    flex: 1;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.factor-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.factor-value {
    width: 45px;
    font-size: 13px;
    font-weight: 600;
    color: #7928ca;
    text-align: right;
}

.onpage-cwv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.cwv-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 10px;
    background: #f8f9fa;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 500;
    color: var(--dark-color);
}

.cwv-item i {
    font-size: 14px;
}

.onpage-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(121,40,202,0.1);
}

.onpage-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #666;
}

.onpage-stats-source i {
    color: #00c853;
}

.onpage-stats-tools {
    display: flex;
    gap: 8px;
}

.onpage-stats-tools span {
    background: rgba(121,40,202,0.05);
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 600;
    color: #7928ca;
}

.onpage-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.onpage-float {
    position: absolute;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(121,40,202,0.15);
    animation: onpageFloat 6s ease-in-out infinite;
    border: 1px solid rgba(121,40,202,0.2);
}

.onpage-float i {
    font-size: 20px;
    color: #7928ca;
}

.onpage-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.onpage-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.onpage-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.onpage-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes onpageFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

.onpage-about {
    padding: 80px 0;
    background: white;
}

.onpage-includes {
    padding: 80px 0;
    background: #f8f9fa;
}

.onpage-includes .includes-grid {
    grid-template-columns: repeat(4, 1fr);
}

.onpage-advantages {
    padding: 80px 0;
    background: white;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .onpage-includes .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .onpage-main-stats {
        grid-template-columns: 1fr;
    }
    
    .onpage-cwv {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .onpage-includes .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .factor-item {
        flex-wrap: wrap;
    }
    
    .factor-label {
        width: 100%;
    }
    
    .factor-value {
        width: 100%;
        text-align: left;
    }
    
    .onpage-stats-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ========== СТИЛІ ДЛЯ КОМПЛЕКСНОГО ПРОСУВАННЯ ========== */

.complex-hero {
    background: linear-gradient(135deg, #f0f5ff 0%, #f5f0ff 50%, #fff0f0 100%);
}

.complex-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.complex-stats-card {
    background: white;
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(0,0,0,0.15), 0 0 0 1px rgba(121,40,202,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.complex-stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(121,40,202,0.03) 0%, transparent 70%);
    animation: rotateBg 20s linear infinite;
}

.complex-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.complex-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0,112,243,0.1), rgba(121,40,202,0.1), rgba(255,75,75,0.1));
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #7928ca;
}

.complex-stats-dots {
    display: flex;
    gap: 5px;
}

.complex-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.complex-stats-dots span:nth-child(1) { background: #ff5f56; }
.complex-stats-dots span:nth-child(2) { background: #ffbd2e; }
.complex-stats-dots span:nth-child(3) { background: #27c93f; }

.complex-main-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.complex-stat-item {
    text-align: center;
    padding: 15px 5px;
    background: rgba(121,40,202,0.02);
    border-radius: 16px;
    border: 1px solid rgba(121,40,202,0.05);
}

.complex-stat-value {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.complex-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.complex-stat-desc {
    font-size: 10px;
    color: #666;
}

.complex-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.complex-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 5px;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    color: var(--dark-color);
    text-align: center;
}

.complex-service-item i {
    font-size: 18px;
}

.complex-results {
    margin-bottom: 20px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.result-label {
    width: 80px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-color);
}

.result-bar-container {
    flex: 1;
    height: 24px;
    background: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
}

.result-bar {
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    color: white;
    font-size: 11px;
    font-weight: 600;
}

.result-value {
    width: 70px;
    font-size: 13px;
    font-weight: 600;
    color: #7928ca;
    text-align: right;
}

.complex-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(121,40,202,0.1);
}

.complex-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #666;
}

.complex-stats-source i {
    color: #00c853;
}

.complex-stats-tools {
    display: flex;
    gap: 8px;
}

.complex-stats-tools span {
    background: rgba(121,40,202,0.05);
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 600;
    color: #7928ca;
}

.complex-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.complex-float {
    position: absolute;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(121,40,202,0.15);
    animation: complexFloat 6s ease-in-out infinite;
    border: 1px solid rgba(121,40,202,0.2);
}

.complex-float i {
    font-size: 20px;
    color: #7928ca;
}

.complex-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.complex-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.complex-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.complex-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes complexFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

.complex-includes {
    padding: 80px 0;
    background: white;
}

.complex-includes .includes-grid {
    grid-template-columns: repeat(3, 1fr);
}

.complex-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.complex-advantages {
    padding: 80px 0;
    background: white;
}

.advantages-list-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.advantage-compact {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: var(--transition);
}

.advantage-compact:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.advantage-compact i {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.advantage-compact h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.advantage-compact p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.complex-result-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(121,40,202,0.1);
}

.complex-result-card h4 {
    font-size: 18px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--dark-color);
}

.result-metric {
    margin-bottom: 20px;
}

.metric-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.metric-bar-container {
    height: 30px;
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.metric-bar {
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: 600;
    font-size: 13px;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .complex-includes .includes-grid,
    .advantages-list-compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .complex-main-stats,
    .complex-services {
        grid-template-columns: 1fr;
    }
    
    .complex-includes .includes-grid,
    .advantages-list-compact {
        grid-template-columns: 1fr;
    }
    
    .result-item {
        flex-wrap: wrap;
    }
    
    .result-label {
        width: 100%;
    }
    
    .result-value {
        width: 100%;
        text-align: left;
    }
    
    .complex-stats-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ========== СТИЛІ ДЛЯ ПРОСУВАННЯ ІНТЕРНЕТ-МАГАЗИНУ ========== */

.ecommerce-hero {
    background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 50%, #fff0f0 100%);
}

.ecommerce-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.ecommerce-stats-card {
    background: white;
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(255,152,0,0.2), 0 0 0 1px rgba(255,152,0,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.ecommerce-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ecommerce-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,152,0,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #ff9800;
}

.ecommerce-stats-dots {
    display: flex;
    gap: 5px;
}

.ecommerce-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.ecommerce-stats-dots span:nth-child(1) { background: #ff5f56; }
.ecommerce-stats-dots span:nth-child(2) { background: #ffbd2e; }
.ecommerce-stats-dots span:nth-child(3) { background: #27c93f; }

.ecommerce-main-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.ecommerce-stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(255,152,0,0.02);
    border-radius: 12px;
}

.ecommerce-stat-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.ecommerce-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
}

.ecommerce-stat-desc {
    font-size: 9px;
    color: #999;
    margin-top: 3px;
}

.ecommerce-metrics {
    margin-bottom: 20px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 8px;
}

.metric-icon {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.metric-icon i {
    font-size: 16px;
    color: #ff9800;
}

.metric-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-label {
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

.metric-value {
    font-size: 14px;
    font-weight: 700;
}

.metric-value.good {
    color: #00c853;
}

.ecommerce-categories {
    margin-bottom: 20px;
}

.category-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.category-name {
    width: 80px;
    font-size: 12px;
    font-weight: 500;
    color: var(--dark-color);
}

.category-progress {
    flex: 1;
    height: 20px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 10px;
}

.ecommerce-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,152,0,0.1);
}

.ecommerce-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #666;
}

.ecommerce-stats-source i {
    color: #00c853;
}

.ecommerce-stats-tools {
    display: flex;
    gap: 6px;
}

.ecommerce-stats-tools span {
    background: rgba(255,152,0,0.05);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    color: #ff9800;
}

.ecommerce-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ecommerce-float {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255,152,0,0.15);
    animation: ecommerceFloat 6s ease-in-out infinite;
    border: 1px solid rgba(255,152,0,0.2);
}

.ecommerce-float i {
    font-size: 18px;
    color: #ff9800;
}

.ecommerce-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.ecommerce-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.ecommerce-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.ecommerce-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes ecommerceFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

.ecommerce-features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 30px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 30px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.ecommerce-includes {
    padding: 80px 0;
    background: #f8f9fa;
}

.ecommerce-includes .includes-grid {
    grid-template-columns: repeat(4, 1fr);
}

.ecommerce-benefits {
    padding: 80px 0;
    background: white;
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.benefits-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(10px);
    background: #fff3e0;
}

.benefit-item i {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.ecommerce-result-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,152,0,0.2);
}

.ecommerce-result-card h4 {
    font-size: 18px;
    margin-bottom: 25px;
    text-align: center;
}

.result-metric {
    margin-bottom: 20px;
}

.metric-bar-container {
    height: 30px;
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.metric-bar {
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: 600;
    font-size: 13px;
}

.result-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255,152,0,0.05);
    border-radius: 12px;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .features-grid,
    .ecommerce-includes .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ecommerce-main-stats,
    .features-grid,
    .ecommerce-includes .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-item {
        flex-wrap: wrap;
    }
    
    .metric-info {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .benefits-content h2 {
        font-size: 28px;
    }
    
    .ecommerce-stats-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ========== СТИЛІ ДЛЯ ПРОСУВАННЯ НА SHOPIFY ========== */

.shopify-hero {
    background: linear-gradient(135deg, #f0f7eb 0%, #e6f0e0 50%, #dce8d5 100%);
}

.shopify-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.shopify-stats-card {
    background: white;
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(122,181,94,0.2), 0 0 0 1px rgba(122,181,94,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.shopify-logo-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(122,181,94,0.05);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #7AB55E;
}

.shopify-logo-mini i {
    font-size: 24px;
}

.shopify-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.shopify-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(122,181,94,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #7AB55E;
}

.shopify-stats-badge i {
    font-size: 14px;
}

.shopify-stats-dots {
    display: flex;
    gap: 5px;
}

.shopify-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.shopify-stats-dots span:nth-child(1) { background: #ff5f56; }
.shopify-stats-dots span:nth-child(2) { background: #ffbd2e; }
.shopify-stats-dots span:nth-child(3) { background: #27c93f; }

.shopify-main-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.shopify-stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(122,181,94,0.02);
    border-radius: 12px;
}

.shopify-stat-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.shopify-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
}

.shopify-stat-desc {
    font-size: 9px;
    color: #999;
    margin-top: 3px;
}

.shopify-issues {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 16px;
}

.shopify-issues h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.issue-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 8px;
    background: white;
    border-radius: 8px;
    font-size: 12px;
}

.issue-item i {
    font-size: 14px;
}

.issue-label {
    flex: 1;
    color: #666;
}

.issue-fix {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

.issue-fix.good {
    background: rgba(0,200,83,0.1);
    color: #00c853;
}

.shopify-metrics {
    margin-bottom: 20px;
}

.shopify-metric {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.metric-name {
    width: 70px;
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

.metric-bar-container {
    flex: 1;
    height: 20px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.metric-bar {
    height: 100%;
    border-radius: 10px;
}

.metric-value {
    width: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #7AB55E;
    text-align: right;
}

.shopify-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(122,181,94,0.1);
}

.shopify-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #666;
}

.shopify-stats-source i {
    color: #00c853;
}

.shopify-stats-tools {
    display: flex;
    gap: 6px;
}

.shopify-stats-tools span {
    background: rgba(122,181,94,0.05);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    color: #7AB55E;
}

.shopify-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shopify-float {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(122,181,94,0.15);
    animation: shopifyFloat 6s ease-in-out infinite;
    border: 1px solid rgba(122,181,94,0.2);
}

.shopify-float i {
    font-size: 18px;
    color: #7AB55E;
}

.shopify-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.shopify-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.shopify-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.shopify-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes shopifyFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

.shopify-specifics {
    padding: 80px 0;
    background: white;
}

.specifics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.specific-card {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 30px;
    transition: var(--transition);
}

.specific-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.specific-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.specific-icon i {
    font-size: 30px;
}

.specific-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.specific-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.shopify-includes {
    padding: 80px 0;
    background: #f8f9fa;
}

.shopify-includes .includes-grid {
    grid-template-columns: repeat(4, 1fr);
}

.shopify-advantages {
    padding: 80px 0;
    background: white;
}

.shopify-result-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(122,181,94,0.2);
}

.shopify-result-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(122,181,94,0.1);
}

.shopify-result-header i {
    font-size: 28px;
    color: #7AB55E;
}

.shopify-result-header span {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
}

/* Адаптивність */
@media (max-width: 1024px) {
    .specifics-grid,
    .shopify-includes .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shopify-main-stats,
    .specifics-grid,
    .shopify-includes .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .issue-item {
        flex-wrap: wrap;
    }
    
    .shopify-metric {
        flex-wrap: wrap;
    }
    
    .metric-name {
        width: 100%;
    }
    
    .metric-value {
        width: 100%;
        text-align: left;
    }
    
    .shopify-stats-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ========== СТИЛІ ДЛЯ МІЖНАРОДНОГО SEO ========== */

.international-hero {
    background: linear-gradient(135deg, #f0f5ff 0%, #f5f0ff 50%, #fff0f5 100%);
}

.international-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.international-stats-card {
    background: white;
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(0,40,104,0.15), 0 0 0 1px rgba(191,10,48,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.international-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.international-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,40,104,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #002868;
}

.international-stats-dots {
    display: flex;
    gap: 5px;
}

.international-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.international-stats-dots span:nth-child(1) { background: #ff5f56; }
.international-stats-dots span:nth-child(2) { background: #ffbd2e; }
.international-stats-dots span:nth-child(3) { background: #27c93f; }

.flags-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 20px;
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.flag-item span {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-color);
}

.flag {
    width: 32px;
    height: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.flag.usa {
    background: linear-gradient(135deg, #002868 33%, #ffffff 33%, #ffffff 66%, #bf0a30 66%);
}

.flag.uk {
    background: linear-gradient(135deg, #00247d 40%, #ffffff 40%, #ffffff 60%, #cf142b 60%);
    position: relative;
}

.flag.uk::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 40%, #ffffff 40%, #ffffff 60%, transparent 60%);
}

.flag.canada {
    background: linear-gradient(135deg, #ff0000 33%, #ffffff 33%, #ffffff 66%, #ff0000 66%);
}

.flag.australia {
    background: #002868;
    position: relative;
}

.flag.australia::before {
    content: '★';
    position: absolute;
    color: white;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.international-main-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.international-stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(0,40,104,0.02);
    border-radius: 12px;
}

.international-stat-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.international-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
}

.international-stat-desc {
    font-size: 9px;
    color: #999;
    margin-top: 3px;
}

.international-metrics {
    margin-bottom: 20px;
}

.international-metrics .metric-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.international-metrics .metric-item i {
    width: 24px;
    font-size: 16px;
}

.international-metrics .metric-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.international-metrics .metric-label {
    width: 45px;
    font-size: 11px;
    font-weight: 600;
    color: #666;
}

.international-metrics .metric-bar-container {
    flex: 1;
    height: 16px;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.international-metrics .metric-bar {
    height: 100%;
    border-radius: 8px;
}

.international-metrics .metric-value {
    width: 40px;
    font-size: 11px;
    font-weight: 600;
    color: #002868;
    text-align: right;
}

.hreflang-example {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 16px;
}

.hreflang-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
}

.hreflang-title i {
    color: #002868;
}

.hreflang-tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.hreflang-tag {
    display: flex;
    flex-direction: column;
    padding: 8px;
    background: white;
    border-radius: 8px;
    font-size: 11px;
}

.hreflang-tag .lang {
    font-weight: 700;
    color: #002868;
    margin-bottom: 2px;
}

.hreflang-tag .url {
    color: #666;
    font-size: 10px;
}

.international-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0,40,104,0.1);
}

.international-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #666;
}

.international-stats-source i {
    color: #00c853;
}

.international-stats-tools {
    display: flex;
    gap: 6px;
}

.international-stats-tools span {
    background: rgba(0,40,104,0.05);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    color: #002868;
}

.international-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.international-float {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,40,104,0.15);
    animation: internationalFloat 6s ease-in-out infinite;
    border: 1px solid rgba(0,40,104,0.2);
}

.international-float i {
    font-size: 18px;
    color: #002868;
}

.international-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.international-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.international-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.international-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes internationalFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

.international-features {
    padding: 80px 0;
    background: white;
}

.international-features .features-grid {
    grid-template-columns: repeat(3, 1fr);
}

.international-includes {
    padding: 80px 0;
    background: #f8f9fa;
}

.international-includes .includes-grid {
    grid-template-columns: repeat(4, 1fr);
}

.international-benefits {
    padding: 80px 0;
    background: white;
}

.benefits-list-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.benefit-compact {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: var(--transition);
}

.benefit-compact:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-compact i {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-compact h4 {
    font-size: 15px;
    margin-bottom: 5px;
}

.benefit-compact p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.international-result-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,40,104,0.2);
}

.international-result-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,40,104,0.1);
}

.international-result-header i {
    font-size: 28px;
    color: #002868;
}

.international-result-header span {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
}

.result-metric {
    margin-bottom: 18px;
}

.metric-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
}

.metric-bar-container {
    height: 30px;
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.metric-bar {
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: 600;
    font-size: 13px;
}

.result-note {
    margin-top: 20px;
    padding: 12px;
    background: rgba(0,40,104,0.05);
    border-radius: 12px;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .international-features .features-grid,
    .international-includes .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .international-main-stats,
    .international-features .features-grid,
    .international-includes .includes-grid,
    .benefits-list-compact {
        grid-template-columns: 1fr;
    }
    
    .flags-container {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .international-metrics .metric-info {
        flex-wrap: wrap;
    }
    
    .hreflang-tags {
        grid-template-columns: 1fr;
    }
    
    .international-stats-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}


/* ========== СТИЛІ ДЛЯ LANDING PAGE ========== */

.landing-hero {
    background: linear-gradient(135deg, #fff8f0 0%, #fff5e6 50%, #fff0e0 100%);
}

.landing-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.landing-stats-card {
    background: white;
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(255,107,0,0.15), 0 0 0 1px rgba(255,107,0,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.landing-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.landing-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,0,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #ff6b00;
}

.landing-stats-dots {
    display: flex;
    gap: 5px;
}

.landing-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.landing-stats-dots span:nth-child(1) { background: #ff5f56; }
.landing-stats-dots span:nth-child(2) { background: #ffbd2e; }
.landing-stats-dots span:nth-child(3) { background: #27c93f; }

.landing-preview {
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.preview-header {
    background: #f0f0f0;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-dots {
    display: flex;
    gap: 5px;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.preview-dots span:nth-child(1) { background: #ff5f56; }
.preview-dots span:nth-child(2) { background: #ffbd2e; }
.preview-dots span:nth-child(3) { background: #27c93f; }

.preview-title {
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

.preview-content {
    padding: 15px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
}

.preview-hero {
    height: 80px;
    background: linear-gradient(135deg, #ff6b00, #ff9f00);
    border-radius: 8px;
    margin-bottom: 15px;
    opacity: 0.3;
}

.preview-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}

.preview-feature {
    height: 40px;
    background: #e0e0e0;
    border-radius: 6px;
}

.preview-cta {
    height: 50px;
    background: #ff6b00;
    border-radius: 8px;
    opacity: 0.5;
}

.landing-main-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.landing-stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(255,107,0,0.02);
    border-radius: 12px;
}

.landing-stat-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.landing-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
}

.landing-stat-desc {
    font-size: 9px;
    color: #999;
    margin-top: 3px;
}

.landing-benefits-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.benefit-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 500;
    color: var(--dark-color);
}

.benefit-mini i {
    color: #ff6b00;
    font-size: 12px;
}

.landing-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,107,0,0.1);
}

.landing-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #666;
}

.landing-stats-source i {
    color: #00c853;
}

.landing-stats-tools {
    display: flex;
    gap: 6px;
}

.landing-stats-tools span {
    background: rgba(255,107,0,0.05);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    color: #ff6b00;
}

.landing-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.landing-float {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255,107,0,0.15);
    animation: landingFloat 6s ease-in-out infinite;
    border: 1px solid rgba(255,107,0,0.2);
}

.landing-float i {
    font-size: 18px;
    color: #ff6b00;
}

.landing-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.landing-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.landing-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.landing-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes landingFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

.landing-about {
    padding: 80px 0;
    background: white;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-stats-mini {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stat-mini {
    text-align: center;
}

.stat-mini-value {
    font-size: 32px;
    font-weight: 800;
    color: #ff6b00;
    line-height: 1.2;
}

.stat-mini-label {
    font-size: 12px;
    color: #666;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-block {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: var(--transition);
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-block i {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-block h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.feature-block p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.landing-when {
    padding: 80px 0;
    background: #f8f9fa;
}

.when-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.when-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.when-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.when-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.when-icon i {
    font-size: 24px;
}

.when-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.when-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.landing-includes {
    padding: 80px 0;
    background: white;
}

.landing-includes-grid {
    grid-template-columns: repeat(4, 1fr);
}

.landing-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.landing-process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.landing-advantages {
    padding: 80px 0;
    background: white;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.advantage-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateX(10px);
    background: #fff5e6;
}

.advantage-item i {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.advantage-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.conversion-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,107,0,0.2);
}

.conversion-card h4 {
    font-size: 18px;
    margin-bottom: 25px;
    text-align: center;
}

.conversion-meter {
    margin-bottom: 20px;
}

.meter-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
}

.meter-bar-container {
    height: 30px;
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.meter-bar {
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: 600;
    font-size: 13px;
}

.conversion-note {
    margin-top: 20px;
    padding: 12px;
    background: rgba(255,107,0,0.05);
    border-radius: 12px;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .when-grid,
    .landing-includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landing-main-stats,
    .when-grid,
    .landing-includes-grid,
    .about-features-grid,
    .landing-benefits-mini {
        grid-template-columns: 1fr;
    }
    
    .about-stats-mini {
        flex-direction: column;
        gap: 10px;
    }
    
    .about-wrapper {
        gap: 30px;
    }
    
    .landing-stats-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .process-item {
        flex-direction: column;
        gap: 15px;
    }
}


/* ========== СТИЛІ ДЛЯ САЙТУ-ВІЗИТКИ ========== */

.businesscard-hero {
    background: linear-gradient(135deg, #f0fafc 0%, #f5f0ff 50%, #f0f5ff 100%);
}

.businesscard-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.businesscard-stats-card {
    background: white;
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(38,198,218,0.15), 0 0 0 1px rgba(38,198,218,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.businesscard-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.businesscard-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(38,198,218,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #26c6da;
}

.businesscard-stats-dots {
    display: flex;
    gap: 5px;
}

.businesscard-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.businesscard-stats-dots span:nth-child(1) { background: #ff5f56; }
.businesscard-stats-dots span:nth-child(2) { background: #ffbd2e; }
.businesscard-stats-dots span:nth-child(3) { background: #27c93f; }

.businesscard-preview {
    margin-bottom: 20px;
}

.preview-device {
    background: #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid rgba(0,0,0,0.05);
}

.device-header {
    background: #e0e0e0;
    padding: 10px;
}

.device-dots {
    width: 50px;
    height: 8px;
    background: #ccc;
    border-radius: 4px;
    margin: 0 auto;
}

.device-screen {
    padding: 15px;
    background: white;
}

.screen-element {
    background: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 8px;
}

.screen-element.header {
    height: 20px;
    width: 60%;
}

.screen-element.nav {
    height: 15px;
    width: 80%;
}

.screen-element.content {
    height: 40px;
    width: 100%;
}

.content-block {
    height: 20px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 5px;
}

.content-block.small {
    width: 70%;
}

.screen-element.footer {
    height: 15px;
    width: 50%;
}

.preview-pages {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.page-badge {
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    color: #666;
}

.businesscard-main-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.businesscard-stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(38,198,218,0.02);
    border-radius: 12px;
}

.businesscard-stat-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.businesscard-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
}

.businesscard-stat-desc {
    font-size: 9px;
    color: #999;
    margin-top: 3px;
}

.businesscard-benefits-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.businesscard-benefits-mini .benefit-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 500;
    color: var(--dark-color);
}

.businesscard-benefits-mini .benefit-mini i {
    color: #26c6da;
    font-size: 12px;
}

.businesscard-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(38,198,218,0.1);
}

.businesscard-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #666;
}

.businesscard-stats-source i {
    color: #00c853;
}

.businesscard-stats-tools {
    display: flex;
    gap: 6px;
}

.businesscard-stats-tools span {
    background: rgba(38,198,218,0.05);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    color: #26c6da;
}

.businesscard-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.businesscard-float {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(38,198,218,0.15);
    animation: businesscardFloat 6s ease-in-out infinite;
    border: 1px solid rgba(38,198,218,0.2);
}

.businesscard-float i {
    font-size: 18px;
    color: #26c6da;
}

.businesscard-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.businesscard-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.businesscard-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.businesscard-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes businesscardFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

.businesscard-about {
    padding: 80px 0;
    background: white;
}

.businesscard-about .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.businesscard-about .about-stats-mini {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.businesscard-about .stat-mini-value {
    font-size: 32px;
    font-weight: 800;
    color: #26c6da;
    line-height: 1.2;
}

.businesscard-about .stat-mini-label {
    font-size: 12px;
    color: #666;
}

.businesscard-about .about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.businesscard-for {
    padding: 80px 0;
    background: #f8f9fa;
}

.for-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.for-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.for-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.for-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.for-icon i {
    font-size: 30px;
}

.for-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.for-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.businesscard-structure {
    padding: 80px 0;
    background: white;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.structure-card {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 30px;
    position: relative;
    transition: var(--transition);
}

.structure-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.structure-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(38,198,218,0.3);
}

.structure-card h3 {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.structure-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.businesscard-includes {
    padding: 80px 0;
    background: #f8f9fa;
}

.businesscard-includes-grid {
    grid-template-columns: repeat(4, 1fr);
}

.businesscard-advantages {
    padding: 80px 0;
    background: white;
}

.businesscard-advantages .advantages-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.businesscard-advantages .advantages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.businesscard-advantages .advantage-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: var(--transition);
}

.businesscard-advantages .advantage-item:hover {
    transform: translateX(10px);
    background: #e0f7fa;
}

.businesscard-advantages .advantage-item i {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.businesscard-advantages .advantage-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.businesscard-advantages .advantage-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.businesscard-result-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(38,198,218,0.2);
    text-align: center;
}

.businesscard-result-card h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.result-stat {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(38,198,218,0.05);
    border-radius: 16px;
}

.result-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #26c6da;
    line-height: 1.2;
    margin-bottom: 5px;
}

.result-stat-label {
    font-size: 14px;
    color: #666;
}

.result-note {
    margin-top: 20px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Таблиця для SEO тексту */
.seo-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.seo-table th {
    background: #f0f0f0;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.seo-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .businesscard-about .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .for-grid,
    .structure-grid,
    .businesscard-includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .businesscard-advantages .advantages-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .businesscard-main-stats,
    .for-grid,
    .structure-grid,
    .businesscard-includes-grid,
    .businesscard-about .about-features-grid,
    .businesscard-benefits-mini {
        grid-template-columns: 1fr;
    }
    
    .businesscard-about .about-stats-mini {
        flex-direction: column;
        gap: 10px;
    }
    
    .businesscard-about .about-wrapper {
        gap: 30px;
    }
    
    .businesscard-stats-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .seo-table {
        font-size: 12px;
    }
    
    .seo-table th,
    .seo-table td {
        padding: 6px 8px;
    }
}

/* ========== СТИЛІ ДЛЯ ІНТЕРНЕТ-МАГАЗИНУ ========== */

.ecom-dev-hero {
    background: linear-gradient(135deg, #f3e5f5 0%, #fce4ec 50%, #f3e5f5 100%);
}

.ecomdev-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.ecomdev-stats-card {
    background: white;
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(156,39,176,0.15), 0 0 0 1px rgba(156,39,176,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.ecomdev-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ecomdev-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(156,39,176,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #9c27b0;
}

.ecomdev-stats-dots {
    display: flex;
    gap: 5px;
}

.ecomdev-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.ecomdev-stats-dots span:nth-child(1) { background: #ff5f56; }
.ecomdev-stats-dots span:nth-child(2) { background: #ffbd2e; }
.ecomdev-stats-dots span:nth-child(3) { background: #27c93f; }

.ecomdev-preview {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 20px;
}

.preview-header {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.preview-logo {
    width: 60px;
    height: 30px;
    background: #9c27b0;
    border-radius: 4px;
    opacity: 0.3;
}

.preview-search {
    flex: 1;
    height: 30px;
    background: #e0e0e0;
    border-radius: 20px;
}

.preview-cart {
    width: 40px;
    height: 30px;
    background: #e91e63;
    border-radius: 4px;
    opacity: 0.3;
}

.preview-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.preview-cat {
    flex: 1;
    height: 20px;
    background: #d0d0d0;
    border-radius: 4px;
}

.preview-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.preview-product {
    height: 60px;
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    border-radius: 8px;
    opacity: 0.2;
}

.ecomdev-main-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.ecomdev-stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(156,39,176,0.02);
    border-radius: 12px;
}

.ecomdev-stat-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.ecomdev-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
}

.ecomdev-stat-desc {
    font-size: 9px;
    color: #999;
    margin-top: 3px;
}

.ecomdev-benefits-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.ecomdev-benefits-mini .benefit-mini {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #f8f9fa;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 500;
    color: var(--dark-color);
}

.ecomdev-benefits-mini .benefit-mini i {
    color: #9c27b0;
    font-size: 12px;
}

.ecomdev-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(156,39,176,0.1);
}

.ecomdev-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #666;
}

.ecomdev-stats-source i {
    color: #00c853;
}

.ecomdev-stats-tools {
    display: flex;
    gap: 6px;
}

.ecomdev-stats-tools span {
    background: rgba(156,39,176,0.05);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    color: #9c27b0;
}

.ecomdev-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ecomdev-float {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(156,39,176,0.15);
    animation: ecomdevFloat 6s ease-in-out infinite;
    border: 1px solid rgba(156,39,176,0.2);
}

.ecomdev-float i {
    font-size: 18px;
    color: #9c27b0;
}

.ecomdev-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.ecomdev-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.ecomdev-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.ecomdev-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes ecomdevFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

.ecomdev-advantages {
    padding: 80px 0;
    background: white;
}

.ecomdev-advantages .advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.ecomdev-advantages .advantage-card {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 30px;
    transition: var(--transition);
    text-align: center;
}

.ecomdev-advantages .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.ecomdev-advantages .advantage-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ecomdev-advantages .advantage-icon i {
    font-size: 36px;
}

.ecomdev-advantages .advantage-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.ecomdev-advantages .advantage-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.ecomdev-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.ecomdev-features .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.ecomdev-features .feature-card {
    background: white;
    border-radius: 24px;
    padding: 30px 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.ecomdev-features .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.ecomdev-features .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ecomdev-features .feature-icon i {
    font-size: 28px;
}

.ecomdev-features .feature-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #666;
}

.feature-list li i {
    color: #00c853;
    font-size: 12px;
}

.ecom-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
}

.ecomdev-process {
    padding: 80px 0;
    background: white;
}

.ecomdev-whyus {
    padding: 80px 0;
    background: #f8f9fa;
}

.whyus-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.whyus-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.whyus-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 16px;
    transition: var(--transition);
}

.whyus-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.whyus-item i {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: rgba(156,39,176,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whyus-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.whyus-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.ecomdev-stats-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(156,39,176,0.2);
}

.ecomdev-stats-card h4 {
    font-size: 18px;
    margin-bottom: 25px;
    text-align: center;
}

.ecomdev-stats-card .stat-item {
    margin-bottom: 20px;
}

.ecomdev-stats-card .stat-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
}

.ecomdev-stats-card .stat-bar-container {
    height: 30px;
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
}

.ecomdev-stats-card .stat-bar {
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: 600;
    font-size: 13px;
}

.ecomdev-stats-card .stat-note {
    margin-top: 20px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .ecomdev-advantages .advantages-grid,
    .ecomdev-features .features-grid,
    .ecom-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .whyus-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ecomdev-main-stats,
    .ecomdev-benefits-mini,
    .ecomdev-advantages .advantages-grid,
    .ecomdev-features .features-grid,
    .ecom-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .ecomdev-benefits-mini .benefit-mini {
        font-size: 11px;
    }
    
    .preview-products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ecomdev-stats-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ========== СТИЛІ ДЛЯ КОРПОРАТИВНОГО САЙТУ ========== */

.corporate-hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #e8eaf6 50%, #e3f2fd 100%);
}

.corporate-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.corporate-stats-card {
    background: white;
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(33,150,243,0.15), 0 0 0 1px rgba(33,150,243,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.corporate-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.corporate-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(33,150,243,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #2196f3;
}

.corporate-stats-dots {
    display: flex;
    gap: 5px;
}

.corporate-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.corporate-stats-dots span:nth-child(1) { background: #ff5f56; }
.corporate-stats-dots span:nth-child(2) { background: #ffbd2e; }
.corporate-stats-dots span:nth-child(3) { background: #27c93f; }

.corporate-preview {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.preview-org-chart {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.level-1 {
    margin-bottom: 5px;
}

.org-node {
    width: 40px;
    height: 40px;
    background: #2196f3;
    border-radius: 8px;
    opacity: 0.2;
}

.org-node.main {
    width: 60px;
    background: #2196f3;
    opacity: 0.4;
}

.org-node.small {
    width: 30px;
    height: 30px;
}

.corporate-main-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.corporate-stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(33,150,243,0.02);
    border-radius: 12px;
}

.corporate-stat-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.corporate-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
}

.corporate-stat-desc {
    font-size: 9px;
    color: #999;
    margin-top: 3px;
}

.corporate-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.module-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #f8f9fa;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 500;
    color: var(--dark-color);
}

.module-item i {
    color: #2196f3;
    font-size: 12px;
}

.corporate-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(33,150,243,0.1);
}

.corporate-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #666;
}

.corporate-stats-source i {
    color: #00c853;
}

.corporate-stats-tools {
    display: flex;
    gap: 6px;
}

.corporate-stats-tools span {
    background: rgba(33,150,243,0.05);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    color: #2196f3;
}

.corporate-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.corporate-float {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(33,150,243,0.15);
    animation: corporateFloat 6s ease-in-out infinite;
    border: 1px solid rgba(33,150,243,0.2);
}

.corporate-float i {
    font-size: 18px;
    color: #2196f3;
}

.corporate-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.corporate-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.corporate-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.corporate-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes corporateFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

.corporate-features {
    padding: 80px 0;
    background: white;
}

.corporate-features .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.corporate-features .feature-card {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 30px;
    transition: var(--transition);
}

.corporate-features .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.corporate-structure {
    padding: 80px 0;
    background: #f8f9fa;
}

.corporate-structure .structure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.corporate-structure .structure-card {
    background: white;
    border-radius: 24px;
    padding: 30px 25px;
    position: relative;
    transition: var(--transition);
}

.corporate-structure .structure-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.corporate-structure .structure-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(33,150,243,0.3);
}

.corporate-structure .structure-card h3 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.corporate-structure .structure-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.corporate-includes {
    padding: 80px 0;
    background: white;
}

.corporate-includes-grid {
    grid-template-columns: repeat(5, 1fr);
}

.corporate-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
}

.corporate-integrations {
    padding: 80px 0;
    background: #f8f9fa;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.integration-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.integration-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.integration-icon {
    width: 70px;
    height: 70px;
    background: rgba(33,150,243,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.integration-icon i {
    font-size: 30px;
    color: #2196f3;
}

.integration-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.integration-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.corporate-whyus {
    padding: 80px 0;
    background: white;
}

.corporate-whyus .whyus-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.corporate-whyus .whyus-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.corporate-whyus .whyus-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: var(--transition);
}

.corporate-whyus .whyus-item:hover {
    transform: translateX(10px);
    background: #e3f2fd;
}

.corporate-whyus .whyus-item i {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.corporate-whyus .whyus-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.corporate-whyus .whyus-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.corporate-whyus .corporate-stats-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(33,150,243,0.2);
    text-align: center;
}

.corporate-whyus .corporate-stats-card h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.corporate-whyus .stat-item {
    margin-bottom: 25px;
}

.corporate-whyus .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #2196f3;
    line-height: 1.2;
    margin-bottom: 5px;
}

.corporate-whyus .stat-label {
    font-size: 14px;
    color: #666;
}

.corporate-whyus .stat-note {
    margin-top: 20px;
    padding: 12px;
    background: #e3f2fd;
    border-radius: 12px;
    font-size: 14px;
    color: #2196f3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Адаптивність */
@media (max-width: 1200px) {
    .corporate-includes-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .corporate-features .features-grid,
    .corporate-structure .structure-grid,
    .corporate-includes-grid,
    .corporate-pricing-grid,
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .corporate-whyus .whyus-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .corporate-main-stats,
    .corporate-modules,
    .corporate-features .features-grid,
    .corporate-structure .structure-grid,
    .corporate-includes-grid,
    .corporate-pricing-grid,
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-org-chart .org-level {
        flex-wrap: wrap;
    }
    
    .corporate-stats-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ========== СТИЛІ ДЛЯ CRM ІНТЕГРАЦІЇ ========== */

.crm-hero {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 50%, #e8f5e9 100%);
}

.crm-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.crm-stats-card {
    background: white;
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(76,175,80,0.15), 0 0 0 1px rgba(76,175,80,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.crm-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.crm-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(76,175,80,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #4caf50;
}

.crm-stats-dots {
    display: flex;
    gap: 5px;
}

.crm-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.crm-stats-dots span:nth-child(1) { background: #ff5f56; }
.crm-stats-dots span:nth-child(2) { background: #ffbd2e; }
.crm-stats-dots span:nth-child(3) { background: #27c93f; }

.crm-visualization {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.crm-flow {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}

.flow-node {
    text-align: center;
    padding: 10px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    min-width: 80px;
}

.flow-node i {
    font-size: 24px;
    color: #4caf50;
    display: block;
    margin-bottom: 5px;
}

.flow-node span {
    font-size: 12px;
    font-weight: 500;
}

.flow-arrow {
    color: #4caf50;
    font-size: 14px;
    display: flex;
    gap: 5px;
}

.flow-arrow.two-way {
    color: #ff9800;
}

.crm-main-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.crm-stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(76,175,80,0.02);
    border-radius: 12px;
}

.crm-stat-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.crm-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
}

.crm-stat-desc {
    font-size: 9px;
    color: #999;
    margin-top: 3px;
}

.crm-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.crm-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 4px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 500;
    color: var(--dark-color);
}

.crm-logo-item i {
    color: #4caf50;
    font-size: 16px;
}

.crm-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(76,175,80,0.1);
}

.crm-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #666;
}

.crm-stats-source i {
    color: #00c853;
}

.crm-stats-tools {
    display: flex;
    gap: 6px;
}

.crm-stats-tools span {
    background: rgba(76,175,80,0.05);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    color: #4caf50;
}

.crm-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.crm-float {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(76,175,80,0.15);
    animation: crmFloat 6s ease-in-out infinite;
    border: 1px solid rgba(76,175,80,0.2);
}

.crm-float i {
    font-size: 18px;
    color: #4caf50;
}

.crm-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.crm-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.crm-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.crm-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes crmFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

.crm-about {
    padding: 80px 0;
    background: white;
}

.crm-about .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.crm-about .about-stats-mini {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.crm-about .stat-mini-value {
    font-size: 32px;
    font-weight: 800;
    color: #4caf50;
    line-height: 1.2;
}

.crm-about .stat-mini-label {
    font-size: 12px;
    color: #666;
}

.crm-about .about-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-block {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: var(--transition);
}

.benefit-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-block i {
    font-size: 24px;
    margin-bottom: 10px;
}

.benefit-block h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.benefit-block p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.crm-how-it-works {
    padding: 80px 0;
    background: #f8f9fa;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.step-card {
    background: white;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-width: 180px;
    flex: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(76,175,80,0.3);
}

.step-icon {
    margin: 20px 0 15px;
}

.step-icon i {
    font-size: 40px;
    color: #4caf50;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.step-connector {
    font-size: 24px;
    color: #4caf50;
}

.crm-popular {
    padding: 80px 0;
    background: white;
}

.crm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.crm-card {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 30px;
    transition: var(--transition);
}

.crm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.crm-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(76,175,80,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.crm-card-icon i {
    font-size: 30px;
    color: #4caf50;
}

.crm-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.crm-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.crm-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.crm-features span {
    background: rgba(76,175,80,0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #4caf50;
}

.crm-includes {
    padding: 80px 0;
    background: #f8f9fa;
}

.crm-includes .includes-grid {
    grid-template-columns: repeat(4, 1fr);
}

.crm-advantages {
    padding: 80px 0;
    background: white;
}

.crm-advantages .advantages-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.crm-advantages .advantages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.crm-advantages .advantage-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: var(--transition);
}

.crm-advantages .advantage-item:hover {
    transform: translateX(10px);
    background: #e8f5e9;
}

.crm-advantages .advantage-item i {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.crm-advantages .crm-stats-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(76,175,80,0.2);
    text-align: center;
}

.crm-advantages .crm-stats-card h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.crm-advantages .stat-item {
    margin-bottom: 25px;
}

.crm-advantages .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #4caf50;
    line-height: 1.2;
    margin-bottom: 5px;
}

.crm-advantages .stat-label {
    font-size: 14px;
    color: #666;
}

.crm-advantages .stat-note {
    margin-top: 20px;
    padding: 12px;
    background: #e8f5e9;
    border-radius: 12px;
    font-size: 14px;
    color: #4caf50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .crm-about .about-wrapper,
    .crm-advantages .advantages-wrapper {
        grid-template-columns: 1fr;
    }
    
    .crm-grid,
    .crm-includes .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        flex-direction: column;
    }
    
    .step-connector {
        transform: rotate(90deg);
        margin: 5px 0;
    }
}

@media (max-width: 768px) {
    .crm-main-stats,
    .crm-logos,
    .crm-about .about-benefits,
    .crm-grid,
    .crm-includes .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .crm-about .about-stats-mini {
        flex-direction: column;
        gap: 10px;
    }
    
    .crm-about .about-wrapper {
        gap: 30px;
    }
    
    .crm-stats-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .crm-flow {
        flex-direction: column;
    }
}

/* ========== СТИЛІ ДЛЯ GOOGLE ADS ========== */

.googleads-hero {
    background: linear-gradient(135deg, #e8f0fe 0%, #e6f2ff 50%, #e8f0fe 100%);
}

.googleads-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.googleads-stats-card {
    background: white;
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(66,133,244,0.15), 0 0 0 1px rgba(66,133,244,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.google-logo-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
    border-radius: 30px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.google-logo-mini i {
    font-size: 18px;
}

.googleads-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.googleads-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(66,133,244,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #4285f4;
}

.googleads-stats-dots {
    display: flex;
    gap: 5px;
}

.googleads-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.googleads-stats-dots span:nth-child(1) { background: #ff5f56; }
.googleads-stats-dots span:nth-child(2) { background: #ffbd2e; }
.googleads-stats-dots span:nth-child(3) { background: #27c93f; }

.googleads-main-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.googleads-stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(66,133,244,0.02);
    border-radius: 12px;
}

.googleads-stat-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.googleads-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
}

.googleads-stat-desc {
    font-size: 9px;
    color: #999;
    margin-top: 3px;
}

.campaign-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.campaign-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 8px 5px;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    color: var(--dark-color);
}

.campaign-item i {
    font-size: 18px;
    color: #4285f4;
}

.ad-preview {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #4285f4;
}

.ad-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 11px;
}

.ad-url {
    color: #006621;
}

.ad-label {
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
}

.ad-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a0dab;
    margin-bottom: 5px;
}

.ad-description {
    font-size: 12px;
    color: #545454;
    line-height: 1.4;
}

.googleads-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(66,133,244,0.1);
}

.googleads-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #666;
}

.googleads-stats-source i {
    color: #00c853;
}

.googleads-stats-tools {
    display: flex;
    gap: 6px;
}

.googleads-stats-tools span {
    background: rgba(66,133,244,0.05);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    color: #4285f4;
}

.googleads-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.googleads-float {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(66,133,244,0.15);
    animation: googleadsFloat 6s ease-in-out infinite;
    border: 1px solid rgba(66,133,244,0.2);
}

.googleads-float i {
    font-size: 18px;
    color: #4285f4;
}

.googleads-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.googleads-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.googleads-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.googleads-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes googleadsFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

.googleads-about {
    padding: 80px 0;
    background: white;
}

.googleads-about .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.googleads-about .about-stats-mini {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.googleads-about .stat-mini-value {
    font-size: 32px;
    font-weight: 800;
    color: #4285f4;
    line-height: 1.2;
}

.googleads-about .stat-mini-label {
    font-size: 12px;
    color: #666;
}

.googleads-about .about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.campaign-types-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.campaign-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.campaign-type-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.campaign-type-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.campaign-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.campaign-icon i {
    font-size: 30px;
}

.campaign-type-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.campaign-type-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.campaign-features {
    list-style: none;
    padding: 0;
}

.campaign-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #555;
}

.campaign-features li i {
    color: #34a853;
    font-size: 12px;
}

.googleads-includes {
    padding: 80px 0;
    background: white;
}

.googleads-includes .includes-grid {
    grid-template-columns: repeat(4, 1fr);
}

.googleads-advantages {
    padding: 80px 0;
    background: #f8f9fa;
}

.googleads-advantages .advantages-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.googleads-advantages .advantages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.googleads-advantages .advantage-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 16px;
    transition: var(--transition);
}

.googleads-advantages .advantage-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.googleads-advantages .advantage-item i {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: rgba(66,133,244,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.googleads-advantages .googleads-stats-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(66,133,244,0.2);
}

.googleads-advantages .googleads-stats-card h4 {
    font-size: 20px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--dark-color);
}

.googleads-advantages .stat-item {
    margin-bottom: 20px;
}

.googleads-advantages .stat-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
}

.googleads-advantages .stat-bar-container {
    height: 30px;
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
}

.googleads-advantages .stat-bar {
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: 600;
    font-size: 13px;
}

.googleads-advantages .stat-note {
    margin-top: 20px;
    padding: 12px;
    background: #f0f7ff;
    border-radius: 12px;
    font-size: 14px;
    color: #4285f4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .googleads-about .about-wrapper,
    .googleads-advantages .advantages-wrapper {
        grid-template-columns: 1fr;
    }
    
    .campaign-types-grid,
    .googleads-includes .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .googleads-main-stats,
    .campaign-types,
    .campaign-types-grid,
    .googleads-includes .includes-grid,
    .googleads-about .about-features {
        grid-template-columns: 1fr;
    }
    
    .googleads-about .about-stats-mini {
        flex-direction: column;
        gap: 10px;
    }
    
    .googleads-about .about-wrapper {
        gap: 30px;
    }
    
    .googleads-stats-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ========== СТИЛІ ДЛЯ GOOGLE SHOPPING ========== */

.googleshopping-hero {
    background: linear-gradient(135deg, #e8f0fe 0%, #e6f2ff 50%, #e8f0fe 100%);
}

.googleshopping-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.googleshopping-stats-card {
    background: white;
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(66,133,244,0.15), 0 0 0 1px rgba(66,133,244,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.googleshopping-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.googleshopping-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(66,133,244,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #4285f4;
}

.googleshopping-stats-dots {
    display: flex;
    gap: 5px;
}

.googleshopping-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.googleshopping-stats-dots span:nth-child(1) { background: #ff5f56; }
.googleshopping-stats-dots span:nth-child(2) { background: #ffbd2e; }
.googleshopping-stats-dots span:nth-child(3) { background: #27c93f; }

.shopping-ad-preview {
    display: flex;
    gap: 15px;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #4285f4;
}

.shopping-ad-image {
    width: 80px;
    height: 80px;
    background: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopping-ad-image i {
    font-size: 30px;
    color: #999;
}

.shopping-ad-details {
    flex: 1;
}

.shopping-ad-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a0dab;
    margin-bottom: 5px;
}

.shopping-ad-price {
    font-size: 18px;
    font-weight: 700;
    color: #0b8043;
    margin-bottom: 5px;
}

.shopping-ad-store {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.shopping-ad-rating {
    font-size: 12px;
    color: #fbbc05;
}

.shopping-ad-rating span {
    color: #666;
    margin-left: 5px;
}

.googleshopping-main-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.googleshopping-stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(66,133,244,0.02);
    border-radius: 12px;
}

.googleshopping-stat-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.googleshopping-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
}

.googleshopping-stat-desc {
    font-size: 9px;
    color: #999;
    margin-top: 3px;
}

.shopping-components {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.component-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 8px 5px;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    color: var(--dark-color);
}

.component-item i {
    font-size: 18px;
    color: #4285f4;
}

.googleshopping-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(66,133,244,0.1);
}

.googleshopping-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #666;
}

.googleshopping-stats-source i {
    color: #00c853;
}

.googleshopping-stats-tools {
    display: flex;
    gap: 6px;
}

.googleshopping-stats-tools span {
    background: rgba(66,133,244,0.05);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    color: #4285f4;
}

.googleshopping-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.googleshopping-float {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(66,133,244,0.15);
    animation: googleshoppingFloat 6s ease-in-out infinite;
    border: 1px solid rgba(66,133,244,0.2);
}

.googleshopping-float i {
    font-size: 18px;
    color: #4285f4;
}

.googleshopping-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.googleshopping-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.googleshopping-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.googleshopping-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes googleshoppingFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

.googleshopping-about {
    padding: 80px 0;
    background: white;
}

.googleshopping-about .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.googleshopping-about .about-stats-mini {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.googleshopping-about .stat-mini-value {
    font-size: 32px;
    font-weight: 800;
    color: #4285f4;
    line-height: 1.2;
}

.googleshopping-about .stat-mini-label {
    font-size: 12px;
    color: #666;
}

.googleshopping-about .about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.googleshopping-how-it-works {
    padding: 80px 0;
    background: #f8f9fa;
}

.googleshopping-how-it-works .steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.googleshopping-how-it-works .step-card {
    background: white;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-width: 200px;
    flex: 1;
}

.googleshopping-how-it-works .step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.shopping-components-section {
    padding: 80px 0;
    background: white;
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.component-card {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 30px;
    transition: var(--transition);
}

.component-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.component-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.component-icon i {
    font-size: 30px;
}

.component-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.component-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.component-list {
    list-style: none;
    padding: 0;
}

.component-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #555;
}

.component-list li i {
    color: #34a853;
    font-size: 12px;
}

.googleshopping-includes {
    padding: 80px 0;
    background: #f8f9fa;
}

.googleshopping-includes .includes-grid {
    grid-template-columns: repeat(4, 1fr);
}

.googleshopping-advantages {
    padding: 80px 0;
    background: white;
}

.googleshopping-advantages .advantages-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.googleshopping-advantages .advantages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.googleshopping-advantages .advantage-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: var(--transition);
}

.googleshopping-advantages .advantage-item:hover {
    transform: translateX(10px);
    background: #e8f0fe;
}

.googleshopping-advantages .advantage-item i {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: rgba(66,133,244,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.googleshopping-advantages .googleshopping-stats-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(66,133,244,0.2);
}

.googleshopping-advantages .googleshopping-stats-card h4 {
    font-size: 20px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--dark-color);
}

.googleshopping-advantages .stat-item {
    margin-bottom: 20px;
}

.googleshopping-advantages .stat-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
}

.googleshopping-advantages .stat-bar-container {
    height: 30px;
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
}

.googleshopping-advantages .stat-bar {
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: 600;
    font-size: 13px;
}

.googleshopping-advantages .stat-note {
    margin-top: 20px;
    padding: 12px;
    background: #f0f7ff;
    border-radius: 12px;
    font-size: 14px;
    color: #4285f4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .googleshopping-about .about-wrapper,
    .googleshopping-advantages .advantages-wrapper {
        grid-template-columns: 1fr;
    }
    
    .components-grid,
    .googleshopping-includes .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .googleshopping-main-stats,
    .shopping-components,
    .components-grid,
    .googleshopping-includes .includes-grid,
    .googleshopping-about .about-features {
        grid-template-columns: 1fr;
    }
    
    .shopping-ad-preview {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .googleshopping-about .about-stats-mini {
        flex-direction: column;
        gap: 10px;
    }
    
    .googleshopping-about .about-wrapper {
        gap: 30px;
    }
    
    .googleshopping-stats-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .googleshopping-how-it-works .steps-grid {
        flex-direction: column;
    }
    
    .googleshopping-how-it-works .step-connector {
        transform: rotate(90deg);
        margin: 5px 0;
    }
}

/* ========== СТИЛІ ДЛЯ ТАРГЕТОВАНОЇ РЕКЛАМИ ========== */

.target-hero {
    background: linear-gradient(135deg, #f5f0ff 0%, #ffe6f0 50%, #f5f0ff 100%);
}

.target-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.target-stats-card {
    background: white;
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(131,58,180,0.15), 0 0 0 1px rgba(131,58,180,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.target-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.target-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(131,58,180,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #833ab4;
}

.target-stats-dots {
    display: flex;
    gap: 5px;
}

.target-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.target-stats-dots span:nth-child(1) { background: #ff5f56; }
.target-stats-dots span:nth-child(2) { background: #ffbd2e; }
.target-stats-dots span:nth-child(3) { background: #27c93f; }

.social-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.social-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.social-logo i {
    font-size: 32px;
}

.social-logo span {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-color);
}

.target-main-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.target-stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(131,58,180,0.02);
    border-radius: 12px;
}

.target-stat-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.target-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
}

.target-stat-desc {
    font-size: 9px;
    color: #999;
    margin-top: 3px;
}

.audience-preview {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 20px;
}

.audience-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: white;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 500;
    color: #666;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.ad-formats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.format-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 8px 5px;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    color: var(--dark-color);
}

.format-item i {
    font-size: 18px;
    color: #833ab4;
}

.target-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(131,58,180,0.1);
}

.target-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #666;
}

.target-stats-source i {
    color: #00c853;
}

.target-stats-tools {
    display: flex;
    gap: 6px;
}

.target-stats-tools span {
    background: rgba(131,58,180,0.05);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    color: #833ab4;
}

.target-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.target-float {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(131,58,180,0.15);
    animation: targetFloat 6s ease-in-out infinite;
    border: 1px solid rgba(131,58,180,0.2);
}

.target-float i {
    font-size: 18px;
    color: #833ab4;
}

.target-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.target-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.target-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.target-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes targetFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

.target-about {
    padding: 80px 0;
    background: white;
}

.target-about .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.target-about .about-stats-mini {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.target-about .stat-mini-value {
    font-size: 32px;
    font-weight: 800;
    color: #833ab4;
    line-height: 1.2;
}

.target-about .stat-mini-label {
    font-size: 12px;
    color: #666;
}

.target-about .about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.audience-types {
    padding: 80px 0;
    background: #f8f9fa;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.audience-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    transition: var(--transition);
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.audience-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.audience-icon i {
    font-size: 30px;
}

.audience-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.audience-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.audience-list {
    list-style: none;
    padding: 0;
}

.audience-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #555;
}

.audience-list li i {
    color: #34a853;
    font-size: 12px;
}

.ad-formats-section {
    padding: 80px 0;
    background: white;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.format-card {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.format-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.format-icon {
    width: 70px;
    height: 70px;
    background: rgba(131,58,180,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.format-icon i {
    font-size: 30px;
    color: #833ab4;
}

.format-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.format-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.target-includes {
    padding: 80px 0;
    background: #f8f9fa;
}

.target-includes .includes-grid {
    grid-template-columns: repeat(4, 1fr);
}

.target-advantages {
    padding: 80px 0;
    background: white;
}

.target-advantages .advantages-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.target-advantages .advantages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.target-advantages .advantage-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: var(--transition);
}

.target-advantages .advantage-item:hover {
    transform: translateX(10px);
    background: #f5f0ff;
}

.target-advantages .advantage-item i {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: rgba(131,58,180,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.target-advantages .target-stats-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(131,58,180,0.2);
}

.target-advantages .target-stats-card h4 {
    font-size: 20px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--dark-color);
}

.target-advantages .stat-item {
    margin-bottom: 20px;
}

.target-advantages .stat-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
}

.target-advantages .stat-bar-container {
    height: 30px;
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
}

.target-advantages .stat-bar {
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: 600;
    font-size: 13px;
}

.target-advantages .stat-note {
    margin-top: 20px;
    padding: 12px;
    background: #f5f0ff;
    border-radius: 12px;
    font-size: 14px;
    color: #833ab4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .target-about .about-wrapper,
    .target-advantages .advantages-wrapper {
        grid-template-columns: 1fr;
    }
    
    .audience-grid,
    .formats-grid,
    .target-includes .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .target-main-stats,
    .ad-formats,
    .audience-grid,
    .formats-grid,
    .target-includes .includes-grid,
    .target-about .about-features {
        grid-template-columns: 1fr;
    }
    
    .social-logos {
        gap: 15px;
    }
    
    .target-about .about-stats-mini {
        flex-direction: column;
        gap: 10px;
    }
    
    .target-about .about-wrapper {
        gap: 30px;
    }
    
    .target-stats-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ========== СТИЛІ ДЛЯ WEB-АНАЛІТИКИ ========== */

.analytics-hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #e0f2f1 50%, #e3f2fd 100%);
}

.analytics-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.analytics-stats-card {
    background: white;
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(52,152,219,0.15), 0 0 0 1px rgba(52,152,219,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.analytics-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.analytics-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(52,152,219,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #3498db;
}

.analytics-stats-dots {
    display: flex;
    gap: 5px;
}

.analytics-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.analytics-stats-dots span:nth-child(1) { background: #ff5f56; }
.analytics-stats-dots span:nth-child(2) { background: #ffbd2e; }
.analytics-stats-dots span:nth-child(3) { background: #27c93f; }

.analytics-logos {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 16px;
}

.analytics-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.analytics-logo i {
    font-size: 24px;
}

.analytics-logo span {
    font-size: 10px;
    font-weight: 500;
    color: #666;
}

.dashboard-preview {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 20px;
    color: white;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 12px;
    opacity: 0.8;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.dashboard-stat {
    background: rgba(255,255,255,0.1);
    padding: 8px;
    border-radius: 8px;
}

.dashboard-stat .stat-label {
    display: block;
    font-size: 9px;
    opacity: 0.7;
    margin-bottom: 2px;
}

.dashboard-stat .stat-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.dashboard-stat .stat-change {
    font-size: 9px;
}

.stat-change.positive {
    color: #2ecc71;
}

.dashboard-chart {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 80px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #3498db, #1abc9c);
    border-radius: 4px 4px 0 0;
}

.analytics-main-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.analytics-stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(52,152,219,0.02);
    border-radius: 12px;
}

.analytics-stat-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.analytics-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
}

.analytics-stat-desc {
    font-size: 9px;
    color: #999;
    margin-top: 3px;
}

.analytics-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(52,152,219,0.1);
}

.analytics-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #666;
}

.analytics-stats-source i {
    color: #00c853;
}

.analytics-stats-tools {
    display: flex;
    gap: 6px;
}

.analytics-stats-tools span {
    background: rgba(52,152,219,0.05);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    color: #3498db;
}

.analytics-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.analytics-float {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(52,152,219,0.15);
    animation: analyticsFloat 6s ease-in-out infinite;
    border: 1px solid rgba(52,152,219,0.2);
}

.analytics-float i {
    font-size: 18px;
    color: #3498db;
}

.analytics-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.analytics-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.analytics-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.analytics-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes analyticsFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

.analytics-about {
    padding: 80px 0;
    background: white;
}

.analytics-about .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.analytics-about .about-stats-mini {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.analytics-about .stat-mini-value {
    font-size: 32px;
    font-weight: 800;
    color: #3498db;
    line-height: 1.2;
}

.analytics-about .stat-mini-label {
    font-size: 12px;
    color: #666;
}

.analytics-about .about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.analytics-tools {
    padding: 80px 0;
    background: #f8f9fa;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.tool-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    transition: var(--transition);
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.tool-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tool-icon i {
    font-size: 30px;
}

.tool-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.tool-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tool-features {
    list-style: none;
    padding: 0;
}

.tool-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #555;
}

.tool-features li i {
    color: #34a853;
    font-size: 12px;
}

.analytics-includes {
    padding: 80px 0;
    background: white;
}

.analytics-includes .includes-grid {
    grid-template-columns: repeat(4, 1fr);
}

.analytics-advantages {
    padding: 80px 0;
    background: #f8f9fa;
}

.analytics-advantages .advantages-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.analytics-advantages .advantages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.analytics-advantages .advantage-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 16px;
    transition: var(--transition);
}

.analytics-advantages .advantage-item:hover {
    transform: translateX(10px);
    background: #e3f2fd;
}

.analytics-advantages .advantage-item i {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: rgba(52,152,219,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.analytics-advantages .analytics-stats-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(52,152,219,0.2);
}

.analytics-advantages .analytics-stats-card h4 {
    font-size: 20px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--dark-color);
}

.analytics-advantages .stat-item {
    margin-bottom: 20px;
}

.analytics-advantages .stat-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
}

.analytics-advantages .stat-bar-container {
    height: 30px;
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
}

.analytics-advantages .stat-bar {
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: 600;
    font-size: 13px;
}

.analytics-advantages .stat-note {
    margin-top: 20px;
    padding: 12px;
    background: #e3f2fd;
    border-radius: 12px;
    font-size: 14px;
    color: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .analytics-about .about-wrapper,
    .analytics-advantages .advantages-wrapper {
        grid-template-columns: 1fr;
    }
    
    .tools-grid,
    .analytics-includes .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .analytics-main-stats,
    .analytics-logos,
    .dashboard-stats,
    .tools-grid,
    .analytics-includes .includes-grid,
    .analytics-about .about-features {
        grid-template-columns: 1fr;
    }
    
    .analytics-logos {
        flex-direction: column;
        gap: 15px;
    }
    
    .analytics-about .about-stats-mini {
        flex-direction: column;
        gap: 10px;
    }
    
    .analytics-about .about-wrapper {
        gap: 30px;
    }
    
    .analytics-stats-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ========== СТИЛІ ДЛЯ АУДИТУ GOOGLE ADS ========== */

.audit-hero {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 50%, #fff3e0 100%);
}

.audit-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.audit-stats-card {
    background: white;
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(255,107,0,0.15), 0 0 0 1px rgba(255,107,0,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.audit-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.audit-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,0,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #ff6b00;
}

.audit-stats-dots {
    display: flex;
    gap: 5px;
}

.audit-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.audit-stats-dots span:nth-child(1) { background: #ff5f56; }
.audit-stats-dots span:nth-child(2) { background: #ffbd2e; }
.audit-stats-dots span:nth-child(3) { background: #27c93f; }

.audit-main-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.audit-stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(255,107,0,0.02);
    border-radius: 12px;
}

.audit-stat-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.audit-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
}

.audit-stat-desc {
    font-size: 9px;
    color: #999;
    margin-top: 3px;
}

.audit-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 16px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    color: #555;
}

.checklist-item i {
    color: #4caf50;
    font-size: 12px;
}

.audit-errors {
    margin-bottom: 20px;
}

.error-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 5px;
}

.error-label {
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

.error-value {
    font-size: 14px;
    font-weight: 700;
    color: #ff6b00;
}

.audit-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,107,0,0.1);
}

.audit-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #666;
}

.audit-stats-source i {
    color: #00c853;
}

.audit-stats-tools {
    display: flex;
    gap: 6px;
}

.audit-stats-tools span {
    background: rgba(255,107,0,0.05);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    color: #ff6b00;
}

.audit-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.audit-float {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255,107,0,0.15);
    animation: auditFloat 6s ease-in-out infinite;
    border: 1px solid rgba(255,107,0,0.2);
}

.audit-float i {
    font-size: 18px;
    color: #ff6b00;
}

.audit-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.audit-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.audit-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.audit-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes auditFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

.audit-about {
    padding: 80px 0;
    background: white;
}

.audit-about .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.audit-about .about-stats-mini {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.audit-about .stat-mini-value {
    font-size: 32px;
    font-weight: 800;
    color: #ff6b00;
    line-height: 1.2;
}

.audit-about .stat-mini-label {
    font-size: 12px;
    color: #666;
}

.audit-about .about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.audit-when {
    padding: 80px 0;
    background: #f8f9fa;
}

.audit-when .when-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.audit-when .when-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.audit-when .when-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.audit-when .when-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.audit-when .when-icon i {
    font-size: 30px;
}

.audit-when .when-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.audit-when .when-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.audit-check-section {
    padding: 80px 0;
    background: white;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.check-card {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 30px;
    position: relative;
    transition: var(--transition);
}

.check-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.check-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(255,107,0,0.3);
}

.check-card h3 {
    font-size: 18px;
    margin: 20px 0 15px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #555;
}

.check-list li i {
    color: #4caf50;
    font-size: 12px;
}

.audit-deliverables {
    padding: 80px 0;
    background: #f8f9fa;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.deliverable-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.deliverable-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.deliverable-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,107,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.deliverable-icon i {
    font-size: 36px;
    color: #ff6b00;
}

.deliverable-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.deliverable-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.audit-sample {
    padding: 80px 0;
    background: white;
}

.sample-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sample-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.sample-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.sample-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sample-item {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
}

.sample-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
}

.sample-badge.error {
    background: rgba(255,75,75,0.1);
    color: #ff4b4b;
}

.sample-badge.success {
    background: rgba(76,175,80,0.1);
    color: #4caf50;
}

.sample-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.sample-text strong {
    color: var(--dark-color);
}

.report-preview {
    background: #2c3e50;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.report-header {
    background: #34495e;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.report-dots {
    display: flex;
    gap: 5px;
}

.report-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.report-dots span:nth-child(1) { background: #ff5f56; }
.report-dots span:nth-child(2) { background: #ffbd2e; }
.report-dots span:nth-child(3) { background: #27c93f; }

.report-title {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.report-content {
    padding: 20px;
    color: white;
}

.report-section {
    margin-bottom: 20px;
}

.report-section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ecf0f1;
}

.report-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.report-stat {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 8px;
}

.report-stat span {
    display: block;
    font-size: 11px;
    color: #bdc3c7;
    margin-bottom: 3px;
}

.report-stat strong {
    font-size: 16px;
    color: white;
}

.report-issues {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.report-issue {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.issue-status {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.issue-status.error {
    background: rgba(255,75,75,0.2);
    color: #ff8a80;
}

.issue-status.warning {
    background: rgba(255,171,64,0.2);
    color: #ffb74d;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .audit-about .about-wrapper,
    .sample-wrapper {
        grid-template-columns: 1fr;
    }
    
    .audit-when .when-grid,
    .check-grid,
    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .audit-main-stats,
    .audit-checklist,
    .audit-when .when-grid,
    .check-grid,
    .deliverables-grid,
    .audit-about .about-features {
        grid-template-columns: 1fr;
    }
    
    .audit-about .about-stats-mini {
        flex-direction: column;
        gap: 10px;
    }
    
    .audit-about .about-wrapper {
        gap: 30px;
    }
    
    .audit-stats-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .sample-wrapper {
        gap: 30px;
    }
}

/* ========== СТИЛІ ДЛЯ SEO-ПРОСУВАННЯ (ГОЛОВНА СТОРІНКА РОЗДІЛУ) ========== */

.seo-main-hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #ede7f6 50%, #e3f2fd 100%);
}

.seo-main-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.seo-main-stats-card {
    background: white;
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(0,112,243,0.15), 0 0 0 1px rgba(0,112,243,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.seo-main-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.seo-main-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,112,243,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #0070f3;
}

.seo-main-stats-dots {
    display: flex;
    gap: 5px;
}

.seo-main-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.seo-main-stats-dots span:nth-child(1) { background: #ff5f56; }
.seo-main-stats-dots span:nth-child(2) { background: #ffbd2e; }
.seo-main-stats-dots span:nth-child(3) { background: #27c93f; }

.seo-main-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.seo-main-stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(0,112,243,0.02);
    border-radius: 12px;
}

.seo-main-stat-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.seo-main-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
}

.seo-main-stat-desc {
    font-size: 9px;
    color: #999;
    margin-top: 3px;
}

.seo-rankings {
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 10px;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.ranking-item:last-child {
    border-bottom: none;
}

.ranking-position {
    font-size: 16px;
    font-weight: 700;
    color: #0070f3;
    min-width: 40px;
}

.ranking-keyword {
    flex: 1;
    font-size: 13px;
    color: #666;
}

.ranking-change {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
}

.ranking-change.positive {
    background: rgba(76,175,80,0.1);
    color: #4caf50;
}

.seo-services-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-mini-link {
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    color: #0070f3;
    text-decoration: none;
    transition: var(--transition);
}

.service-mini-link:hover {
    background: #0070f3;
    color: white;
}

.seo-main-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0,112,243,0.1);
}

.seo-main-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #666;
}

.seo-main-stats-source i {
    color: #00c853;
}

.seo-main-stats-tools {
    display: flex;
    gap: 6px;
}

.seo-main-stats-tools span {
    background: rgba(0,112,243,0.05);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    color: #0070f3;
}

.seo-main-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.seo-main-float {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,112,243,0.15);
    animation: seoMainFloat 6s ease-in-out infinite;
    border: 1px solid rgba(0,112,243,0.2);
}

.seo-main-float i {
    font-size: 18px;
    color: #0070f3;
}

.seo-main-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.seo-main-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.seo-main-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.seo-main-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes seoMainFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

.seo-usp {
    padding: 60px 0;
    background: white;
}

.seo-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.seo-services .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.seo-process {
    padding: 80px 0;
    background: white;
}

.seo-process .process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.seo-whyus {
    padding: 80px 0;
    background: #f8f9fa;
}

.seo-whyus .whyus-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.seo-whyus .whyus-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.seo-whyus .whyus-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 16px;
    transition: var(--transition);
}

.seo-whyus .whyus-item:hover {
    transform: translateX(10px);
    background: #e3f2fd;
}

.seo-whyus .whyus-item i {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: rgba(0,112,243,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.seo-stats-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,112,243,0.2);
    text-align: center;
}

.seo-stats-card h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.seo-stats-card .stat-item {
    margin-bottom: 25px;
}

.seo-stats-card .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #0070f3;
    line-height: 1.2;
    margin-bottom: 5px;
}

.seo-stats-card .stat-label {
    font-size: 16px;
    color: #666;
}

.seo-stats-card .stat-note {
    margin-top: 20px;
    padding: 12px;
    background: #e3f2fd;
    border-radius: 12px;
    font-size: 14px;
    color: #0070f3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .seo-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .seo-whyus .whyus-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .seo-main-stats-grid,
    .seo-services .services-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-rankings .ranking-item {
        flex-wrap: wrap;
    }
    
    .seo-whyus .whyus-wrapper {
        gap: 30px;
    }
    
    .seo-main-stats-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ========== СТИЛІ ДЛЯ РОЗРОБКИ САЙТІВ (ГОЛОВНА СТОРІНКА РОЗДІЛУ) ========== */

.dev-main-hero {
    background: linear-gradient(135deg, #f3e5f5 0%, #fce4ec 50%, #f3e5f5 100%);
}

.dev-main-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.dev-main-stats-card {
    background: white;
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(156,39,176,0.15), 0 0 0 1px rgba(156,39,176,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.dev-main-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.dev-main-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(156,39,176,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #9c27b0;
}

.dev-main-stats-dots {
    display: flex;
    gap: 5px;
}

.dev-main-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.dev-main-stats-dots span:nth-child(1) { background: #ff5f56; }
.dev-main-stats-dots span:nth-child(2) { background: #ffbd2e; }
.dev-main-stats-dots span:nth-child(3) { background: #27c93f; }

.dev-main-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.dev-main-stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(156,39,176,0.02);
    border-radius: 12px;
}

.dev-main-stat-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.dev-main-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
}

.dev-main-stat-desc {
    font-size: 9px;
    color: #999;
    margin-top: 3px;
}

.dev-types {
    margin-bottom: 20px;
}

.dev-type-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dev-type-item i {
    width: 24px;
    color: #9c27b0;
}

.dev-type-item span {
    flex: 1;
    font-size: 13px;
    color: #666;
}

.dev-type-price {
    font-size: 14px;
    font-weight: 700;
    color: #9c27b0;
}

.dev-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.dev-tech span {
    padding: 5px 12px;
    background: #f0f0f0;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 500;
    color: #666;
}

.dev-main-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(156,39,176,0.1);
}

.dev-main-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #666;
}

.dev-main-stats-source i {
    color: #00c853;
}

.dev-main-stats-tools {
    display: flex;
    gap: 6px;
}

.dev-main-stats-tools span {
    background: rgba(156,39,176,0.05);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    color: #9c27b0;
}

.dev-main-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.dev-main-float {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(156,39,176,0.15);
    animation: devMainFloat 6s ease-in-out infinite;
    border: 1px solid rgba(156,39,176,0.2);
}

.dev-main-float i {
    font-size: 18px;
    color: #9c27b0;
}

.dev-main-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.dev-main-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.dev-main-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.dev-main-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes devMainFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

.dev-usp {
    padding: 60px 0;
    background: white;
}

.dev-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.dev-services .services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.dev-process {
    padding: 80px 0;
    background: white;
}

.dev-process .process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.dev-whyus {
    padding: 80px 0;
    background: #f8f9fa;
}

.dev-whyus .whyus-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.dev-whyus .whyus-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.dev-whyus .whyus-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 16px;
    transition: var(--transition);
}

.dev-whyus .whyus-item:hover {
    transform: translateX(10px);
    background: #f3e5f5;
}

.dev-whyus .whyus-item i {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: rgba(156,39,176,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dev-stats-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(156,39,176,0.2);
    text-align: center;
}

.dev-stats-card h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.dev-stats-card .stat-item {
    margin-bottom: 25px;
}

.dev-stats-card .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #9c27b0;
    line-height: 1.2;
    margin-bottom: 5px;
}

.dev-stats-card .stat-label {
    font-size: 16px;
    color: #666;
}

.dev-stats-card .stat-note {
    margin-top: 20px;
    padding: 12px;
    background: #f3e5f5;
    border-radius: 12px;
    font-size: 14px;
    color: #9c27b0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.dev-tech-section {
    padding: 60px 0;
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tech-item i {
    font-size: 40px;
}

.tech-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
}

/* Адаптивність */
@media (max-width: 1200px) {
    .dev-services .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .dev-whyus .whyus-wrapper {
        grid-template-columns: 1fr;
    }
    
    .dev-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .dev-main-stats-grid,
    .dev-services .services-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .dev-types .dev-type-item {
        flex-wrap: wrap;
    }
    
    .dev-tech {
        justify-content: center;
    }
    
    .dev-whyus .whyus-wrapper {
        gap: 30px;
    }
    
    .dev-main-stats-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}


/* ========== СТИЛІ ДЛЯ PPC РЕКЛАМИ (ГОЛОВНА СТОРІНКА РОЗДІЛУ) ========== */

.ppc-main-hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #e0f2f1 50%, #e3f2fd 100%);
}

.ppc-main-stats-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.ppc-main-stats-card {
    background: white;
    border-radius: 32px;
    padding: 25px;
    box-shadow: 0 25px 50px -8px rgba(66,133,244,0.15), 0 0 0 1px rgba(66,133,244,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.ppc-main-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ppc-main-stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(66,133,244,0.1);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #4285f4;
}

.ppc-main-stats-dots {
    display: flex;
    gap: 5px;
}

.ppc-main-stats-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.ppc-main-stats-dots span:nth-child(1) { background: #ff5f56; }
.ppc-main-stats-dots span:nth-child(2) { background: #ffbd2e; }
.ppc-main-stats-dots span:nth-child(3) { background: #27c93f; }

.ppc-platforms {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.platform-item i {
    font-size: 24px;
}

.platform-item span {
    font-size: 11px;
    font-weight: 500;
    color: #666;
}

.ppc-main-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.ppc-main-stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(66,133,244,0.02);
    border-radius: 12px;
}

.ppc-main-stat-value {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.ppc-main-stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
}

.ppc-main-stat-desc {
    font-size: 9px;
    color: #999;
    margin-top: 3px;
}

.ppc-services-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.ppc-services-mini .service-mini-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    transition: var(--transition);
}

.ppc-services-mini .service-mini-link:hover {
    background: #4285f4;
    color: white;
}

.ppc-services-mini .service-mini-link i {
    font-size: 14px;
}

.ad-preview-mini {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #4285f4;
}

.ad-preview-mini .ad-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 11px;
}

.ad-preview-mini .ad-url {
    color: #006621;
}

.ad-preview-mini .ad-label {
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
}

.ad-preview-mini .ad-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a0dab;
    margin-bottom: 3px;
}

.ad-preview-mini .ad-description {
    font-size: 11px;
    color: #545454;
}

.ppc-main-stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(66,133,244,0.1);
}

.ppc-main-stats-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #666;
}

.ppc-main-stats-source i {
    color: #00c853;
}

.ppc-main-stats-tools {
    display: flex;
    gap: 6px;
}

.ppc-main-stats-tools span {
    background: rgba(66,133,244,0.05);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    color: #4285f4;
}

.ppc-main-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ppc-main-float {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(66,133,244,0.15);
    animation: ppcMainFloat 6s ease-in-out infinite;
    border: 1px solid rgba(66,133,244,0.2);
}

.ppc-main-float i {
    font-size: 18px;
    color: #4285f4;
}

.ppc-main-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
.ppc-main-float-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.ppc-main-float-3 { top: 40%; right: 15%; animation-delay: 2s; }
.ppc-main-float-4 { bottom: 30%; left: 10%; animation-delay: 3s; }

@keyframes ppcMainFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(5deg); }
    50% { transform: translate(10px, -5px) rotate(10deg); }
    75% { transform: translate(5px, -15px) rotate(5deg); }
}

.ppc-types {
    padding: 80px 0;
    background: white;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.type-card {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 30px 20px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.type-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.type-icon i {
    font-size: 28px;
}

.type-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.type-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

.type-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.type-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 12px;
    color: #555;
}

.type-features li i {
    color: #4caf50;
    font-size: 11px;
}

.type-link {
    color: #4285f4;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.type-link:hover {
    color: #34a853;
    transform: translateX(5px);
}

.ppc-why {
    padding: 80px 0;
    background: #f8f9fa;
}

.ppc-why .why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ppc-why .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.ppc-why .why-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 16px;
    transition: var(--transition);
}

.ppc-why .why-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.ppc-why .why-item i {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: rgba(66,133,244,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ppc-why .why-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.ppc-why .why-item p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.ppc-stats-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(66,133,244,0.2);
}

.ppc-stats-card h4 {
    font-size: 20px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--dark-color);
}

.ppc-stats-card .stat-item {
    margin-bottom: 20px;
}

.ppc-stats-card .stat-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
}

.ppc-stats-card .stat-bar-container {
    height: 30px;
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
}

.ppc-stats-card .stat-bar {
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: 600;
    font-size: 13px;
}

.ppc-stats-card .stat-note {
    margin-top: 20px;
    padding: 12px;
    background: #e3f2fd;
    border-radius: 12px;
    font-size: 14px;
    color: #4285f4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ppc-process {
    padding: 80px 0;
    background: white;
}

.ppc-process .process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.ppc-metrics {
    padding: 80px 0;
    background: #f8f9fa;
}

/* ========== ОНОВЛЕНІ СТИЛІ ДЛЯ METRIC-CARD ========== */

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.metric-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(66,133,244,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.metric-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(66,133,244,0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.metric-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(66,133,244,0.2);
    border-color: rgba(66,133,244,0.3);
}

.metric-card:hover::before {
    opacity: 1;
}

.metric-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(66,133,244,0.1), rgba(52,168,83,0.1));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(66,133,244,0.1);
}

.metric-card:hover .metric-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(66,133,244,0.2), rgba(52,168,83,0.2));
}

.metric-icon i {
    font-size: 36px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.metric-card:hover .metric-icon i {
    transform: scale(1.1);
}

.metric-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
}

.metric-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #4285f4, #34a853);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.metric-card:hover h3::after {
    width: 50px;
}

.metric-value {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #4285f4, #34a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 5px 15px rgba(66,133,244,0.2);
    position: relative;
    display: inline-block;
}

.metric-value::before {
    content: attr(data-prefix);
    font-size: 18px;
    font-weight: 500;
    opacity: 0.7;
    margin-right: 5px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-value::after {
    content: attr(data-suffix);
    font-size: 18px;
    font-weight: 500;
    opacity: 0.7;
    margin-left: 5px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 0 10px;
    font-weight: 400;
	text-align: center;
}

/* Індивідуальні кольори для різних метрик */
.metric-card:nth-child(1) .metric-icon i,
.metric-card:nth-child(1) .metric-value {
    background: linear-gradient(135deg, #4285f4, #5a9cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-card:nth-child(2) .metric-icon i,
.metric-card:nth-child(2) .metric-value {
    background: linear-gradient(135deg, #34a853, #4caf50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-card:nth-child(3) .metric-icon i,
.metric-card:nth-child(3) .metric-value {
    background: linear-gradient(135deg, #fbbc05, #ffb300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-card:nth-child(4) .metric-icon i,
.metric-card:nth-child(4) .metric-value {
    background: linear-gradient(135deg, #ea4335, #ff5f4b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-card:nth-child(5) .metric-icon i,
.metric-card:nth-child(5) .metric-value {
    background: linear-gradient(135deg, #9c27b0, #ba68c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-card:nth-child(6) .metric-icon i,
.metric-card:nth-child(6) .metric-value {
    background: linear-gradient(135deg, #ff6b00, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Додаткова анімація для цифр */
@keyframes countUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.metric-value {
    animation: countUp 0.6s ease forwards;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .metric-card {
        padding: 30px 20px;
    }
    
    .metric-value {
        font-size: 36px;
    }
    
    .metric-icon {
        width: 70px;
        height: 70px;
    }
    
    .metric-icon i {
        font-size: 30px;
    }
}

/* Адаптивність */
@media (max-width: 1200px) {
    .types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .ppc-why .why-wrapper {
        grid-template-columns: 1fr;
    }
    
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ppc-main-stats-grid,
    .ppc-platforms,
    .types-grid,
    .metrics-grid,
    .ppc-why .why-grid {
        grid-template-columns: 1fr;
    }
    
    .ppc-platforms {
        flex-direction: column;
        gap: 10px;
    }
    
    .ppc-services-mini {
        justify-content: center;
    }
    
    .ppc-why .why-wrapper {
        gap: 30px;
    }
    
    .ppc-main-stats-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}


/* ========== СТИЛІ ДЛЯ СТОРІНКИ ПРО НАС ========== */

.about-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9eef5 100%);
}

/* Наша історія */
.about-story {
    padding: 80px 0;
    background: var(--light-color);
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 36px;
    margin: 20px 0 25px;
    line-height: 1.3;
}

.story-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-quote {
    background: rgba(0,112,243,0.05);
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    border-radius: 16px;
    margin-top: 30px;
    position: relative;
}

.story-quote i {
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 10px;
}

.story-quote p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 0;
    color: var(--dark-color);
}

.story-image .report-preview {
    transform: rotate(2deg);
    transition: var(--transition);
}

.story-image .report-preview:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Наші цінності */
.about-values {
    padding: 80px 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.value-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 36px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Наша команда */
.about-team {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.team-card {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar i {
    font-size: 60px;
    color: #999;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-position {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.team-bio {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
}

/* Наші клієнти */
.about-clients {
    padding: 60px 0;
    background: #f8f9fa;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.client-item {
    background: white;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.client-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.client-item span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
}

/* Адаптивність */
@media (max-width: 1024px) {
    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid,
    .team-grid,
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid,
    .team-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content h2 {
        font-size: 28px;
    }
    
    .story-quote p {
        font-size: 16px;
    }
    
    .team-card {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* ========== СТИЛІ ДЛЯ СТОРІНКИ ПОЛІТИКИ КОНФІДЕНЦІЙНОСТІ ========== */

.privacy-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9eef5 100%);
    padding: 80px 0 60px;
}

/* Основний контент */
.privacy-content {
    padding: 60px 0 80px;
    background: var(--light-color);
}

.privacy-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Бічне меню */
.privacy-sidebar-sticky {
    position: sticky;
    top: 100px;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid rgba(0,0,0,0.05);
}

.privacy-sidebar h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark-color);
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0,112,243,0.2);
}

.privacy-toc {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.privacy-toc li {
    margin-bottom: 12px;
}

.privacy-toc li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.privacy-toc li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.privacy-last-updated {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 13px;
    color: #999;
}

.privacy-last-updated i {
    color: var(--primary-color);
}

/* Основний текст */
.privacy-main {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

.privacy-section {
    margin-bottom: 50px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.privacy-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.privacy-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.privacy-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    line-height: 1.7;
    color: #555;
    border-bottom: 1px solid rgba(0,0,0,0.02);
}

.privacy-list li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.privacy-list li strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* Контактна інформація */
.privacy-contact {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 25px;
    margin: 25px 0;
}

.privacy-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.privacy-contact-item:last-child {
    margin-bottom: 0;
}

.privacy-contact-item i {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.privacy-contact-item strong {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 2px;
}

.privacy-contact-item span,
.privacy-contact-item a {
    font-size: 15px;
    color: var(--dark-color);
    text-decoration: none;
}

.privacy-contact-item a:hover {
    color: var(--primary-color);
}

/* Адаптивність */
@media (max-width: 1024px) {
    .privacy-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .privacy-sidebar-sticky {
        position: static;
        top: auto;
    }
    
    .privacy-main {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .privacy-main {
        padding: 25px 20px;
    }
    
    .privacy-section h2 {
        font-size: 22px;
    }
    
    .privacy-section h3 {
        font-size: 18px;
    }
    
    .privacy-section p {
        font-size: 14px;
    }
    
    .privacy-list li {
        font-size: 14px;
    }
    
    .privacy-contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .privacy-main {
        padding: 20px 15px;
    }
    
    .privacy-section h2 {
        font-size: 20px;
    }
    
    .privacy-toc li a {
        font-size: 13px;
    }
}

/* ========== СТИЛІ ДЛЯ СТОРІНКИ КОНТАКТИ ========== */

.contacts-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9eef5 100%);
    padding: 80px 0 60px;
}

/* Основний контент */
.contacts-main {
    padding: 60px 0;
    background: var(--light-color);
}

.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Контактна інформація */
.contacts-card,
.form-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.contacts-card h2,
.form-card h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contacts-card p,
.form-card p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Контактні деталі */
.contacts-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0,112,243,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 22px;
    color: var(--primary-color);
}

.contact-text {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.contact-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    text-decoration: none;
    margin-bottom: 5px;
    transition: var(--transition);
}

.contact-value:hover {
    color: var(--primary-color);
}

.contact-note {
    display: block;
    font-size: 13px;
    color: #999;
}

/* Соціальні мережі */
.contacts-social {
    margin-bottom: 30px;
}

.contacts-social h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(0,112,243,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-5px);
}

/* Графік роботи */
.contacts-working-hours h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.working-hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
}

.working-hours-item span {
    color: #666;
    font-size: 15px;
}

.working-hours-item strong {
    color: var(--dark-color);
    font-weight: 600;
}

.working-hours-note {
    font-size: 13px;
    color: #999;
    margin-top: 15px;
    font-style: italic;
}

/* Форма */
.contact-form {
    margin-top: 20px;
}

.privacy-checkbox {
    margin-bottom: 25px;
}

.privacy-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.privacy-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.privacy-checkbox a {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-checkbox a:hover {
    text-decoration: underline;
}

/* Адаптивність */
@media (max-width: 992px) {
    .contacts-wrapper,
    .map-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contacts-card,
    .form-card {
        padding: 30px;
    }
    
    .map-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-info {
        order: 2;
    }
    
    .map-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contacts-card h2,
    .form-card h2 {
        font-size: 24px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 18px;
    }
    
    .contact-value {
        font-size: 16px;
    }
    
    .working-hours-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contacts-card,
    .form-card {
        padding: 25px 20px;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
    
    .privacy-checkbox label {
        font-size: 13px;
    }
    
    .directions-list li {
        font-size: 14px;
    }
}

/* ========== СТИЛІ ДЛЯ БЛОГУ ========== */

.blog-hero {
    padding: 80px 0 60px;
}

/* Статистика блогу */
.blog-stats {
    padding: 20px 0 40px;
}

/* Сітка блогу */
.blog-grid-section {
    padding: 60px 0;
    background: var(--light-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.blog-category {
    background: var(--gradient);
    color: var(--light-color);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-date {
    color: #999;
    font-size: 13px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.blog-author i {
    color: var(--primary-color);
    font-size: 18px;
}

.blog-author a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
}

.blog-author a:hover {
    color: var(--primary-color);
}

.blog-meta-info {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #999;
}

.blog-meta-info i {
    margin-right: 3px;
    color: var(--primary-color);
}

.blog-tags-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
}

.tag-mini {
    font-size: 11px;
    color: var(--primary-color);
    text-decoration: none;
    background: rgba(0,112,243,0.05);
    padding: 3px 10px;
    border-radius: 20px;
    transition: var(--transition);
}

.tag-mini:hover {
    background: var(--gradient);
    color: white;
}

.tag-mini.more {
    background: #f0f0f0;
    color: #999;
    cursor: default;
}

.tag-mini.more:hover {
    background: #f0f0f0;
    color: #999;
}

/* Хмара тегів */
.blog-tags-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
    margin-top: 40px;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.tag-cloud-item {
    color: var(--primary-color);
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 30px;
    background: rgba(0,112,243,0.05);
    transition: var(--transition);
    display: inline-block;
}

.tag-cloud-item:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
}

/* Сторінка автора */
.author-hero {
    padding: 60px 0;
}

.author-card {
    padding: 30px;
}

.author-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.author-expertise h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.author-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.author-bio {
    padding: 60px 0;
    background: #f8f9fa;
}

.bio-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.bio-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.bio-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.bio-quote {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: var(--shadow);
}

.bio-quote i {
    font-size: 30px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.bio-quote p {
    font-size: 18px;
    font-style: italic;
    color: var(--dark-color);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .bio-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .author-stats {
        grid-template-columns: 1fr;
    }
    
    .tags-cloud {
        gap: 10px;
    }
}

/* ========== СТИЛІ ДЛЯ БЛОГУ ========== */

.blog-hero {
    padding: 80px 0 60px;
}

/* Сітка блогу */
.blog-grid-section {
    padding: 60px 0 80px;
    background: var(--light-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #999;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.blog-tag {
    padding: 4px 10px;
    background: rgba(0,112,243,0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.blog-tag:hover {
    background: var(--gradient);
    color: white;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.blog-read-more:hover {
    gap: 8px;
    color: var(--secondary-color);
}

.blog-stats {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #999;
}

.blog-stats i {
    color: var(--primary-color);
    margin-right: 3px;
}

/* Хмара тегів */
.popular-tags-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tag-cloud-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: white;
    border-radius: 40px;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.9rem, var(--tag-size, 1rem), 2.2rem);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.tag-cloud-item:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.tag-count {
    margin-left: 8px;
    background: rgba(0,0,0,0.05);
    padding: 2px 8px;
    border-radius: 30px;
    font-size: 0.7em;
}

.tag-cloud-item:hover .tag-count {
    background: rgba(255,255,255,0.2);
}

/* Адаптивність */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tags-cloud {
        gap: 10px;
    }
    
    .tag-cloud-item {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .blog-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .blog-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ========== СТИЛІ ДЛЯ СТОРІНКИ АВТОРА ========== */

.author-hero {
    padding: 80px 0 60px;
}

.author-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-avatar-large {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    border: 4px solid white;
}

.author-avatar-large i {
    font-size: 150px;
    color: #999;
}

.author-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.author-social .social-icon {
    width: 45px;
    height: 45px;
    background: rgba(0,112,243,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    transition: var(--transition);
}

.author-social .social-icon:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-5px);
}

.author-bio {
    padding: 60px 0;
    background: #f8f9fa;
}

.bio-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bio-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.bio-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.bio-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bio-stats .stat-circle {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.bio-stats .circle-value {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.bio-stats .circle-label {
    font-size: 14px;
    color: #666;
}

.author-posts {
    padding: 80px 0;
}

/* Адаптивність */
@media (max-width: 992px) {
    .bio-wrapper {
        grid-template-columns: 1fr;
    }
    
    .author-image {
        order: -1;
    }
    
    .author-avatar-large {
        width: 250px;
        height: 250px;
    }
    
    .author-avatar-large i {
        font-size: 120px;
    }
}

@media (max-width: 768px) {
    .bio-stats {
        grid-template-columns: 1fr;
    }
}

/* ========== СТИЛІ ДЛЯ РЕЙТИНГУ ТА КНОПКИ ЗАВАНТАЖЕННЯ ========== */

/* Рейтинг */
.blog-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding: 5px 10px;
    background: rgba(0,112,243,0.03);
    border-radius: 30px;
    width: fit-content;
}

.rating-stars {
    color: #ffc107;
    font-size: 13px;
    display: flex;
    gap: 2px;
}

.rating-stars i {
    transition: transform 0.2s ease;
}

.blog-card:hover .rating-stars i {
    transform: scale(1.1);
}

.rating-value {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 14px;
}

.rating-count {
    color: #999;
    font-size: 12px;
}

/* Кнопка завантаження */
.blog-load-more {
    text-align: center;
    margin-top: 50px;
}

#loadMoreBtn {
    position: relative;
    min-width: 250px;
    transition: all 0.3s ease;
}

#loadMoreBtn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

#loadMoreBtn:hover i {
    transform: rotate(180deg);
}

#loadMoreBtn.loading {
    pointer-events: none;
    opacity: 0.7;
}

#loadMoreBtn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Анімація появи нових карток */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card.new-card {
    animation: fadeInUp 0.5s ease forwards;
}

/* Адаптивність */
@media (max-width: 768px) {
    .blog-rating {
        flex-wrap: wrap;
    }
    
    #loadMoreBtn {
        min-width: 200px;
        width: 100%;
    }
}

/* ========== СТИЛІ ДЛЯ СТОРІНКИ СТАТТІ ========== */

/* Hero секція статті */
.post-hero {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9eef5 100%);
}

.post-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.post-meta-top {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
    flex-wrap: wrap;
}

.post-meta-top i {
    margin-right: 5px;
    color: var(--primary-color);
}

.post-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.post-excerpt {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.post-author-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 20px 30px;
    border-radius: 60px;
    box-shadow: var(--shadow);
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.author-avatar i {
    font-size: 50px;
    color: #ccc;
}

.author-info {
    flex: 1;
}

.author-label {
    display: block;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

.author-name:hover {
    color: var(--primary-color);
}

.author-position {
    display: block;
    font-size: 13px;
    color: #666;
}

.post-rating-block {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,112,243,0.05);
    padding: 8px 15px;
    border-radius: 30px;
}

.rating-value {
    font-weight: 700;
    color: var(--dark-color);
}

.rating-count {
    color: #999;
    font-size: 13px;
}

/* Основний контент */
.post-content {
    padding: 60px 0 80px;
    background: var(--light-color);
}

.post-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Бічне меню */
.post-sidebar {
    position: sticky;
    top: 100px;
}

.toc-wrapper {
    background: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid rgba(0,0,0,0.05);
}

.toc-wrapper h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark-color);
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0,112,243,0.2);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.toc-list li {
    margin-bottom: 12px;
}

.toc-list li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.toc-list li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.toc-cta {
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.toc-cta p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.toc-cta .btn {
    width: 100%;
}

/* Основний текст */
.post-main {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.post-section {
    margin-bottom: 50px;
}

.post-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.post-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.post-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.post-section p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.post-section p:last-child {
    margin-bottom: 0;
}

/* Списки */
.post-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.post-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    line-height: 1.7;
    color: #555;
    border-bottom: 1px solid rgba(0,0,0,0.02);
}

.post-list li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.post-list li strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* Нотатки */
.post-note {
    background: rgba(0,112,243,0.03);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    display: flex;
    gap: 15px;
}

.post-note i {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.post-note strong {
    color: var(--dark-color);
}

/* Посилання */
.post-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed rgba(0,112,243,0.3);
    transition: var(--transition);
}

.post-section a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* Блоки з посиланнями */
.post-link-block {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    margin: 25px 0;
    border: 1px solid rgba(0,0,0,0.05);
}

.post-link-block h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* Високий пріоритет */
.post-highlight {
    background: linear-gradient(135deg, rgba(0,112,243,0.05), rgba(121,40,202,0.05));
    border-radius: 16px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid rgba(0,112,243,0.1);
}

/* Чек-лист */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.checklist-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checklist input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checklist-note {
    font-size: 14px;
    color: #999;
    font-style: italic;
    margin-top: 20px;
}

/* Пріоритети */
.priority-list {
    margin: 25px 0;
}

.priority-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
}

.priority-badge {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

.priority-badge.high {
    background: #ff5f56;
    box-shadow: 0 0 10px rgba(255, 95, 86, 0.5);
}

.priority-badge.medium {
    background: #ffbd2e;
    box-shadow: 0 0 10px rgba(255, 189, 46, 0.5);
}

.priority-badge.low {
    background: #27c93f;
    box-shadow: 0 0 10px rgba(39, 201, 63, 0.5);
}

/* CTA блок */
.post-cta {
    background: var(--gradient);
    color: white;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    margin: 40px 0 20px;
}

.post-cta h3 {
    color: white !important;
    font-size: 24px;
    margin-bottom: 15px;
}

.post-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.post-cta .btn {
    background: white;
    color: var(--primary-color);
    border: none;
}

.post-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Теги */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 25px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin: 30px 0;
}

.tags-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-right: 5px;
}

.post-tag {
    padding: 6px 15px;
    background: rgba(0,112,243,0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.post-tag:hover {
    background: var(--gradient);
    color: white;
}

/* Блок автора */
.post-author-box {
    display: flex;
    gap: 25px;
    background: #f8f9fa;
    border-radius: 24px;
    padding: 30px;
    margin: 30px 0;
}

.author-box-avatar i {
    font-size: 80px;
    color: #ccc;
}

.author-box-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.author-box-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.author-box-bio {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.author-box-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.author-box-link:hover {
    text-decoration: underline;
}

/* Схожі статті */
.related-posts {
    margin-top: 50px;
}

.related-posts h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.related-card a {
    text-decoration: none;
}

.related-card h4 {
    font-size: 16px;
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.5;
    transition: var(--transition);
}

.related-card:hover h4 {
    color: var(--primary-color);
}

.related-date {
    font-size: 12px;
    color: #999;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .post-layout {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        position: static;
        top: auto;
        order: -1;
        margin-bottom: 30px;
    }
    
    .toc-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .post-title {
        font-size: 32px;
    }
    
    .post-author-block {
        flex-direction: column;
        text-align: center;
    }
    
    .post-rating-block {
        width: 100%;
        justify-content: center;
    }
    
    .post-main {
        padding: 25px;
    }
    
    .post-section h2 {
        font-size: 24px;
    }
    
    .post-section h3 {
        font-size: 20px;
    }
    
    .post-note {
        flex-direction: column;
        text-align: center;
    }
    
    .post-author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .post-meta-top {
        flex-direction: column;
        gap: 10px;
    }
    
    .post-cta {
        padding: 30px 20px;
    }
}

/* Стилі для сітки інструментів */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.tool-item {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.tool-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.tool-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.tool-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== СТИЛІ ДЛЯ ВІДГУКІВ ТА РЕЙТИНГУ ========== */

/* Секція відгуків */
.post-reviews-section {
    margin: 50px 0 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.reviews-header h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin: 0;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 50px;
}

.summary-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-stars.large i {
    font-size: 20px;
    margin-right: 2px;
}

.summary-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}

.summary-count {
    color: #999;
    font-size: 14px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* Форма відгуку */
.review-form-container {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(0,112,243,0.1);
}

.review-form h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.rating-input {
    margin: 15px 0;
}

.rating-stars-input {
    display: flex;
    gap: 5px;
    font-size: 30px;
    cursor: pointer;
}

.rating-stars-input i {
    color: #ddd;
    transition: all 0.2s ease;
}

.rating-stars-input i:hover {
    transform: scale(1.1);
}

.btn-text {
    background: transparent;
    border: none;
    margin-left: 10px;
}

.btn-text:hover {
    color: var(--primary-color);
}

/* Список відгуків */
.reviews-list {
    margin-top: 20px;
}

.review-item {
    padding: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.review-item:hover {
    background: rgba(0,112,243,0.02);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.review-author {
    font-weight: 700;
    color: var(--dark-color);
}

.review-date {
    font-size: 12px;
    color: #999;
}

.review-rating {
    color: #ffc107;
    font-size: 12px;
    margin-left: auto;
}

.review-text {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.no-reviews {
    text-align: center;
    padding: 40px;
    color: #999;
    font-style: italic;
    background: #f8f9fa;
    border-radius: 16px;
}

/* Анімація для нових відгуків */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Сповіщення */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    border-radius: 12px;
    padding: 15px 25px;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 9999;
    border-left: 4px solid var(--primary-color);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #00c853;
}

.notification-success i {
    color: #00c853;
}

.notification i {
    font-size: 24px;
}

.notification span {
    font-size: 14px;
    color: var(--dark-color);
}

/* Кнопка завантаження ще відгуків */
#loadMoreReviewsBtn {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #f8f9fa;
    border: 1px dashed rgba(0,112,243,0.3);
    border-radius: 30px;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

#loadMoreReviewsBtn:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

/* Адаптивність */
@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .reviews-summary {
        width: 100%;
        justify-content: space-between;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .review-rating {
        margin-left: 0;
    }
    
    .notification {
        left: 20px;
        right: 20px;
        bottom: 20px;
        transform: translateY(200px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}