/* 
Theme Name: SpyRanking
Theme URI: https://spyranking.com/
Author: SpyRanking Team
Version: 2.0
*/

:root {
    --primary: #845ade;
    --secondary: #28bf94;
    --light: #f8f9fa;
    --dark: #212529;
    --gray-light: #f1f3f5;
    --gray: #6c757d;
}

/* Информация о годовой стоимости */
.yearly-info {
margin-top: 10px;
font-size: 0.85rem;
line-height: 1.4;
}

.yearly-total {
font-weight: 500;
margin-bottom: 2px;
}

.yearly-savings {
font-weight: 600;
}

/* SVG иконки */
.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    fill: currentColor;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
}

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

/* Global list styles */
ul {
    padding-left: 20px;
    margin-right: 10px;
}

ul li {
    color: #333;
    position: relative;
}

ul li::marker {
    color: #6b46c1;
}

/* Стриманий дизайн для цитат як важливих виділень */
blockquote {
    position: relative;
    margin: 30px 0;
    padding: 20px 25px 20px 60px;
    background-color: #f8f5ff;
    border-left: 4px solid #8257e6;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

blockquote::before {
    content: '!';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #8257e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: white;
}

blockquote p {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Додатковий стиль для виділення важливого тексту */
blockquote strong {
    color: #6b46c1;
    font-weight: 600;
}

.btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    min-width: auto;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: none;
}

.btn-primary:hover {
    background-color: #734ac9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(132, 90, 222, 0.2);
}

.btn-secondary {
    background-color: white;
    color: var(--primary);
    box-shadow: none;
    border: 1px solid #e9ecef;
}

.btn-secondary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #734ac9;
    color: white;
    border-color: #734ac9;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    margin-left: 15px;
}

@media (min-width: 992px) {
    .lang-dropdown {
        margin-left: 40px;
    }
}

.lang-selected {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--primary);
    background: white;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.lang-selected:hover {
    background: rgba(132, 90, 222, 0.05);
}

.lang-selected .icon {
    margin-left: 6px;
    width: 10px;
    height: 10px;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.lang-dropdown.open .lang-selected .icon {
    transform: rotate(180deg);
}

.lang-options {
    display: none;
    position: absolute;
    top: 110%;
    right: 0;
    background: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    border-radius: 10px;
    z-index: 1003;
    min-width: 60px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.lang-options a {
    display: block;
    padding: 8px 16px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
}

.lang-options a:hover {
    background: #f8f9fa;
    color: var(--primary);
}

.lang-dropdown.open .lang-options {
    display: block;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header Styles */
header {
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: block;
    width: 150px;
    flex-shrink: 0;
    margin-right: 20px;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 992px) {
    .logo {
        margin-right: 40px;
    }
}

/* Стили для логотипа */

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

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
    white-space: nowrap;
}

nav ul li a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

@media (min-width: 992px) {
    .header-actions {
        margin-left: 40px;
    }
}

/* Мобильное меню */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1003;
    margin-left: auto;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--primary);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0px;
}

.mobile-menu-toggle span:nth-child(2), .mobile-menu-toggle span:nth-child(3) {
    top: 10px;
}

.mobile-menu-toggle span:nth-child(4) {
    top: 20px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.mobile-menu-toggle.active span:nth-child(2) {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.mobile-menu-toggle.active span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.overlay.active {
    display: block;
}

/* Hero Section */
.hero {
    padding: 30px 0 30px;
    background: linear-gradient(135deg, rgba(249, 250, 255, 1) 0%, rgba(233, 236, 255, 1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    align-items: flex-start;
}

.hero-heading {
    flex: 0.6;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.hero-text {
    flex: 0.4;
    max-width: 40%;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.hero-actions .btn {
    min-width: 160px;
    height: 60px;
    text-align: center;
    padding: 14px 24px;
    font-weight: 500;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-actions .btn small {
    font-size: 8px;
    font-weight: 400;
    opacity: 0.8;
    display: block;
    margin-top: 2px;
}

.hero-stats {
    display: flex;
    margin-bottom: 20px;
    width: 90%;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    width: 90%;
    gap: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
    line-height: 1;
}

.stat-label {
    color: var(--gray);
    font-size: 14px;
}

.hero-image {
    flex: 0.6;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 60%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: translateY(-5px);
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 18px;
}

/* Стилі для блоку Features з табами */
.spy-tabs-wrapper {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-height: 400px; /* Фіксована висота для уникнення підскакування */
    margin-top: 50px;
}

/* Стилі для навігації табів */
.spy-tabs-nav {
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
    padding: 0;
    width: 100%;
}

.spy-tab-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.spy-tab-link:hover {
    background-color: rgba(130, 87, 230, 0.1);
}

/* Стандартний стиль для активного табу */
.spy-tab-link.active {
    background-color: #8257e6;
    color: #fff;
    border-left: 3px solid #6b46c1;
}

.spy-tab-icon {
    margin-right: 10px;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.spy-tab-link svg {
    fill: #8257e6; /* Фіолетові іконки в списку зліва */
    width: 24px;
    height: 24px;
}

.spy-tab-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.spy-tab-link.active svg {
    fill: #fff;
}

/* Стилі для контенту табів */
.spy-tabs-content {
    background-color: #fff;
    padding: 40px;
}

.spy-tab-content {
    display: none;
}

.spy-tab-content.active {
    display: block;
}



.spy-feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.spy-feature-icon {
    width: 32px; /* Збільшено до 32px */
    height: 32px; /* Збільшено до 32px */
    margin-right: 15px;
    flex-shrink: 0;
}

.spy-feature-icon svg {
    width: 100%;
    height: 100%;
    fill: #8257e6;
}

.spy-feature-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.spy-feature-title {
    font-size: 24px;
    color: #8257e6;
    margin: 0;
    font-weight: 600;
}

.spy-feature-description p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

.spy-feature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.spy-feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #333;
}

.spy-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #8257e6;
    border-radius: 50%;
}

/* Адаптивні стилі для табів */
@media (min-width: 768px) {
    .spy-tabs-wrapper {
        flex-direction: row;
    }
    
    .spy-tabs-nav {
        width: 30%;
        max-width: 300px;
    }
    
    .spy-tabs-content {
        width: 70%;
    }
}

/* How It Works */
.how-it-works {
    padding: 60px 0;
    background-color: var(--gray-light);
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    height: 2px;
    background-color: var(--primary);
    width: 75%;
    top: 30px;
    left: 12.5%;
    z-index: 1;
    opacity: 0.5;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    font-weight: bold;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.step-description {
    color: var(--gray);
    padding: 0 15px;
}

/* Trial Period Section */
.trial-period {
    padding: 80px 0;
    background-color: #f8f9ff;
}

.trial-box {
    background: linear-gradient(135deg, #f1f0ff 0%, #f5fdfa 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(132, 90, 222, 0.1);
    margin-top: 60px;
}

.trial-content {
    display: flex;
    align-items: center;
    padding: 0;
}

.trial-text {
    flex: 1;
    padding: 40px;
}

.trial-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.trial-text p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 24px;
}

.trial-features {
    list-style: none;
    margin-bottom: 30px;
}

.trial-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 500;
}

.trial-features li i {
    color: var(--secondary);
    margin-right: 10px;
    font-weight: bold;
}

.trial-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(132, 90, 222, 0.1) 0%, rgba(40, 191, 148, 0.1) 100%);
    min-height: 350px;
}

.trial-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About Us Section */
.about-us {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 246, 255, 1) 100%);
}

/* Стилі для WYSIWYG контенту */
.about-description p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
}

.about-description ul {
    margin-bottom: 20px;
}

.about-description h3, 
.about-description h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.about-description h3 {
    font-size: 20px;
}

.about-description h4 {
    font-size: 18px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-actions .btn {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    min-width: auto;
}

.header-actions .btn-primary {
    background-color: var(--primary);
    color: white;
}

.header-actions .btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.header-actions .btn-outline:hover {
    background-color: #734ac9;
    color: white;
    border-color: #734ac9;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 400px;
}

.image-item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.counter {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.counter-label {
    font-size: 14px;
    opacity: 0.9;
}

.about-text {
    flex: 1;
}

.about-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.feature-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .about-content {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .about-image, .about-text {
        width: 100%;
    }
    
    .image-grid {
        height: 350px;
    }
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: #fff;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.toggle-option {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
}

.toggle-switch {
    width: 60px;
    height: 30px;
    background-color: var(--primary);
    border-radius: 30px;
    margin: 0 15px;
    position: relative;
    cursor: pointer;
}

.toggle-switch::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: white;
    top: 3px;
    left: 3px;
    transition: all 0.3s ease;
}

.toggle-switch.yearly::before {
    left: 33px;
}

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

/* Horizontal scroll for pricing and testimonials on mobile */
@media (max-width: 991px) {
    .pricing-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
        margin-bottom: 20px;
        gap: 20px;
        width: 100%;
    }
    
    .pricing-card {
        scroll-snap-align: start;
        min-width: 280px;
        width: 85%;
        flex-shrink: 0;
        margin-right: 15px;
    }
    
    .pricing-card:last-child {
        margin-right: 0;
    }
    
    /* ===== TESTIMONIALS MOBILE STYLES ===== */


}

.pricing-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, #9b7ae2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.featured-label {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--secondary);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: 600;
}

footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 40px;
}

/* Contact Icons Styles */
.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    margin-right: 12px;
    color: var(--primary);
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    filter: invert(37%) sepia(74%) saturate(1304%) hue-rotate(234deg) brightness(87%) contrast(85%);
    width: 20px;
    height: 20px;
}

.contact-link {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--primary);
}

.pricing-header {
    margin-bottom: 15px;
}

.pricing-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-card.featured .pricing-price {
    color: white;
}

.pricing-period {
    color: var(--gray);
    font-size: 14px;
}

.pricing-card.featured .pricing-period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    margin: 20px 0;
    list-style: none;
    flex-grow: 1;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
}

.pricing-card.featured .pricing-features li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li.unavailable {
    color: var(--gray);
    text-decoration: line-through;
    opacity: 0.7;
}

.pricing-card.featured .btn-primary {
    background-color: white;
    color: var(--primary);
}

/* ===== TESTIMONIALS WITH SCROLL DOTS ===== */
.testimonials {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #f0f0f0;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 3px;
}

.author-company {
    font-size: 0.875rem;
    color: #888;
    margin: 0;
}

/* Mobile testimonials with horizontal scroll and dots */
@media (max-width: 991px) {
    .testimonial-grid {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        gap: 20px;
        margin: 40px 0 20px 0;
        padding-bottom: 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .testimonial-grid::-webkit-scrollbar {
        display: none;
    }
    
    .testimonial-card {
        flex: 0 0 300px;
        min-width: 300px;
        scroll-snap-align: start;
    }
}

/* Universal Scroll Dots System */
.scroll-dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(132, 90, 222, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-dot:hover {
    background: rgba(132, 90, 222, 0.6);
    transform: scale(1.2);
}

.scroll-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* Hide on desktop, show only on mobile */
@media (min-width: 992px) {
    .scroll-dots-container {
        display: none;
    }
    
    /* Also hide pricing specific dots on desktop */
    #subscription-dots,
    #credit-dots {
        display: none !important;
    }
    
    /* Pricing cards desktop layout */
    .price-cards-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
        max-width: 1200px;
        margin: 40px auto 0;
        padding: 0;
        overflow: visible;
    }
    
    .price-card {
        flex: 1 1 300px;
        max-width: 350px;
        min-width: 280px;
        margin-top: 16px;
    }
    
    /* Credit packages desktop layout */
    .price-credits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0;
        overflow: visible;
    }
    
    .price-credit-card {
        flex: none;
        min-width: auto;
        margin-top: 16px;
    }
}

.scroll-hint .icon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}



@media (max-width: 991px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-top {
        flex-direction: column;
    }
    
    .hero-heading, .hero-side {
        flex: 1;
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        margin-bottom: 20px;
    }
    
    .stats-row {
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 120px;
    }
}

/* Scroll indicator for horizontal scroll */
.scroll-indicator {
    display: none;
    text-align: center;
    margin-top: 15px;
    color: var(--gray);
    font-size: 14px;
}

.scroll-indicator i {
    margin-left: 5px;
    animation: scrollHint 1.5s infinite;
}

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

@media (max-width: 991px) {
    .scroll-indicator {
        display: block;
    }
}

/* Testimonials styles moved above */

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: #fff;
}

.accordion {
    margin-top: 50px;
}

.accordion-item {
    border-bottom: 1px solid #e9ecef;
}

.accordion-header {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-title {
    font-size: 18px;
    font-weight: 600;
}

.accordion-icon {
    color: var(--primary);
    font-size: 24px;
}

.accordion-content {
    padding-bottom: 20px;
    color: var(--gray);
    display: none;
}

.accordion-item.active .accordion-content {
    display: block;
}

/* Integrations Section */
.integrations {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(249, 250, 255, 1) 0%, rgba(233, 236, 255, 1) 100%);
}

.integration-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 10px;
}

.category-description {
    font-size: 16px;
    color: var(--gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

.integration-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.logo-item {
    width: 150px;
    height: 80px;
    background-color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.integration-logo {
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.integration-logo-placeholder {
    max-width: 80%;
    max-height: 60%;
    opacity: 0.7;
}

.integration-logo-placeholder::after {
    content: attr(data-name);
    display: block;
    text-align: center;
    font-size: 14px;
    color: var(--dark);
    margin-top: 10px;
}

/* Search Engines Grid */
.search-engines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.search-engine-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.search-engine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.search-engine-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.search-engine-description {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.search-engine-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
}

.feature-tag {
    background-color: rgba(132, 90, 222, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Search Engine Benefits */
.search-engine-benefits {
    margin: 60px 0;
}

.benefits-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

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

.benefit-item {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(132, 90, 222, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.benefit-description {
    color: var(--gray);
    line-height: 1.6;
}

/* Dashboard styles */
.dashboard-preview {
    margin-top: 70px;
    text-align: center;
}

.dashboard-description {
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--gray);
    font-size: 18px;
    line-height: 1.6;
}

.image-caption {
    margin-top: 15px;
    color: var(--gray);
    font-size: 16px;
    font-style: italic;
}

.preview-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--dark);
}

.dashboard-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tab {
    padding: 10px 20px;
    background-color: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tab.active {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(132, 90, 222, 0.2);
}

.dashboard-images {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dashboard-image {
    display: none;
    width: 100%;
}

.dashboard-image.active {
    display: block;
}

.screenshot-placeholder {
    width: 100%;
    height: 500px;
    background-color: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gray);
}

.dashboard-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.screenshot-placeholder::after {
    content: attr(data-name);
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
}

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

.table-container {
    margin: 40px 0;
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.comp-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #fff;
    overflow: hidden;
}

.comp-table th,
.comp-table td {
    padding: 24px 28px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comp-table th {
    background: linear-gradient(135deg, #4776E6, #8E54E9);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comp-table th:first-child {
    border-top-left-radius: 16px;
}

.comp-table th:last-child {
    border-top-right-radius: 16px;
}

.comp-table tr:last-child td {
    border-bottom: none;
}

.feature-name {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    color: #333;
    font-size: 18px;
}

/* Стилі для іконок функцій */
.feature-icon {
    width: 32px;
    height: 32px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
    display: block;
}

.icon-devices {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='%234776E6'%3E%3Cpath d='M4 6h16v10H4V6zm16 12H4a2 2 0 01-2-2V6c0-1.1.9-2 2-2h16a2 2 0 012 2v10a2 2 0 01-2 2zm-6 2H10v-2h4v2z'/%3E%3C/svg%3E");
}

.icon-search-engines {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='%234776E6'%3E%3Cpath d='M15.5 14h-.79l-.28-.27a6.5 6.5 0 001.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 00-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 005.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
}

.icon-updates {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='%234776E6'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");
}

.icon-history {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='%234776E6'%3E%3Cpath d='M13 3a9 9 0 00-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42A8.954 8.954 0 0013 21a9 9 0 000-18zm-1 5v5l4.28 2.54.72-1.21-3.5-2.08V8H12z'/%3E%3C/svg%3E");
}

.icon-location {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='%234776E6'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 010-5 2.5 2.5 0 010 5z'/%3E%3C/svg%3E");
}

/* Стилі для статусних іконок */

/* Стилі для статусних плашок видалено */

.feature-description {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.comparison-cta {
    margin-top: 40px;
    text-align: center;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #4776E6, #8E54E9);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(71, 118, 230, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(71, 118, 230, 0.4);
}

/* Responsive styles */
@media (max-width: 768px) {
    .comp-table th,
    .comp-table td {
        padding: 15px 18px;
    }
    
    .comp-table th {
        font-size: 16px;
    }
    
    .feature-name {
        gap: 12px;
        font-size: 16px;
    }
    
    /* Стилі для мобільних іконок */
    .feature-icon {
        width: 28px;
        height: 28px;
        background-size: 28px 28px;
    }
    
    .feature-description {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .table-container {
        border-radius: 12px;
    }
    
    .comp-table {
        display: block;
    }
    
    .comp-table thead {
        display: none;
    }
    
    .comp-table tbody,
    .comp-table tr {
        display: block;
        width: 100%;
    }
    
    .comp-table tr {
        margin-bottom: 24px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    
    .comp-table tr:last-child {
        margin-bottom: 0;
    }
    
    .comp-table td {
        display: block;
        text-align: left;
        padding: 15px;
        position: relative;
    }
    
    .comp-table td:first-child {
        background: linear-gradient(135deg, #eef3ff, #8E54E9);
    }
    
    .comp-table td:first-child .feature-name {
        color: #fff;
    }
    
    /* Мобільні іконки видалено, використовуються тільки десктопні з медіа-запитом */
    
    .comp-table td .feature-icon {
        width: 56px;
        height: 56px;
        object-fit: contain;
        flex-shrink: 0;
    }
    

    
    @media (max-width: 768px) {
        .comp-table td .feature-icon {
            width: 48px;
            height: 48px;
        }
        
        .status-icon {
            width: 18px;
            height: 18px;
            min-width: 18px;
            min-height: 18px;
        }
    }
    
    .comp-table td:nth-child(2)::before,
    .comp-table td:nth-child(3)::before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        margin-bottom: 8px;
        color: #333;
    }
    
    .cta-button {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .integration-logos {
        gap: 20px;
    }
    
    .logo-item {
        width: 120px;
        height: 70px;
    }
    
    .dashboard-images {
        max-width: 100%;
    }
    
    .screenshot-placeholder {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .integration-logos {
        gap: 15px;
    }
    
    .logo-item {
        width: 100px;
        height: 60px;
    }
    
    .dashboard-tabs {
        flex-wrap: wrap;
    }
    
    .screenshot-placeholder {
        height: 300px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(132, 90, 222, 0.3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #9b7ae2 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-description {
    margin-bottom: 32px;
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta .btn-secondary {
    background-color: white;
    color: var(--primary);
}

.cta .btn-secondary:hover {
    background-color: var(--light);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background-color: #2d2d2d;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-col {
    margin-bottom: 20px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

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

.footer-description {
    margin-bottom: 20px;
    margin-top: 20px;
    opacity: 0.7;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.icon-facebook:hover {
    background-color: #3b5998;
}

.icon-twitter:hover {
    background-color: #1da1f2;
}

.icon-linkedin:hover {
    background-color: #0077b5;
}

.icon-telegram:hover {
    background-color: #0088cc;
}

.tg-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tg-link:hover {
    color: white;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    bottom: 0;
    left: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

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

.footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* Media Queries */
/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background-color: white;
    z-index: 1001;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-nav-header {
    position: absolute;
    top: 15px;
    left: 20px;
    z-index: 10;
}

.mobile-nav-header .lang-dropdown {
    margin: 0;
    position: relative;
}

.mobile-nav-header .lang-selected {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--primary);
    background: white;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.mobile-nav-header .lang-selected:hover {
    background: rgba(132, 90, 222, 0.05);
}

.mobile-nav-header .lang-selected .icon {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}

.mobile-nav-header .lang-dropdown.open .lang-selected .icon {
    transform: rotate(180deg);
}

.mobile-nav-header .lang-options {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    border-radius: 10px;
    z-index: 1003;
    min-width: 60px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.mobile-nav-header .lang-options a {
    display: block;
    padding: 8px 16px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
}

.mobile-nav-header .lang-options a:hover {
    background: #f8f9fa;
    color: var(--primary);
}

.mobile-nav-header .lang-dropdown.open .lang-options {
    display: block;
    animation: fadeIn 0.2s ease;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    margin-bottom: 30px;
}

.mobile-nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
    display: block;
    padding: 8px 0;
}

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

.mobile-nav .header-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.mobile-nav .lang-container {
    margin-top: auto;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(132, 90, 222, 0.1);
}

.mobile-nav .lang-label {
    font-weight: 500;
    color: var(--dark);
    font-size: 14px;
    opacity: 0.8;
}

.mobile-nav .lang-dropdown {
    display: inline-block;
}

.mobile-nav .lang-selected {
    padding: 4px 10px;
    font-size: 13px;
}

.mobile-nav .btn {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    font-size: 16px;
    margin-bottom: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.mobile-nav .btn.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 6px rgba(132, 90, 222, 0.25);
}

.mobile-nav .btn.btn-outline {
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-nav-container {
        display: none;
    }
    
    .benefits-grid {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .benefits-grid::-webkit-scrollbar {
        display: none;
    }
    
    .benefit-item {
        flex: 0 0 280px;
        min-width: 280px;
        scroll-snap-align: start;
    }
    
    .search-engines-grid {
        display: flex;
        gap: 20px;
        padding: 15px 0 30px 0;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .search-engines-grid::-webkit-scrollbar {
        display: none;
    }
    
    .search-engine-card {
        flex: 0 0 300px;
        min-width: 300px;
        padding: 25px;
        scroll-snap-align: start;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background-color: white;
        z-index: 1001;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
        overflow-y: auto;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    nav .header-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .stats-row {
        justify-content: center;
    }
    
    .stat-item {
        align-items: center;
        text-align: center;
    }
    
    /* Стилі для feature-grid видалені */
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .trial-content {
        flex-direction: column;
    }
    
    .trial-text {
        padding: 30px;
    }
    
    .trial-image {
        display: none;
    }
}

/* Comparison Section */
.comparison-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(132, 90, 222, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(132, 90, 222, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--primary), #9c6bdc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 520px;
    margin: 0 auto;
    opacity: 0.9;
}

.table-container {
    background: var(--bg-table, #ffffff);
    border-radius: 16px;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(132, 90, 222, 0.1);
    overflow: hidden;
    margin: 40px auto;
    max-width: 1200px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Advanced SERP Tracking Technology Section */
.technical-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.technical-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(132, 90, 222, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(66, 133, 244, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(52, 168, 83, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.section-intro {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.feature-card {
    background: var(--bg-card, #ffffff);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(132, 90, 222, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #9c6bdc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(132, 90, 222, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.technical-section .feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.technical-section .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--primary), #9c6bdc);
}

.technical-section .feature-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.technical-section .feature-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.technical-section .feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.technical-section .feature-content {
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-top: 16px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.feature-list li::before {
    content: '✓';
    color: var(--accent-green, #34a853);
    font-weight: bold;
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.highlight-stat {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(132, 90, 222, 0.1), rgba(132, 90, 222, 0.05));
    color: var(--primary);
    padding: 2px 4px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    margin: 8px 4px;
    border: 1px solid rgba(132, 90, 222, 0.2);
}

/* Professional Icons */
.icon-accuracy::before {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.icon-frequency::before {
    content: '⟳';
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.icon-security::before {
    content: '🛡';
    color: white;
    font-size: 20px;
}

.icon-performance::before {
    content: '⚡';
    color: white;
    font-size: 20px;
}

/* Мобільні стилі для технічного розділу */
@media (max-width: 767px) {
    .technical-section {
        padding: 40px 0;
    }

    .section-intro {
        font-size: 15px;
    }

    .features-grid {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 20px;
        margin-top: 36px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }

    .features-grid::-webkit-scrollbar {
        display: none;
    }

    .feature-card {
        min-width: 280px;
        max-width: 300px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 24px;
        margin-bottom: 0;
    }

    .technical-section .feature-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .technical-section .feature-title {
        font-size: 16px;
    }

    .technical-section .feature-header {
        gap: 14px;
    }
}

/* Видалено дублікат стилів для .comp-table */

.comp-table thead th {
    background: linear-gradient(135deg, var(--primary), #9c6bdc);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 20px;
    text-align: left;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.comp-table thead th:first-child {
    width: 30%;
}

.comp-table thead th:nth-child(2) {
    width: 35%;
    background: linear-gradient(135deg, #6c757d, #8e9196);
}

.comp-table tbody tr {
    border-bottom: 1px solid rgba(238, 238, 238, 0.6);
    transition: all 0.3s ease;
}

.comp-table tbody tr:hover {
    background: rgba(132, 90, 222, 0.02);
    transform: translateY(-1px);
}

.comp-table tbody tr:last-child {
    border-bottom: none;
}

.comp-table tbody td {
    padding: 18px 20px;
    vertical-align: top;
}

.comp-table tbody td:first-child {
    font-weight: 600;
    font-size: 15px;
}

.comp-table tbody td:nth-child(2) {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8), rgba(248, 249, 250, 0.4));
}

.comp-table tbody td:last-child {
    background: linear-gradient(135deg, rgba(132, 90, 222, 0.04), rgba(132, 90, 222, 0.02));
}

.feature-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Видалено дублікат стилів для .feature-icon */

/* Стилі для іконок видалено */

/* Стилі для статусних іконок замість плашок */

.feature-description {
    font-size: 14px;
    color: var(--text-secondary, #666);
    line-height: 1.5;
}

.comparison-cta {
    text-align: center;
    margin-top: 36px;
}

.cta-text {
    font-size: 16px;
    color: var(--text-secondary, #666);
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), #9c6bdc);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(132, 90, 222, 0.3);
}

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

.cta-button:hover {
    background: linear-gradient(135deg, #9c6bdc, #b886e0);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(132, 90, 222, 0.4);
}

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

.cta-button:active {
    transform: translateY(-1px);
}

/* SVG Icons as Data URLs */
.icon-devices { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='12' rx='2'/%3E%3Cpath d='M2 16h20'/%3E%3Cpath d='m9 20 3-3 3 3'/%3E%3C/svg%3E"); }
.icon-search-engines { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E"); }
.icon-updates { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8'/%3E%3Cpath d='M3 3v5h5'/%3E%3Cpath d='M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16'/%3E%3Cpath d='M21 21v-5h-5'/%3E%3C/svg%3E"); }
.icon-history { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12,6 12,12 16,14'/%3E%3C/svg%3E"); }
.icon-location { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }

/* Mobile Styles */
@media (max-width: 767px) {
    .comparison-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }


}


/* Final CTA Section */
.final-cta-section {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.final-cta-button {
    margin-top: 30px;
}

.final-cta-button .btn {
    background-color: white;
    color: var(--primary);
    font-size: 16px;
    padding: 14px 28px;
    min-width: 200px;
    font-weight: 600;
}

.final-cta-button .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
    .header-content {
        justify-content: space-between;
    }
    
    .search-engines-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .image-caption {
        font-size: 14px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .header-actions {
        margin-top: 10px;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    /* Перевизначення розміру шрифту для мобільних */
    .hero p {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    /* Стилі для feature-grid видалені */
    
    .steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .steps::before {
        display: none;
    }
    
    /* Show scroll dots on mobile */
    .scroll-dots-container {
        display: flex;
    }
    
    /* Testimonials mobile styles */
    .testimonial-card {
        flex: 0 0 260px;
        padding: 25px 20px;
        min-height: 260px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .author-avatar {
        width: 44px;
        height: 44px;
    }
    
    .author-info h4 {
        font-size: 0.9rem;
    }
    
    .author-company {
        font-size: 0.8rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 100px;
    }
    
    .hero-actions {
        gap: 15px;
        align-items: center;
    }
    
    .testimonial-card {
        flex: 0 0 240px;
        padding: 25px 20px;
        min-height: 240px;
    }
    
    .search-engine-card {
        flex: 0 0 280px;
        min-width: 280px;
        padding: 20px;
    }
    
    .benefit-item {
        flex: 0 0 260px;
        min-width: 260px;
        padding: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .final-cta-content h2 {
        font-size: 28px;
    }
    
    .final-cta-content p {
        font-size: 16px;
    }
}

/* Стилі для іконок у порівняльній таблиці */
.status-icon {
    width: 16px;
    height: 16px;
    min-width: 16px; /* Запобігаємо зменшенню */
    min-height: 16px;
    flex-shrink: 0; /* Не дозволяємо стискатися */
    vertical-align: -0.2em;
    margin-right: 8px;
    display: inline-block;
    background: transparent;
}

.status-icon.status-limited {
    color: #e74c3c; /* Червоний колір для хрестика */
}

.status-icon.status-complete {
    color: #2ecc71; /* Зелений колір для галочки */
}

/* Забезпечуємо правильне вирівнювання тексту з іконкою */
.feature-description {
    display: flex;
    align-items: center;
}

/* Забезпечуємо відсутність фону у SVG */
.feature-description svg {
    background: transparent;
}

/* Styles for pricing page */
    
    /* Однакові відступи для карток на мобільних пристроях */
    @media (max-width: 767px) {
        .price-card, .price-credit-card {
            margin-left: 20px;
            margin-right: 20px;
        }
    }
    
    /* Стилі для кнопок */
    .price-card-button, .price-credit-button {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .price-card-button svg, .price-credit-button svg {
        width: 14px;
        height: 14px;
    }
    
    .price-btn-purple svg path, .price-btn-purple svg g {
        fill: #ffffff;
    }
    
    .price-btn-default svg path, .price-btn-default svg g {
        fill: #333333;
    }
    
    /* Стилі для відображення кредитів в одному рядку */
    .price-credit-amount-wrapper {
        display: flex;
        align-items: baseline;
        margin: 15px 0;
    }
    
    .price-credit-amount {
        font-size: 32px;
        font-weight: 700;
        margin-right: 5px;
    }
    
    .price-credit-label {
        font-size: 18px;
        color: #666;
    }
    
    /* Reset and base styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

        .price-container {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #f9fafb;
            padding: 40px;
            min-height: 100vh;
        }

        .price-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            margin-bottom: 40px;
            margin-top: 40px;
        }

        /* Hero Section */
        .price-hero {
            margin-bottom: 48px;
        }

        .price-hero-content {
            text-align: center;
            margin-inline: 20px;
            margin-bottom: 24px;
        }

        .price-hero-title {
            font-size: 32px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 12px;
        }

        .price-hero-subtitle {
            color: #6b7280;
            max-width: 512px;
            margin: 0 auto;
            line-height: 1.5;
        }

        /* Main tabs */
        .price-tabs-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding: 0 16px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .price-tabs-wrapper {
            position: relative;
            background-color: rgba(132, 90, 223, 0.1);
            border-radius: 12px;
            padding: 6px;
            display: inline-flex;
            box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.06);
            max-width: 100%;
            overflow: hidden;
        }

        @media (max-width: 640px) {
            .price-tabs-wrapper {
                flex-direction: column;
                width: 100%;
                max-width: 400px;
            }
        }

        .price-tab-slider {
            position: absolute;
            top: 6px;
            bottom: 6px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            left: 6px;
            right: 50%;
        }

        .price-tab-slider.price-inactive {
            left: 50%;
            right: 6px;
        }

        @media (max-width: 640px) {
            .price-tab-slider {
                left: 6px;
                right: 6px;
                top: 6px;
                bottom: 50%;
            }
            
            .price-tab-slider.price-inactive {
                left: 6px;
                right: 6px;
                top: 50%;
                bottom: 6px;
            }
        }

        .price-tab {
            position: relative;
            z-index: 10;
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 6px;
            color: #6b7280;
            cursor: pointer;
            border: none;
            background: none;
            white-space: nowrap;
            min-width: 0;
        }

        @media (max-width: 640px) {
            .price-tab {
                width: 100%;
                justify-content: center;
                white-space: normal;
                text-align: center;
            }
        }

        .price-tab.price-active {
            color: #111827;
        }

        .price-tab:hover {
            color: #111827;
        }

        .price-tab-icon {
            font-size: 16px;
            flex-shrink: 0;
        }

        /* Badges */
        .price-badge,
        .price-badge-blue,
        .price-badge-purple,
        .price-badge-green {
            padding: 2px 6px;
            border-radius: 9999px;
            font-size: 11px;
            font-weight: 500;
            margin-left: 4px;
            flex-shrink: 0;
        }

        .price-badge-blue {
            background-color: #dbeafe;
            color: #2563eb;
        }

        .price-badge-purple {
            background-color: #e9d5ff;
            color: #7c3aed;
        }

        .price-badge-green {
            background-color: #dcfce7;
            color: #16a34a;
            padding: 2px 4px;
            font-size: 11px;
            margin-left: 2px;
        }

        @media (max-width: 480px) {
            .price-tab {
                padding: 10px 12px;
                font-size: 13px;
                gap: 4px;
            }
            
            .price-tab-icon {
                font-size: 14px;
            }
            
            .price-badge,
            .price-badge-blue,
            .price-badge-purple,
            .price-badge-green {
                padding: 1px 4px;
                font-size: 10px;
            }
        }

        /* Subscriptions section */
        .price-subscriptions {
            margin-top: 48px;
        }

        .price-subscriptions.price-hidden {
            display: none;
        }

        .price-subscriptions-header {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 32px;
            align-items: center;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 32px;
        }

        @media (min-width: 1024px) {
            .price-subscriptions-header {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
        }

        .price-subscriptions-info {
            flex: 1;
            text-align: center;
        }

        @media (min-width: 1024px) {
            .price-subscriptions-info {
                text-align: left;
            }
        }

        .price-subscriptions-title {
            font-size: 20px;
            font-weight: 700;
            color: #111827;
        }

        .price-subscriptions-subtitle {
            font-size: 14px;
            color: #6b7280;
            margin-top: 4px;
        }

        /* Billing toggle - перемикач місяця/року */
        .price-billing-toggle {
            display: flex;
            justify-content: center;
            padding: 0 16px;
        }

        .price-billing-wrapper {
            position: relative;
            background-color: rgba(132, 90, 223, 0.1);
            border-radius: 12px;
            padding: 6px;
            display: flex;
            box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.06);
            width: 300px;
            max-width: 100%;
        }

        .price-billing-slider {
            position: absolute;
            top: 6px;
            bottom: 6px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            width: 50%;
            left: 6px;
        }

        .price-billing-slider.price-yearly {
            left: 50%;
            right: 6px;
            width: auto;
        }

        .price-billing-btn {
            position: relative;
            z-index: 10;
            padding: 8px 12px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s;
            color: #6b7280;
            cursor: pointer;
            border: none;
            background: none;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50%;
            white-space: nowrap;
        }

        .price-billing-btn.price-active {
            color: #111827;
        }

        .price-billing-btn:hover {
            color: #111827;
        }

        @media (max-width: 480px) {
            .price-billing-btn {
                padding: 6px 10px;
                font-size: 13px;
            }
        }

        /* Cards grid */
        .price-cards-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            max-width: 1000px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .price-cards-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .price-cards-container {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            gap: 20px;
            margin: 40px auto 0;
        }
        
        .price-cards-container::-webkit-scrollbar {
            display: none;
        }
        
        .price-card {
            background: white;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.05);
            border: 1px solid #e5e7eb;
            position: relative;
            margin-top: 16px;
        }
        
        /* Mobile horizontal scroll for price cards */
        .price-cards-container .price-card {
            flex: 0 0 320px;
            min-width: 320px;
            scroll-snap-align: start;
        }

        .price-card.price-featured {
            border: 2px solid #a855f7;
        }

        .price-card-badge {
            position: absolute;
            top: 0;
            left: 35%;
            transform: translateX(-50%) translateY(-50%);
            background-color: #845ade;
            color: white;
            padding: 6px 16px;
            border-radius: 9999px;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
            z-index: 10;
        }

        /* Price card header with icon and title in one row */
        .price-card-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }
        
        .price-card-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
            font-size: 20px;
        }
        
        .price-card-icon img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .price-card-title {
            font-size: 24px;
            font-weight: 700;
            color: #111827;
            margin: 0;
            line-height: 1.2;
        }

        .price-card-description {
            color: #6b7280;
            margin-bottom: 24px;
        }

        .price-card-price {
            margin-bottom: 8px;
        }

        .price-currency {
            font-size: 32px;
            font-weight: 700;
            color: #111827;
        }

        .price-amount {
            font-size: 40px;
            font-weight: 700;
            color: #111827;
        }

        .price-period {
            font-size: 18px;
            color: #6b7280;
        }

        .price-yearly-info {
            color: #16a34a;
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 16px;
            width: 100%;
            text-align: center;
            padding: 0 5px;
            letter-spacing: -0.2px;
        }
        
        .price-save-badge {
            color: #16a34a;
            font-weight: 600;
            display: inline-block;
            white-space: nowrap;
            background-color: #dcfce7;
            border-radius: 4px;
            padding: 0 3px;
            margin-left: 1px;
            font-size: 11px;
        }

        .price-yearly-info.price-hidden {
            display: none;
        }

        .price-credits {
            color: #6b7280;
            margin-bottom: 24px;
        }

        .price-features {
            list-style: none;
            margin-bottom: 32px;
            padding-left: 5px;
        }

        .price-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .price-feature:last-child {
            margin-bottom: 0;
        }

        .price-feature-icon {
            color: #10b981;
            font-size: 18px;
        }

        .price-feature-text {
            color: #374151;
        }

        .price-card-button {
            width: 100%;
            padding: 12px 16px;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            font-size: 16px;
        }

        .price-btn-default {
            background-color: #f3f4f6;
            color: #1f2937;
        }

        .price-btn-default:hover {
            background-color: #e5e7eb;
        }

        .price-btn-purple {
            background-color: #7c3aed;
            color: white;
        }

        .price-btn-purple:hover {
            background-color: #6d28d9;
        }

        /* Credits section */

        .price-credits-section.price-hidden {
            display: none;
        }

        .price-credits-section {
            margin-top: 48px;
        }


        .price-credits-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .price-credits-title {
            font-size: 20px;
            font-weight: 700;
            color: #111827;
        }

        .price-credits-subtitle {
            font-size: 14px;
            color: #6b7280;
            margin-top: 4px;
        }

        .price-credits-grid {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            gap: 20px;
            margin: 0 auto;
            padding: 0 20px 20px 20px;
        }
        
        .price-credits-grid::-webkit-scrollbar {
            display: none;
        }

        .price-credit-card {
            flex: 0 0 280px;
            min-width: 280px;
            scroll-snap-align: start;
            background: white;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.05);
            border: 1px solid #e5e7eb;
            position: relative;
            margin-top: 16px;
        }

        .price-credit-card.price-featured {
            border: 2px solid #a855f7;
        }

        .price-credit-badge {
            position: absolute;
            top: 12px;
            right: -8px;
            padding: 6px 16px;
            font-size: 11px;
            font-weight: 600;
            white-space: nowrap;
            transform: rotate(35deg);
            transform-origin: center;
            z-index: 10;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .price-credit-badge-purple {
            background-color: #7c3aed;
            color: white;
        }

        .price-credit-badge-green {
            background-color: #dcfce7;
            color: #16a34a;
        }

        .price-credit-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: white;
            font-size: 20px;
        }

        .price-credit-icon-green {
            background-color: #10b981;
        }

        .price-credit-icon-blue {
            background-color: #3b82f6;
        }

        .price-credit-icon-purple {
            background-color: #a855f7;
        }

        .price-credit-icon-pink {
            background-color: #ec4899;
        }

        .price-credit-title {
            font-size: 20px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 8px;
        }

        .price-credit-description {
            color: #6b7280;
            font-size: 14px;
            margin-bottom: 24px;
        }

        .price-credit-amount {
            font-size: 24px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 4px;
        }

        .price-credit-label {
            color: #6b7280;
            font-size: 14px;
            margin-bottom: 16px;
        }

        .price-credit-price {
            font-size: 24px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 4px;
        }

        .price-credit-rate {
            color: #6b7280;
            font-size: 12px;
            margin-bottom: 24px;
        }

        .price-credit-button {
            width: 100%;
            padding: 12px 16px;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        /* Icons placeholder */
        .price-icon {
            display: inline-block;
            width: 1em;
            height: 1em;
            background-color: #d1d5db;
            border-radius: 2px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .price-container {
                padding: 20px;
            }
            
            .price-hero-title {
                font-size: 24px;
            }
            
            .price-card {
                padding: 24px;
            }
            
            .price-credit-card {
                padding: 20px;
            }
        }

/* Pricing Bottom Text Section */
.pricing-bottom-text {
    background: #f9fafb;
    padding: 60px 20px;
}

.pricing-bottom-text .container {
    max-width: 800px;
    margin: 0 auto;
}

.bottom-text-content {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    text-align: left;
}

.bottom-text-content h1,
.bottom-text-content h2,
.bottom-text-content h3,
.bottom-text-content h4,
.bottom-text-content h5,
.bottom-text-content h6 {
    margin-bottom: 16px;
    color: #1f2937;
}

.bottom-text-content p {
    margin-bottom: 16px;
}

.bottom-text-content ul,
.bottom-text-content ol {
    margin-bottom: 16px;
    padding-left: 20px;
}

.bottom-text-content li {
    margin-bottom: 8px;
}



.bottom-text-content a {
    color: #6366f1;
    text-decoration: none;
}

.bottom-text-content a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .pricing-bottom-text {
        padding: 40px 20px;
    }
    
    .bottom-text-content {
        font-size: 14px;
    }
}

/* Legal Page Template */
.legal-page {
    padding: 40px 20px;
    background: #ffffff;
    min-height: 60vh;
}

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

.legal-header {
    margin-bottom: 3rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    border-radius:12px;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.legal-date {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
    margin-bottom: 1rem;
}

.legal-excerpt {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.legal-text {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    text-align: left;
}

.legal-text h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.legal-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-text h4,
.legal-text h5,
.legal-text h6 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text p {
    margin-bottom: 1.5rem;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.legal-text a {
    color: #6366f1;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-text a:hover {
    color: #4f46e5;
    border-bottom-color: #4f46e5;
}

.legal-text strong {
    font-weight: 600;
    color: #1f2937;
}

.legal-text em {
    font-style: italic;
}

.legal-text blockquote {
    border-left: 4px solid #6366f1;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #6b7280;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.legal-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.legal-text th,
.legal-text td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.legal-text th {
    background: #f9fafb;
    font-weight: 600;
    color: #1f2937;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.legal-updated {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
    margin: 0;
}

.legal-updated time {
    font-weight: 500;
    color: #374151;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .legal-page {
        padding: 60px 20px;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-excerpt {
        font-size: 1rem;
    }
    
    .legal-text {
        font-size: 15px;
    }
    
    .legal-text h1 {
        font-size: 1.75rem;
    }
    
    .legal-text h2 {
        font-size: 1.375rem;
    }
    
    .legal-text h3 {
        font-size: 1.125rem;
    }
    
    .legal-text ul,
    .legal-text ol {
        padding-left: 1.5rem;
    }
    
    .legal-text blockquote {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .legal-text table {
        font-size: 14px;
    }
    
    .legal-text th,
    .legal-text td {
        padding: 8px 12px;
    }
}