/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-tertiary: 'Manrope', sans-serif;
    --blue: #2168EE;
    --text: rgba(78, 92, 119, 1);
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    margin: 0;
    padding: 0;
}

h2 {
    font-size: 1rem;
    padding: .55rem .75rem .55rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(210, 224, 255, 1);
    font-family: var(--font-primary);
    color: rgba(33, 104, 238, 1);
    position: relative;
    font-weight: 400;
}

h2::before {
    position: absolute;
    content: "·";
    font-size: 2rem;
    top:0;
    left: 0;
    width: 2.5rem;
    height: 100%;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 2.5rem;
}

h3 > span {
    color: var(--blue);
}

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

/* Шапка */
.header {
    background-color: #fff;
    border-bottom: 1px solid #B9C5D7;
    padding: 1.125rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.logo img {
    width: 21.6px;
    height: 21.6px;
}

.logo span {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14.46px;
    line-height: 160%;
    letter-spacing: 0%;
    text-transform: uppercase;
}



.nav > ul {
    display: flex;
    list-style: none;
    gap: 2.625rem;
    align-items: center;
}

.nav > ul > li {
    display: flex;
    align-items: center;
}

.nav > ul > li > a {
    text-decoration: none;
    font-size: .75rem;
    text-transform: uppercase;
    color: #3C3847ED;
}

.nav > ul > li:hover > a {
    cursor: pointer;
    color: var(--blue);
}

.header-buttons {
    display: flex;
    gap: 1.25rem;
}

/* -------------------- */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 2.5rem;
    left: 0;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    z-index: 9999;
    display: none;
    flex-direction: row;
    gap: 2rem;
    transform: translateX(-30%);
}

.dropdown-toggle {
    display: flex;
    align-items: center;
}

.dropdown-toggle:hover svg path {
    stroke: rgba(42, 98, 254, 1);
}

.dropdown-toggle.open {
    color: rgba(42, 98, 254, 1);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.dropdown-arrow.open {
    transform: rotate(180deg);
}

.dropdown-arrow.open path {
    stroke: rgba(42, 98, 254, 1);
}

/* .dropdown-menu-padding {
    padding: .75rem;
} */

.dropdown-menu .menu-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;  
    min-width: 368px;
}

.dropdown-menu .menu-options a {
    color: rgba(41, 37, 36, 1);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--font-primary);
}

.dropdown-menu .menu-options a:hover {
    color: rgba(42, 98, 254, 1);
}


/* .dropdown:hover .dropdown-menu,   */
.dropdown.open .dropdown-menu {
    display: flex;
}

.dropdown-vertical-line {
    width: 1px;
    height: 100%;
    background-color: rgba(217, 217, 217, 1);
}

.flame-icon {
    margin-right: .5rem;
}

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

.header-dropdown {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.header-dropdown-reverse .flame-icon {
    order: 2;    
}

.header-dropdown-reverse .header-title {
    order: 1;    
}

.header-title {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(41, 37, 36, 1);
    text-transform: uppercase;
}

.popular-section {
    min-width: 18.75rem;
}

.all-tools-section {
    min-width: 38.125rem;
}

.tool-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tool-item {
    margin-bottom: 1rem;
}

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

.tool-item a {
    font-family: var(--font-primary);
    font-size: 1rem;
    text-decoration: none;
    color: rgba(81, 86, 93, 1);
}

.tool-link:hover  {
    color: rgba(42, 98, 254, 1);
}

.tool-link.blue {
    color: rgba(42, 98, 254, 1);
}

.badge {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    color: white;
    margin-left: 10px;
}
.badge.new {
    background-color: rgba(34, 197, 94, 1);
}
.badge.update {
    background-color: rgba(250, 204, 21, 1);
}
.badge.popular {
    background-color: rgba(139, 92, 246, 1);
}

.all-tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .625rem;
}

/* ----------------------- */

.btn {
    padding: .75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-outline {
    border: 1px solid var(--blue);
    color: var(--blue);
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: rgba(42, 98, 254, 1);
    color: #fff;
}

.btn-primary {
    background-color: var(--blue);
    color: #fff;
    border: none;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background-color: rgba(23, 79, 186, 1);
}

/* Главный блок */
.hero {
    padding-top: 5.75rem;
    padding-bottom: 7.375rem;
    background: url('/assets/images/secion-main.png');
    background-position: bottom;
    background-repeat: no-repeat;
}

.hero .container {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-family: var(--font-secondary);
    font-size: 2.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: rgba(13, 22, 55, 1);
}

.hero-content .trial-info {
    margin-top: 1rem;
    font-size: 1rem;
}

.hero-content h1 > span {
    color: var(--blue);
}

.hero-content p > span {
    font-weight: 400;
    font-size: 1.3125rem;
    color: rgba(49, 69, 108, 1);
}

.hero-content p {
    font-size: 1.3125rem;
    font-weight: 300;
    color: rgba(49, 69, 108, 1);
    margin-bottom: 1.875rem;
}

.hero-content .btn-primary {
    font-family: var(--font-tertiary);
    font-size: .75rem;
    padding: 1.125rem 4.2375rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0px 4px 6px 0px rgba(31, 66, 143, 0.23);
    background: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content .btn-primary::before,
.hero-content .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.hero-content .btn-primary::before {
    background: linear-gradient(93.42deg, #4F97FC 9.85%, #2656C2 107.9%);
    opacity: 1;
    z-index: 1;
}

.hero-content .btn-primary::after {
    background: linear-gradient(93.42deg, #2656C2 9.85%, #4F97FC 107.9%);
    opacity: 0;
    z-index: 2;
}

.hero-content .btn-primary:hover::before {
    opacity: 0;
}

.hero-content .btn-primary:hover::after {
    opacity: 1;
}

.hero-content .btn-primary .btn-text {
    position: relative;
    z-index: 3; /* Текст выше псевдоэлементов */
    color: #fff;
}

.trial-info {
    margin-left: 2.5rem;
    font-weight: 300;
    font-size: .75rem;
    color: rgba(78, 92, 119, 1);
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
}

/* Нижний блок */

.trust {
    padding-bottom: 9.375rem;
}

.burger-menu {
    display: none;
}

.trust-logos {
    overflow: hidden;
    padding: 1rem;
    background-color: #f6f6f9;
}

.trust-track {
    display: flex;
    gap: 2.9375rem;
    animation: scroll-logos 18s linear infinite alternate;
    will-change: transform;
    align-items: center;
}

.trust-track img {
    height: 1.2rem;
    width: auto;
}

.trust-track .mgm {
    height: 1.4rem;
}

.trust-track .mgm {
    height: 1.8rem;
}

.trust-track .spb {
    height: 2.4rem;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-300%); 
    }
}

/* Преимущества */
.advantages {
    padding-bottom: 5.9375rem;
}

.advantages-header {
    display: flex;
    align-items: flex-start;
    gap: 1.4375rem;
    padding-bottom: 4.0625rem;
}

.advantages-header p {
    font-size: .875rem;
    color: rgba(81, 86, 93, 1);
    max-width: 24.1875rem;
}

.advantages-header h2 {
    min-width: 6rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 4fr 5fr 5fr 5fr;
    gap: 1.25rem;
}

.advantage-card {
    background-color: #eef2fb;
    border-radius: 16px;
    border: 1px solid rgba(224, 224, 224, 1);
    align-items: center;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 18.875rem;
    display: grid;
    align-content: center;
}

.advantage-card:not(:first-child) {
    aspect-ratio: 302 / 190; 
}

.advantage-icon img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    z-index: 1;
}

.advantage-card h3 {
    font-size: 2.675rem;
    color: #007bff;
    font-family: var(--font-secondary);
    z-index: 2;
}

.advantage-card p {
    font-size: .75rem;
    font-family: var(--font-primary);
    color: var(--text);
    z-index: 2;
}


/* Модуль для комплексного SEO-анализа */

.seo-module {
    background-image: url('/assets/images/background-module-2.webp');
    background-position: center;
    background-repeat: no-repeat;
    padding: 5.625rem 0;
    background-color: #fff;
}

.seo-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 3.125rem;
}

.tabs {
    display: flex;
    margin-bottom: 1.7rem;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.tab {
    font-family: var(--font-primary);
    padding: .55rem;
    border: 1px solid transparent;
    border-radius: 8px;
    background-color: #fff;
    color: rgba(13, 22, 55, 1);
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.tab.active {
    background-color: rgba(33, 104, 238, 1);
    color: #fff;
}

.tab.inactive {
    background-color: rgba(241, 241, 241, 1);
    color: rgba(216, 216, 216, 1);
    /* cursor: not-allowed; */
    /* pointer-events: none; */
}

.seo-module-content {
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
}

.tab-content {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-content.active {
    display: grid;
    grid-template-columns: 66% 33%;
    gap: 1.5rem;
    opacity: 1;
}

.tab-content {
    background-color: #fff;
    border: 3px solid rgba(79, 151, 252, 1);
    padding: 3.75rem 4.375rem 3.75rem 0;
    border-radius: 20px;
}

.seo-module-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.seo-module-image .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.seo-features-line {
    display: grid;
    grid-template-columns: 24px auto;
    gap: 1.25rem;
}

.seo-features-line p {
    font-size: 1rem;
    color: rgba(81, 86, 93, 1);
    font-family: var(--font-primary);
    padding-right: 1rem;
}

.seo-module-features {
    display: grid;
    align-content: space-between;
}

.seo-module-features .btn-outline {
    margin-top: 1.5rem;
    width: fit-content;
    display: flex;
    gap: .625rem;
    padding: 0.7rem 1.5rem;
}

.seo-module-features .btn-outline:hover svg path {
    stroke: #ffffff;
}

.seo-module-features ul li {
    font-size: .7375rem;
    color: rgba(81, 86, 93, 1);
    margin-left: 1.5rem;
    padding-top: 0.3rem;
}


.seo-module-features ul li:first-child {
    font-size: 1rem;
    color: rgba(81, 86, 93, 1);
    font-family: var(--font-primary);
    list-style: none;
    margin-left: 0;
}

/* -------------- */

.tools {
    padding-top: 9.375rem;
}

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

.tools-header h2 {
    margin-right: 5rem;
}

.tools-subtitle {
    font-size: .875rem;
    color: rgba(81, 86, 93, 1);
    padding-top: 3.5rem;
    margin-bottom: 3.125rem
}

/* ------------ */

.container-tools {
    /* padding: 0 1.25rem; */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
}

/* Первый столбец с 3 разделами */
.column-1 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Второй столбец с 1 большим разделом */
.column-2 {
    display: flex;
    flex-direction: column;
}

/* Третий столбец с 2 разделами */
.column-3 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.card {
    background-color: white;
    border-radius: 12px;
    padding: .75rem;
    flex-grow: 1;
}

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

.card-header .icon {
    padding: .625rem;
    background-color: #4CAF50;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .75rem;
}

.card-header h4 {
    font-size: 1.2125rem;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.card-content ul {
    list-style: none;
    padding: 0.5rem;
}

.card-content li {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    position: relative;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: rgba(41, 37, 36, 1);
}

.card-content li:last-child {
    margin-bottom: 0;
}

.card-content .item-icon {
    color: #4285F4;
    margin-right: .5rem;
    width: 1.5rem;
}

.card-content .tools-link {
    text-decoration: none;
    color: rgba(41, 37, 36, 1);
    transition: color 0.3s ease;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.card-content .tools-link:hover {
    color: var(--blue);
}

.card-content .info-icon {
    position: absolute;
    right: 0;
    color: #ccc;
}

/* Для второго столбца - большая карточка */
.column-2 .card {
    height: 100%; /* Занимает всю высоту */
}

/* -------------- */

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip .tooltip-text {
    visibility: hidden;
    min-width: 14.375rem;
    background-color: #fff;
    color: rgba(0, 0, 0, 1);
    border-radius: 3px;
    padding: 1.25rem;
    position: absolute;
    z-index: 1;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-size: .75rem;
    font-family: var(--font-primary);
    z-index: 2;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Планшетная версия */
@media (max-width: 1024px) {
    .container-tools {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "col1 col2"
            "col3 col3";
    }
    
    .column-1 {
        grid-area: col1;
    }
    
    .column-2 {
        grid-area: col2;
    }
    
    .column-3 {
        grid-area: col3;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* Мобильная версия */
@media (max-width: 768px) {
    .container-tools {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "col1"
            "col2"
            "col3";
    }
    
    .column-3 {
        grid-template-columns: 1fr;
    }
    
    .card {
        margin-bottom: 10px;
    }
    
    .card-content {
        display: none;
    }
    
    .card.expanded .card-content {
        display: block;
    }
    
    .card-header {
        position: relative;
        margin-bottom: 0;
    }
    
    .card-header::after {
        content: '▼';
        position: absolute;
        right: 0;
        transition: transform 0.3s;
        font-size: 12px;
    }
    
    .card.expanded .card-header::after {
        transform: rotate(180deg);
    }
}

/* Призыв к действию */
.cta {
    padding: 5.625rem 0 14.0625rem;
    text-align: center;
    position: relative;
    z-index: 2;
    background-image: url('/assets/images/background-info-global.png');
    background-position: bottom;
    background-repeat: no-repeat;
}

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

.cta-logo {
    width: 24.0625rem;
    margin: 0 auto;
    margin-bottom: 2.5rem;
}

.cta-content h2 {
    width: fit-content;
    margin-bottom: 3.625rem;
}

.cta-content h3 {
    font-size: 2.25rem;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.cta-logo img {
    width: 100%;
}

/* Эффективное SEO */
.effective-seo {
    padding: 5.625rem 0;
    background-image: url('/assets/images/background-effects.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.effective-seo-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.effective-seo h3 {
    color: #fff;
}

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

.users p {
    font-family: var(--font-primary);
    font-size: .875rem;
    color: #fff;
}

.user-avatars {
    display: flex;
    align-items: center;
}

.user-avatars img {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.user-avatars img:first-child {
    margin-left: 0;
}

.more-users {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    background-color: #fff;
    color: rgba(47, 45, 26, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin-left: -10px;
}

.effective-seo-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1.25rem;
}

.seo-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 1.25rem;
}

.seo-wrapper {
    display: flex;
    justify-content: space-between;
}

/* -------- */

.seo-card {
    display: grid;
    align-content: space-between;
    position: relative;
}

.seo-card:nth-child(n) {
    grid-column: span 3;
    height: 16.4375rem;
}

.seo-card:nth-child(1) {
    grid-column: span 4;
}

.seo-card:nth-child(2) {
    grid-column: span 3;
}

.seo-card:nth-child(3) {
    grid-column: span 2;
    opacity: 0;
}

.seo-card:nth-child(4) {
    grid-column: span 3;
    opacity: 0;
}

/* -------- */

.seo-card-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.seo-card-wrapper .svg-wrapper {
    padding: .75rem;
    background-color: rgba(247, 247, 248, 1);
    border-radius: 12px;
}

.seo-card:first-child {
    background-image: url('/assets/images/card1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.seo-card:first-child h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: #fff;
    font-size: 1.3125rem;
}

.seo-card:first-child p {
    font-family: var(--font-primary);
    font-size: .875rem;
    color: rgba(13, 22, 55, 1);
}

.seo-card-wrapper h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: rgba(81, 86, 93, 1);
    font-size: 1.3125rem;
}

.seo-card:last-child {
    background-color: rgba(42, 98, 254, 1);
}

.seo-card:last-child h3 {
    color: #fff;
}

.seo-card p {
    font-size: .8375rem;
    font-family: var(--font-secondary);
    color: rgba(70, 99, 127, 1);
}

.seo-button {
    margin-bottom: 1rem;
    font-family: var(--font-tertiary);
    text-transform: uppercase;
}

.seo-button .btn-third {
    background-color: #fff;
    color: #007bff;
    padding: 0.9rem 4.375rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.seo-button:hover .btn-third  {
    background-color: #007bff;
    color: #fff;
    border: 1px solid #fff;
}


/* Отзывы клиентов */

.view-all-link {
    color: rgba(62, 100, 234, 1);
    font-size: 1rem;
    font-family: var(--font-secondary);
    font-weight: 500;
    align-self: flex-end;
}

.reviews-section {
    padding: 9.375rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3.125rem
}

.about-us-link {
    color: #0066cc;
    font-size: 14px;
    margin-right: auto;
    margin-left: 20px;
    text-decoration: none;
}

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(227, 228, 232, 1);
}

.swiper-slide:nth-child(even) .review-card {
    background: linear-gradient(142.2deg, rgba(233, 242, 255, 0) 4.21%, #89B2FF 132.63%);
}

.review-text {
    font-family: var(--font-primary);
    font-size: .875rem;
    color: rgba(77, 80, 94, 1);
    margin-bottom: 1.125rem;
}

.review-author {
    display: flex;
    align-items: center;
}

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

.author-info h3 {
    font-family: var(--font-tertiary);
    font-size: .875rem;
    margin-bottom: .25rem;
    color: rgba(46, 48, 56, 1);
}

.author-info p {
    font-size: .6875rem;
    color: rgba(123, 129, 147, 1);
}

.author-info * a {
    color: rgba(62, 100, 234, 1);
    transition: all 0.3s ease;
}

.author-info * a:hover {
    color: rgb(21, 49, 151);
}

.swiper-button-prev, .swiper-button-next {
    width: 2.2rem;
    height: 2.2rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(81, 86, 93, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.swiper-button-prev:after, .swiper-button-next:after {
    font-size: .625rem;
    color: rgba(81, 86, 93, 1);
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    border: 1px solid rgba(42, 98, 254, 1);
}

.swiper-button-prev:hover:after, .swiper-button-next:hover:after {
    color: rgba(42, 98, 254, 1);
}

.swiper-button-container {
    display: flex;
}

.swiper-button-container2 {
    display: none;
}

/* Финальный CTA */
.final-cta {
    background: rgba(33, 104, 238, 1);
    text-align: center;
    color: #fff;
    position: relative;
}

.final-cta .container {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0;
}

.final-cta .final-cta-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 9.375rem;
}

.final-cta h3 {
    font-family: var(--font-secondary);
}

.final-cta .btn-primary {
    background-color: #fff;
    color: rgba(33, 104, 238, 1);
    font-family: var(--font-tertiary);
    text-transform: uppercase;
    border: 1px solid transparent;
    padding: 0.9rem 4.375rem;
    cursor: pointer;
    border-radius: 12px;
}

.final-cta .btn-primary:hover {
    background-color: rgba(33, 104, 238, 1);
    color: #fff;
    border: 1px solid #fff;
}

.final-cta-info {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.final-cta-info a {
    transition: all 0.3s ease;
}

.final-cta-info a:hover {
    opacity: .8;
}

.final-cta-info p {
    text-align: left;
}

.trial-info-final-cta {
    font-family: var(--font-tertiary);
    font-size: .75rem;
    margin-top: .625rem;
    text-align: right;
    padding-right: 2rem;
}

.final-cta .light-1 {
    position: absolute;
    top: 0;
    left: 13rem;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.final-cta .light-2 {
    position: absolute;
    top: 0;
    left: 11rem;
    pointer-events: none;
}

/* Тарифы */

.pricing {
    padding: 9.375rem 0;
}

.pricing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3.125rem;
}

.pricing-header p {
    align-self: flex-end;
    font-family: var(--font-primary);
    font-size: .875rem;
    color: rgba(81, 86, 93, 1);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.125rem;
    margin-bottom: 2.5rem;
    align-items: end;
}

.pricing-toggle {
    padding: 1.25rem;
    background-color: rgba(249, 250, 251, 1);
    border-radius: 12px;
}

.pricing-toggle h3 {
    font-family: var(--font-secondary);
    font-size: 1.3125rem;
    color: rgba(9, 11, 14, 1);
}

.pricing-toggle span {
    font-family: var(--font-primary);
    font-size: .75rem;
    color: rgba(78, 92, 119, 1);
}

.toggle {
    margin-top: 1.25rem;
    background-color: var(--blue);
    width: fit-content;
    border-radius: 86px;
    padding: .125rem;
    position: relative;
}

.toggle-btn {
    font-family: var(--font-primary);
    font-size: .75rem;
    color: rgba(255, 255, 255, 1);
    padding: .9375rem 1.25rem;
    border: 1px solid transparent;
    background-color: transparent;
    border-radius: 86px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    cursor: pointer;
}

.toggle::before {
    content: '';
    position: absolute;
    top: .125rem;
    left: calc(50% + .125rem);
    height: calc(100% - .25rem);
    width: calc(50% - .25rem);
    background-color: #fff;
    border-radius: 86px;
    transition: transform 0.3s ease;
    z-index: 1;
}

.toggle.year::before {
    transform: translateX(-103%);
}

.toggle-btn.active {
    color: var(--blue);
    background-color: transparent;
}

.pricing-card .btn-outline {
    /* margin-top: 0.3rem; */
    background-color: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    gap: .625rem;
    width: 100%;
    justify-content: center;
    padding: .875rem 0;
    border-radius: 12px;
}

.pricing-card .btn-outline svg path {
    stroke: #fff;
}

.pricing-card .btn-outline:hover {
    background-color: rgba(28, 87, 197, 1);
}

.svg-pricing {
    padding: 0.3rem .625rem;
    background-color: rgba(247, 247, 248, 1);
    border-radius: 11px;
    box-shadow: 0px 0px 21px 4px rgba(61, 110, 203, 0.12);
    margin-bottom: 0.6rem;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(232, 232, 232, 1);
    border-radius: 12px;
    padding: .875rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: background-color 0.3s ease;
    transition: border 0.3s ease;
}

.pricing-card h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.25rem;
    color: rgba(9, 11, 14, 1);
    transition: color 0.3s ease;
}

.pricing-card .description {
    font-family: var(--font-primary);
    font-size: .75rem;
    color: rgba(78, 92, 119, 1);
    font-weight: 500;
    margin-bottom: .8125rem;
    height: 1.4rem;
}

.pricing-card .price.active {
    font-family: var(--font-primary);
    /* font-size: 2rem; */
    font-size: 2.5rem;
    color: rgba(9, 11, 14, 1);
    font-weight: 600;
}

.pricing-card .price.active span {
    font-size: .75rem;
    font-family: var(--font-primary);
}

.pricing-card .price {
    font-family: var(--font-primary);
    font-size: 1.3125rem;
    color: rgba(78, 92, 119, 1);
    font-weight: 300;
}

.pricing-card .price span {
    font-size: .75rem;
    font-family: var(--font-primary);
}

.pricing-card:hover {
    background-color: rgba(241, 247, 255, 1);
    border: 1px solid rgba(42, 98, 254, 1);
}

.pricing-card:hover h3 {
    color: var(--blue);
}

.pricing-card:hover .price {
    color: var(--blue);
}

.price, .yearly {
    transition: font-size 0.3s ease, color 0.3s ease, font-weight 0.3s ease;
}

/* ---------------------- */

.pricing-table {
    background-color: rgba(42, 98, 254, 1);
    border-radius: 4px;
    padding: .875rem;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.pricing-table .table-row span {
    font-family: var(--font-secondary);
    font-size: 1.3125rem;
    color: rgba(13, 22, 55, 1);
    font-weight: 500;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(224, 224, 224, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .625rem 0;
}

.pricing-table .table-row span:first-child {
    align-self: flex-start;
    justify-self: flex-start;
    font-weight: 600;
    font-size: 1rem;
    color: rgba(255, 255, 255, 1);
    background-color: inherit;
    border: 1px solid rgba(42, 98, 254, 1);
}

/* FAQ */
.faq {
    padding-bottom: 9.375rem;
}

.faq .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 14.0625rem;
    position: relative;
}

.faq .btn-outline {
    padding: .95rem 3.125rem;
    border: 1px solid rgba(255, 255, 255, 1);
    border: 1px solid var(--blue);
    color: var(--blue);
    border-radius: 8px;
    cursor: pointer;
    background-color: transparent;
    font-family: var(--font-tertiary);
    font-size: .75rem;
}

.faq .btn-outline:hover {
    background-color: var(--blue);
    color: #fff;
    border: 1px solid var(--blue);
}

.faq-content {
    display: grid;
}

.faq-content h2 {
    width: fit-content;
    margin-bottom: 3.75rem;
}

.faq-image {
    content: "";
    position: absolute;
    top: 5%;
    left: -25%;
    z-index: -1;
    object-fit: contain;
}

.faq-image img {
    width: 80%;
}

.faq-list {
    width: 37.9375rem;
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(215, 219, 225, 1);
    padding: 1.3125rem 1.3125rem 1.3125rem;
}

.faq-question {
    width: 100%;
    background-color: transparent;
    font-size: 1.3125rem;
    border: none;
    color: rgba(0, 0, 0, 1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 0;
    font-family: var(--font-secondary);
    font-size: 1.3125rem;
    color: rgba(0, 0, 0, 1);
    font-weight: 400;
}

.toggle-icon {
    width: 1.8rem;
    height: 1.8rem;
    background-color: rgba(238, 244, 255, 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-left: 10px;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    font-size: 0.85rem;
    color: rgba(131, 131, 131, 1);
    padding-right: 2.8rem;
}

.answer-content {
    padding-top: 1.5rem;
}

.answer-content p {
    /* font-family: var(--font-primary); */
    font-size: 1.1rem;
    font-weight: 400;
    font-family: var(--font-secondary);
}

/* Финальный CTA перед футером */
.pre-footer-cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.125rem 0;
    background-image: url('/assets/images/background-seo-pre.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 21px;
}

.pre-footer-cta h3 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: .9375rem;
    color: rgba(246, 246, 249, 1);
}

.pre-footer-cta p {
    font-size: 1.3125rem;
    margin-bottom: 1.6875rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-secondary);
    font-weight: 600;
}

.pre-footer-cta .btn-primary {
    background-color: #fff;
    color: var(--blue);
    padding: .9375rem 8.75rem   ;
    font-size: .75rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--font-tertiary);
    cursor: pointer;
}

.pre-footer-cta .btn-primary:hover {
    background-color: var(--blue);
    color: #fff;
}

/* Футер */
.footer {
    overflow: hidden;
    padding-top: 3.125rem;
    background-color: rgba(241, 247, 255, 1);
    color: rgba(78, 92, 119, 1);
}

.footer .container {
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.875rem;
    margin-bottom: 1.875rem;
}

.footer-contacts p {
    font-size: .875rem;
    margin-bottom: 1.625rem;
    font-family: var(--font-secondary);
    font-weight: 500;
    color: rgba(81, 86, 93, 1);
}

.footer-contacts a {
    color: rgba(33, 104, 238, 1);
    text-decoration: none;
    font-size: .875rem;
    margin-bottom: 1.625rem;
    font-family: var(--font-secondary);
    font-weight: 500;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: rgba(78, 92, 119, 1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--blue);
    text-decoration: underline;
}

.footer-social p {
    color: rgba(13, 22, 55, 1);
    font-size: 1.5rem;
    font-family: var(--font-secondary);
    font-weight: 700;
}

.footer-social span {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 1rem;
    color: rgba(33, 104, 238, 1);
}

.social-icons {
    margin-top: 1.1875rem;
    display: flex;
    gap: .4375rem;
    transition: fill 0.3s ease;
}

.social-icons a:hover svg path {
    fill: rgba(33, 104, 238, 1);
}

.footer-bottom {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-top: 1px solid rgba(108, 108, 108, 0.2);
    padding-top: 1.5rem;
    padding-bottom: 1.875rem;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: .875rem;
    color: rgba(173, 178, 181, 1);
}

.footer-bottom a {
    color: rgba(173, 178, 181, 1);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--blue);
    text-decoration: underline;
}

.footer-background-logo {
    position: absolute;
    bottom: 0;
    left: -7.8%;
    width: 100%;
    pointer-events: none;
}

.footer-light {
    position: absolute;
    bottom: 0;
    right: -40%;
    width: 100%;
    z-index: 1;
    opacity: .5;
    pointer-events: none;
}

.footer-light img {
    width: 100%;
}

.swiper-container {
    display: none; 
}

.swiper-pagination2 {
    display: none;
}

.mobile-grid {
    display: none;
}

.pricing-toggle-wrapper {
    display: none;
}