@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@600;700;800;900&family=Nunito+Sans:wght@400;500;600;700;800;900&display=swap');


/* =========================
   Базовые стили
========================= */

* {
    box-sizing: border-box;
}

/* =========================================================
   BLOG
========================================================= */

.blog-page,
.single-article {
    padding: 76px 0 96px;
    background: #f7f8fc;
}

.blog-container,
.article-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.blog-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.blog-title,
.article-title {
    margin: 14px 0 18px;
    color: #111318;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.03;
    letter-spacing: -.04em;
}

.blog-description,
.article-excerpt {
    color: #686d79;
    font-size: 19px;
    line-height: 1.7;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.blog-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7ef;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(31, 35, 48, .07);
    transition: transform .2s ease, box-shadow .2s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(79, 70, 229, .13);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #ecebff;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body { padding: 25px; }
.blog-card-meta,
.article-meta { color: #858a96; font-size: 14px; }
.blog-card-title { margin: 12px 0; font-size: 23px; line-height: 1.25; }
.blog-card-title a { color: #171920; text-decoration: none; }
.blog-card-excerpt { color: #686d79; line-height: 1.65; }
.blog-card-link { display: inline-flex; margin-top: 16px; color: #4f46e5; font-weight: 700; text-decoration: none; }
.blog-pagination { margin-top: 42px; }
.blog-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.blog-pagination .page-numbers { padding: 10px 15px; color: #24262e; background: #fff; border: 1px solid #dedfe8; border-radius: 10px; text-decoration: none; }
.blog-pagination .current { color: #fff; background: #4f46e5; border-color: #4f46e5; }

.article-container { max-width: 900px; }
.article-header { margin-bottom: 34px; }
.article-cover { margin: 0 0 38px; overflow: hidden; border-radius: 24px; }
.article-cover img { display: block; width: 100%; height: auto; }
.article-content { padding: 38px clamp(22px, 5vw, 64px); background: #fff; border: 1px solid #e5e7ef; border-radius: 24px; color: #30333b; font-size: 18px; line-height: 1.8; }
.article-content h2,
.article-content h3 { color: #15171d; line-height: 1.25; }
.article-content a { color: #4f46e5; }
.article-content img { max-width: 100%; height: auto; border-radius: 14px; }
.article-back { display: inline-flex; margin-top: 30px; color: #4f46e5; font-weight: 700; text-decoration: none; }

.thanks-page {
    min-height: 70vh;
    display: grid;
    padding: 90px 20px;
    place-items: center;
    text-align: center;
    background: #f7f8fc;
}

.thanks-card {
    width: min(720px, 100%);
    padding: clamp(34px, 7vw, 70px);
    background: #fff;
    border: 1px solid #e3e5ed;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(31, 35, 48, .09);
}

.thanks-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 25px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #4f46e5;
    border-radius: 50%;
    font-size: 34px;
    font-weight: 900;
}

.thanks-title {
    margin: 0 0 18px;
    color: #111318;
    font-size: clamp(36px, 6vw, 58px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.thanks-text {
    margin: 0 auto 30px;
    max-width: 560px;
    color: #686d79;
    font-size: 19px;
    line-height: 1.65;
}

.home-blog-section {
    padding: 92px 0;
    background: #f7f8fc;
    border-top: 1px solid #e7e8ef;
}

.home-blog-heading {
    display: flex;
    margin-bottom: 38px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.home-blog-heading > div { max-width: 760px; }

.home-blog-title {
    margin: 13px 0 16px;
    color: #111318;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.home-blog-description {
    margin: 0;
    color: #686d79;
    font-size: 18px;
    line-height: 1.65;
}

.home-blog-all {
    display: inline-flex;
    flex: 0 0 auto;
    padding: 13px 18px;
    color: #4f46e5;
    background: #fff;
    border: 1px solid #dddeea;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
}

.home-blog-all:hover {
    color: #fff;
    background: #4f46e5;
    border-color: #4f46e5;
}

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

@media (max-width: 620px) {
    .blog-page,
    .single-article { padding: 52px 0 70px; }
    .blog-container,
    .article-container { width: min(100% - 28px, 1180px); }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-title,
    .article-title { font-size: 38px; }
    .home-blog-section { padding: 66px 0; }
    .home-blog-heading { align-items: flex-start; flex-direction: column; }
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Nunito Sans", sans-serif;
    color: #15171a;
    background: #ffffff;
}

h1,
h2,
h3 {
    font-family: "Montserrat Alternates", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================
   Шапка сайта
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e9ebf0;
    backdrop-filter: blur(12px);
}

.header-container {
    width: min(1380px, calc(100% - 48px));
    height: 82px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 32px;
}


/* Логотип */

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo-image {
    display: block;
    width: 285px;
    height: auto;
    max-height: 62px;
    object-fit: contain;
}


/* Главное меню */

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
}

.main-nav > a,
.nav-dropdown > a {
    position: relative;
    padding: 30px 0;

    color: #34373d;

    font-size: 15px;
    font-weight: 600;

    transition: color 0.2s ease;
}

.main-nav > a:hover,
.nav-dropdown > a:hover {
    color: #4f46e5;
}


/* Выпадающее SEO-меню */

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::after {
    content: "⌄";
    margin-left: 6px;
    font-size: 13px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 8px);
    left: -22px;

    min-width: 210px;
    padding: 10px;

    background: #ffffff;

    border: 1px solid #e8eaf0;
    border-radius: 14px;

    box-shadow: 0 18px 50px rgba(18, 24, 40, 0.12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;

    padding: 12px 14px;

    border-radius: 9px;

    color: #34373d;

    font-size: 14px;
    font-weight: 600;
}

.dropdown-menu a:hover {
    color: #4f46e5;
    background: #f4f4ff;
}


/* Кнопка консультации */

.header-button {
    flex-shrink: 0;

    padding: 13px 19px;

    color: #ffffff;
    background: #4f46e5;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.header-button:hover {
    background: #4338ca;

    transform: translateY(-1px);

    box-shadow: 0 8px 22px rgba(79, 70, 229, 0.24);
}


/* Кнопка мобильного меню */

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    padding: 9px;

    background: transparent;

    border: 0;

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: #15171a;

    border-radius: 2px;
}


/* =========================
   Первый экран
========================= */

.hero {
    position: relative;

    overflow: hidden;

    min-height: calc(100vh - 82px);

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fafaff 45%,
            #f5f7ff 100%
        );
}

.hero-container {
    position: relative;
    z-index: 3;

    width: min(1260px, calc(100% - 80px));

    margin: 0 auto;

    padding: 90px 0 100px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(480px, 0.9fr);

    gap: 70px;

    align-items: center;
}


/* Технологичный фон */

.hero-grid-pattern {
    position: absolute;
    inset: 0;

    z-index: 0;

    background-image:
        linear-gradient(
            rgba(79, 70, 229, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(79, 70, 229, 0.045) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    mask-image:
        linear-gradient(
            to right,
            transparent,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.2)
        );
}

.hero-bg {
    position: absolute;

    z-index: 1;

    border-radius: 50%;

    filter: blur(20px);

    pointer-events: none;
}

.hero-bg-one {
    width: 520px;
    height: 520px;

    right: -130px;
    top: -170px;

    background: rgba(79, 70, 229, 0.11);
}

.hero-bg-two {
    width: 380px;
    height: 380px;

    right: 390px;
    bottom: -220px;

    background: rgba(37, 99, 235, 0.08);
}


/* Левая часть */

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 700px;
}

.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 24px;

    padding: 8px 13px;

    color: #4338ca;

    background: #f0efff;

    border: 1px solid #dedbff;

    border-radius: 100px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.08em;
}

.hero-badge::before {
    content: "";

    width: 7px;
    height: 7px;

    background: #4f46e5;

    border-radius: 50%;

    box-shadow:
        0 0 0 5px rgba(79, 70, 229, 0.1);
}

.hero-title {
    max-width: 740px;

    margin: 0 0 23px;

    color: #101114;

    font-size: clamp(48px, 4.1vw, 60px);

    line-height: 1.06;

    font-weight: 800;

    letter-spacing: -0.035em;
}

.hero-lead {
    margin: 0 0 14px;

    color: #292d34;

    font-size: clamp(21px, 2vw, 28px);

    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -0.025em;
}

.hero-text {
    max-width: 650px;

    margin: 0;

    color: #626670;

    font-size: 18px;

    line-height: 1.7;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}

.button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 22px;

    border-radius: 11px;

    font-size: 15px;

    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.button-primary {
    color: #ffffff;

    background: #4f46e5;

    border: 1px solid #4f46e5;

    box-shadow:
        0 10px 28px rgba(79, 70, 229, 0.18);
}

.button-primary:hover {
    background: #4338ca;

    border-color: #4338ca;

    transform: translateY(-2px);

    box-shadow:
        0 14px 32px rgba(79, 70, 229, 0.25);
}

.button-secondary {
    color: #262931;

    background: rgba(255, 255, 255, 0.8);

    border: 1px solid #dedfe5;
}

.button-secondary:hover {
    background: #ffffff;

    border-color: #cfd1da;

    transform: translateY(-2px);
}

.hero-features {
    display: flex;

    flex-wrap: wrap;

    gap: 22px;

    margin-top: 27px;

    color: #686c75;

    font-size: 13px;

    font-weight: 600;
}

.hero-feature {
    display: flex;

    align-items: center;

    gap: 8px;
}

.feature-dot {
    width: 7px;
    height: 7px;

    background: #4f46e5;

    border-radius: 50%;
}


/* =========================
   Инфографика справа
========================= */

.hero-visual {
    position: relative;

    z-index: 2;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.analytics-card {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 580px;

    padding: 27px;

    background: rgba(255, 255, 255, 0.9);

    border: 1px solid rgba(220, 223, 235, 0.95);

    border-radius: 24px;

    box-shadow:
        0 30px 80px rgba(35, 39, 68, 0.12),
        0 8px 26px rgba(35, 39, 68, 0.06);

    backdrop-filter: blur(18px);

    font-family: "Nunito Sans", sans-serif;
}

.analytics-header {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 26px;
}

.analytics-label {
    display: block;

    margin-bottom: 6px;

    color: #8a8e98;

    font-family: "Nunito Sans", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.analytics-header h2 {
    margin: 0;

    color: #16181d;

    font-family: "Nunito Sans", sans-serif;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 800;

    letter-spacing: -0.015em;
}

.analytics-status {
    display: flex;

    align-items: center;

    gap: 7px;

    flex-shrink: 0;

    padding: 7px 10px;

    color: #267a4b;

    background: #edf9f1;

    border-radius: 100px;

    font-family: "Nunito Sans", sans-serif;

    font-size: 11px;

    font-weight: 700;
}

.analytics-status span {
    width: 7px;
    height: 7px;

    background: #35a865;

    border-radius: 50%;
}


/* График */

.analytics-chart {
    position: relative;

    height: 210px;

    margin-bottom: 22px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(248, 249, 255, 0.5),
            rgba(247, 248, 253, 0.92)
        );

    border: 1px solid #eceef5;

    border-radius: 16px;
}

.chart-lines {
    position: absolute;

    inset: 0;
}

.chart-lines span {
    position: absolute;

    left: 0;

    width: 100%;

    height: 1px;

    background: #eceef5;
}

.chart-lines span:nth-child(1) {
    top: 20%;
}

.chart-lines span:nth-child(2) {
    top: 40%;
}

.chart-lines span:nth-child(3) {
    top: 60%;
}

.chart-lines span:nth-child(4) {
    top: 80%;
}

.growth-chart {
    position: absolute;

    inset: 18px;

    width: calc(100% - 36px);

    height: calc(100% - 36px);
}

.chart-area {
    fill: url(#chartGradient);
}

.chart-line {
    fill: none;

    stroke: #4f46e5;

    stroke-width: 4;

    stroke-linecap: round;
}

.growth-chart circle {
    fill: #ffffff;

    stroke: #4f46e5;

    stroke-width: 4;
}


/* Направления */

.analytics-services {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;
}

.analytics-service {
    display: flex;

    align-items: center;

    gap: 10px;

    min-height: 73px;

    padding: 12px;

    background: #fafbfe;

    border: 1px solid #eceef4;

    border-radius: 13px;

    font-family: "Nunito Sans", sans-serif;
}

.service-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #4f46e5;

    background: #edecff;

    border-radius: 10px;

    font-family: "Nunito Sans", sans-serif;

    font-size: 12px;

    font-weight: 900;
}

.analytics-service span {
    display: block;

    margin-bottom: 3px;

    color: #989ba4;

    font-size: 10px;
}

.analytics-service strong {
    display: block;

    color: #2a2d34;

    font-family: "Nunito Sans", sans-serif;

    font-size: 12px;

    line-height: 1.25;

    font-weight: 800;
}


/* Плавающие карточки */

.floating-card {
    position: absolute;

    z-index: 4;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 12px 15px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid #e7e9f1;

    border-radius: 14px;

    box-shadow:
        0 15px 40px rgba(30, 35, 65, 0.12);

    font-family: "Nunito Sans", sans-serif;
}

.floating-card-top {
    top: 34px;

    right: -28px;
}

.floating-card-bottom {
    bottom: 22px;

    left: -38px;
}

.floating-icon {
    width: 37px;
    height: 37px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #4f46e5;

    background: #efefff;

    border-radius: 10px;

    font-size: 17px;

    font-weight: 800;
}

.floating-card span:not(.floating-icon) {
    display: block;

    margin-bottom: 2px;

    color: #999ca5;

    font-size: 10px;
}

.floating-card strong {
    display: block;

    color: #262930;

    font-family: "Nunito Sans", sans-serif;

    font-size: 12px;

    font-weight: 800;
}


/* =========================
   Блок услуг
========================= */

.services-section {
    position: relative;

    padding: 110px 0 100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(79, 70, 229, 0.05),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 85%,
            rgba(37, 99, 235, 0.05),
            transparent 28%
        ),
        #ffffff;
}

.section-container {
    width: min(1180px, calc(100% - 48px));

    margin: 0 auto;
}

.section-heading {
    max-width: 780px;

    margin: 0 auto;

    text-align: center;
}

.section-kicker {
    display: inline-block;

    margin-bottom: 14px;

    color: #4f46e5;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0 0 17px;

    color: #15171a;

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.08;

    letter-spacing: -0.045em;
}

.section-heading p {
    max-width: 700px;

    margin: 0 auto;

    color: #6a6e77;

    font-size: 17px;

    line-height: 1.7;
}


/* Сетка карточек */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    margin-top: 58px;
}


/* Карточка */

.service-card {
    position: relative;

    display: flex;

    flex-direction: column;

    min-height: 545px;

    padding: 26px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.95);

    border: 1px solid #e8eaf1;

    border-radius: 24px;

    box-shadow:
        0 18px 50px rgba(24, 28, 50, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    inset: 0 0 auto 0;

    height: 4px;

    border-radius: 24px 24px 0 0;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 28px 65px rgba(24, 28, 50, 0.11);
}

.service-card-direct::before {
    background:
        linear-gradient(
            90deg,
            #ffcc00,
            #ff7a00
        );
}

.service-card-yandex::before {
    background:
        linear-gradient(
            90deg,
            #4f46e5,
            #7c3aed
        );
}

.service-card-google::before {
    background:
        linear-gradient(
            90deg,
            #2563eb,
            #22c55e
        );
}

.service-card-direct:hover {
    border-color:
        rgba(255, 174, 0, 0.35);
}

.service-card-yandex:hover {
    border-color:
        rgba(79, 70, 229, 0.28);
}

.service-card-google:hover {
    border-color:
        rgba(37, 99, 235, 0.28);
}


/* Верх карточки */

.service-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 28px;
}

.service-card-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    font-size: 15px;

    font-weight: 900;
}

.service-card-direct .service-card-icon {
    color: #7a4d00;

    background:
        linear-gradient(
            135deg,
            #fff8cc,
            #fff0a3
        );
}

.service-card-yandex .service-card-icon {
    color: #4f46e5;

    background:
        linear-gradient(
            135deg,
            #f0efff,
            #e6e4ff
        );
}

.service-card-google .service-card-icon {
    color: #2563eb;

    background:
        linear-gradient(
            135deg,
            #eaf2ff,
            #ecfdf3
        );
}

.service-card-number {
    color: #c7cad2;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 0.08em;
}


/* Контент */

.service-card-content {
    flex: 1;
}

.service-card-type {
    display: block;

    margin-bottom: 10px;

    color: #8b8f99;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.07em;

    text-transform: uppercase;
}

.service-card h3 {
    margin: 0 0 16px;

    color: #17191e;

    font-size: 29px;

    line-height: 1.1;

    letter-spacing: -0.035em;
}

.service-card p {
    margin: 0 0 22px;

    color: #686c76;

    font-size: 15px;

    line-height: 1.65;
}


/* Список */

.service-card-list {
    margin: 0;

    padding: 0;

    list-style: none;
}

.service-card-list li {
    position: relative;

    margin-bottom: 11px;

    padding-left: 22px;

    color: #3c4048;

    font-size: 14px;

    line-height: 1.45;
}

.service-card-list li::before {
    content: "";

    position: absolute;

    left: 0;

    top: 7px;

    width: 7px;
    height: 7px;

    border-radius: 50%;
}

.service-card-direct
.service-card-list li::before {
    background: #f4b400;
}

.service-card-yandex
.service-card-list li::before {
    background: #4f46e5;
}

.service-card-google
.service-card-list li::before {
    background: #2563eb;
}


/* Ссылка */

.service-card-link {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 14px;

    margin-top: 30px;

    padding-top: 20px;

    border-top: 1px solid #eceef3;

    color: #2a2d34;

    font-size: 14px;

    font-weight: 800;

    transition:
        color 0.2s ease;
}

.service-card-link span {
    font-size: 20px;

    line-height: 1;

    transition:
        transform 0.2s ease;
}

.service-card-direct
.service-card-link:hover {
    color: #b36f00;
}

.service-card-yandex
.service-card-link:hover {
    color: #4f46e5;
}

.service-card-google
.service-card-link:hover {
    color: #2563eb;
}

.service-card-link:hover span {
    transform: translateX(5px);
}


/* Нижняя строка */

.services-bottom {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 16px;

    flex-wrap: wrap;

    margin-top: 38px;

    padding: 18px 24px;

    background: #f8f8fc;

    border: 1px solid #ececf3;

    border-radius: 16px;
}

.services-bottom p {
    margin: 0;

    color: #676b74;

    font-size: 14px;
}

.services-consultation-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #4f46e5;

    font-size: 14px;

    font-weight: 800;
}

.services-consultation-link span {
    transition:
        transform 0.2s ease;
}

.services-consultation-link:hover span {
    transform: translateX(4px);
}


/* =========================
   Блок «Обо мне»
========================= */

.about-section {
    position: relative;

    overflow: hidden;

    padding: 110px 0;

    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(79, 70, 229, 0.09),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 75%,
            rgba(37, 99, 235, 0.08),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #f8f9ff 0%,
            #f3f5ff 55%,
            #f7f9ff 100%
        );
}

.about-section::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(79, 70, 229, 0.028) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(79, 70, 229, 0.028) 1px,
            transparent 1px
        );

    background-size: 46px 46px;
}

.about-container {
    position: relative;

    z-index: 2;

    width: min(1180px, calc(100% - 48px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(380px, 0.88fr)
        minmax(0, 1.12fr);

    gap: 74px;

    align-items: start;
}


/* Фото */

.about-media {
    position: relative;

    transform: translateY(-24px);
}

.about-photo-card {
    position: relative;

    overflow: hidden;

    border-radius: 28px;

    border:
        1px solid rgba(219, 223, 238, 0.9);

    box-shadow:
        0 30px 70px rgba(31, 38, 75, 0.15),
        0 10px 25px rgba(31, 38, 75, 0.07);

    background: #0d1c3a;
}

.about-photo-card::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    box-shadow:
        inset 0 0 0 1px
        rgba(255, 255, 255, 0.08);
}

.about-photo {
    display: block;

    width: 100%;

    aspect-ratio: 1 / 1.02;

    object-fit: cover;

    object-position: center 36%;
}

.about-photo-badge {
    position: absolute;

    right: -26px;

    bottom: 30px;

    display: flex;

    align-items: center;

    gap: 12px;

    max-width: 255px;

    padding: 14px 17px;

    background:
        rgba(255, 255, 255, 0.96);

    border: 1px solid #e5e8f1;

    border-radius: 16px;

    box-shadow:
        0 18px 45px rgba(30, 35, 65, 0.15);

    backdrop-filter: blur(12px);
}

.about-photo-badge-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #4f46e5,
            #2563eb
        );

    border-radius: 12px;

    font-size: 17px;

    font-weight: 900;
}

.about-photo-badge div > span {
    display: block;

    margin-bottom: 3px;

    color: #9498a3;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.06em;
}

.about-photo-badge strong {
    display: block;

    color: #252830;

    font-size: 12px;

    line-height: 1.35;
}


/* Контент */

.about-content {
    position: relative;
}

.about-title {
    max-width: 660px;

    margin: 0 0 24px;

    color: #15171a;

    font-size:
        clamp(40px, 4vw, 57px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -0.048em;

    font-family:
        "Montserrat Alternates",
        sans-serif;
}

.about-lead {
    max-width: 680px;

    margin: 0 0 15px;

    color: #343842;

    font-size: 19px;

    line-height: 1.62;

    font-weight: 600;
}

.about-text {
    max-width: 680px;

    margin: 0;

    color: #6a6f79;

    font-size: 16px;

    line-height: 1.72;
}


/* Преимущества */

.about-benefits {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;

    margin-top: 28px;
}

.about-benefit {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    min-height: 118px;

    padding: 15px 16px;

    background:
        rgba(255, 255, 255, 0.85);

    border:
        1px solid rgba(225, 228, 239, 0.95);

    border-radius: 16px;

    box-shadow:
        0 10px 26px rgba(35, 40, 70, 0.04);

    backdrop-filter: blur(10px);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.about-benefit:hover {
    transform: translateY(-3px);

    border-color:
        rgba(79, 70, 229, 0.2);

    box-shadow:
        0 16px 34px rgba(35, 40, 70, 0.07);
}

.about-benefit-number {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #4f46e5;

    background: #efefff;

    border-radius: 10px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 0.04em;
}

.about-benefit h3 {
    margin: 1px 0 5px;

    color: #24272f;

    font-size: 14px;

    line-height: 1.3;

    letter-spacing: -0.015em;
}

.about-benefit p {
    margin: 0;

    color: #767a84;

    font-size: 12.5px;

    line-height: 1.5;
}


/* Кнопки */

.about-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 21px;

    margin-top: 27px;
}

.about-more-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #343842;

    font-size: 14px;

    font-weight: 800;

    transition:
        color 0.2s ease;
}

.about-more-link span {
    font-size: 19px;

    transition:
        transform 0.2s ease;
}

.about-more-link:hover {
    color: #4f46e5;
}

.about-more-link:hover span {
    transform: translateX(4px);
}


/* =========================
   Блок «Как я работаю»
========================= */

.process-section {
    position: relative;

    overflow: hidden;

    padding: 110px 0 105px;

    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(79, 70, 229, 0.07),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 88%,
            rgba(37, 99, 235, 0.055),
            transparent 30%
        ),
        #ffffff;
}

.process-section::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -260px;

    top: 70px;

    border-radius: 50%;

    background:
        rgba(79, 70, 229, 0.045);

    pointer-events: none;
}

.process-heading {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

.process-title {
    max-width: 760px;

    margin: 0 auto 20px;

    color: #15171a;

    font-size:
        clamp(38px, 4vw, 52px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -0.045em;
}

.process-description {
    max-width: 720px;

    margin: 0 auto;

    color: #6a6e77;

    font-size: 17px;

    line-height: 1.7;
}


/* Сетка этапов */

.process-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 16px;

    margin-top: 66px;
}


/* Линия */

.process-grid::before {
    content: "";

    position: absolute;

    z-index: 0;

    top: 38px;

    left: 7%;

    right: 7%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            rgba(79, 70, 229, 0.12),
            rgba(79, 70, 229, 0.55),
            rgba(79, 70, 229, 0.12)
        );
}


/* Этап */

.process-step {
    position: relative;

    z-index: 1;

    min-height: 360px;

    display: flex;

    flex-direction: column;

    padding: 22px 20px 20px;

    background:
        rgba(255, 255, 255, 0.97);

    border: 1px solid #e8eaf2;

    border-radius: 22px;

    box-shadow:
        0 16px 42px rgba(31, 35, 63, 0.055),
        0 4px 12px rgba(31, 35, 63, 0.025);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.process-step:hover {
    transform: translateY(-6px);

    border-color:
        rgba(79, 70, 229, 0.24);

    box-shadow:
        0 24px 55px rgba(31, 35, 63, 0.10),
        0 8px 20px rgba(31, 35, 63, 0.04);
}

.process-step-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    margin-bottom: 27px;
}

.process-number {
    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 49px;

    height: 34px;

    padding: 0 10px;

    color: #4f46e5;

    background: #efefff;

    border: 1px solid #e1dfff;

    border-radius: 999px;

    font-size: 11px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: 0.07em;
}

.process-icon {
    position: relative;

    z-index: 2;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    color: #4f46e5;

    background: #ffffff;

    border: 1px solid #e2e3ec;

    border-radius: 13px;

    box-shadow:
        0 9px 22px rgba(35, 39, 68, 0.08);

    font-family:
        "Nunito Sans",
        sans-serif;

    font-size: 19px;

    font-weight: 900;
}

.process-step h3 {
    margin: 0 0 13px;

    color: #20232a;

    font-size: 18px;

    line-height: 1.25;

    font-weight: 800;

    letter-spacing: -0.025em;
}

.process-step p {
    margin: 0;

    color: #747882;

    font-size: 14px;

    line-height: 1.62;
}


/* Итог */

.process-result {
    position: relative;

    display: block;

    margin-top: auto;

    padding: 16px 0 0 18px;

    color: #41454e;

    border-top: 1px solid #eceef3;

    font-size: 12.5px;

    line-height: 1.4;

    font-weight: 800;
}

.process-result::before {
    content: "";

    position: absolute;

    left: 0;

    top: 22px;

    width: 7px;
    height: 7px;

    background: #4f46e5;

    border-radius: 50%;
}


/* Последний этап */

.process-step-final {
    background:
        linear-gradient(
            145deg,
            rgba(79, 70, 229, 0.055),
            rgba(37, 99, 235, 0.025)
        ),
        #ffffff;

    border-color:
        rgba(79, 70, 229, 0.19);
}

.process-step-final
.process-number {
    color: #ffffff;

    background: #4f46e5;

    border-color: #4f46e5;
}

.process-step-final
.process-icon {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #4f46e5,
            #2563eb
        );

    border-color: transparent;
}


/* Нижний CTA */

.process-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    margin-top: 42px;

    padding: 25px 28px;

    background:
        linear-gradient(
            135deg,
            rgba(79, 70, 229, 0.07),
            rgba(37, 99, 235, 0.035)
        );

    border: 1px solid #e4e5f0;

    border-radius: 20px;
}

.process-bottom-text {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.process-bottom-text span {
    color: #7a7e88;

    font-size: 13px;

    font-weight: 600;
}

.process-bottom-text strong {
    color: #282b32;

    font-size: 17px;

    line-height: 1.4;

    font-weight: 800;
}


/* =========================
   Консультация
========================= */

.consultation-section {
    position: relative;

    overflow: hidden;

    padding: 115px 0;

    background:
        radial-gradient(
            circle at 12% 15%,
            rgba(114, 105, 255, 0.18),
            transparent 31%
        ),
        radial-gradient(
            circle at 86% 85%,
            rgba(37, 99, 235, 0.14),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #202038 0%,
            #24243e 48%,
            #1b1d32 100%
        );
}

.consultation-section::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 48px 48px;
}

.consultation-container {
    position: relative;

    z-index: 2;

    width:
        min(1180px, calc(100% - 48px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(420px, 0.78fr);

    gap: 82px;

    align-items: center;
}


/* Левая часть */

.consultation-content
.section-kicker {
    color: #aaa5ff;
}

.consultation-title {
    max-width: 620px;

    margin: 0 0 24px;

    color: #ffffff;

    font-size:
        clamp(38px, 4vw, 54px);

    line-height: 1.07;

    font-weight: 800;

    letter-spacing: -0.045em;
}

.consultation-lead {
    max-width: 620px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 17px;

    line-height: 1.72;
}

.consultation-points {
    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-top: 35px;
}

.consultation-point {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 17px 18px;

    background:
        rgba(255, 255, 255, 0.055);

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 16px;

    backdrop-filter: blur(10px);
}

.consultation-check {
    width: 35px;
    height: 35px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #635bff,
            #4f46e5
        );

    border-radius: 10px;

    font-size: 15px;

    font-weight: 900;
}

.consultation-point strong {
    display: block;

    margin: 0 0 4px;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.35;

    font-weight: 800;
}

.consultation-point p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 13.5px;

    line-height: 1.55;
}


/* Карточка формы */

.consultation-form-card {
    position: relative;

    padding: 32px;

    background:
        rgba(255, 255, 255, 0.97);

    border:
        1px solid
        rgba(255, 255, 255, 0.45);

    border-radius: 26px;

    box-shadow:
        0 34px 80px
        rgba(5, 8, 30, 0.34),
        0 10px 30px
        rgba(5, 8, 30, 0.16);

    backdrop-filter: blur(18px);
}

.consultation-form-card::before {
    content: "";

    position: absolute;

    left: 30px;

    right: 30px;

    top: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #4f46e5,
            #8b5cf6,
            #2563eb
        );

    border-radius:
        0 0 10px 10px;
}

.consultation-form-header {
    margin-bottom: 27px;
}

.consultation-form-label {
    display: block;

    margin-bottom: 8px;

    color: #4f46e5;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.consultation-form-header h3 {
    margin: 0 0 9px;

    color: #1e2027;

    font-size: 25px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -0.025em;
}

.consultation-form-header p {
    margin: 0;

    color: #777b86;

    font-size: 14px;

    line-height: 1.55;
}


/* Форма */

.consultation-form {
    display: flex;

    flex-direction: column;

    gap: 19px;
}

.form-field {
    display: flex;

    flex-direction: column;
}

.form-field label,
.messenger-fieldset legend {
    margin-bottom: 8px;

    color: #42464f;

    font-size: 13px;

    line-height: 1.35;

    font-weight: 800;
}

.form-field input,
.form-field textarea {
    width: 100%;

    border: 1px solid #dfe1e8;

    outline: none;

    background: #fbfbfd;

    color: #22252b;

    border-radius: 12px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.form-field input {
    min-height: 52px;

    padding: 0 15px;
}

.form-field textarea {
    min-height: 118px;

    padding: 14px 15px;

    resize: vertical;

    line-height: 1.55;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #9a9da6;
}

.form-field input:focus,
.form-field textarea:focus {
    background: #ffffff;

    border-color: #6961ec;

    box-shadow:
        0 0 0 4px
        rgba(79, 70, 229, 0.10);
}

.form-hint {
    display: block;

    margin-top: 7px;

    color: #777b87;

    font-size: 12px;

    line-height: 1.45;
}

.form-error {
    display: none;

    margin-top: 6px;

    color: #d14343;

    font-size: 12px;

    line-height: 1.35;
}


/* Выбор мессенджера */

.messenger-fieldset {
    margin: 0;

    padding: 0;

    border: 0;
}

.messenger-selector {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 9px;
}

.messenger-option {
    display: block;

    cursor: pointer;
}

.messenger-option input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.messenger-button {
    min-height: 52px;

    padding: 8px 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    background: #f7f7fb;

    border: 1px solid #e0e1e8;

    border-radius: 12px;

    color: #444750;

    font-size: 12px;

    line-height: 1.2;

    font-weight: 800;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.messenger-button:hover {
    transform: translateY(-1px);

    background: #ffffff;

    border-color: #cfd0dc;
}

.messenger-option
input:checked +
.messenger-button {
    color: #3730a3;

    background: #f0efff;

    border-color: #aaa5ff;

    box-shadow:
        0 0 0 3px
        rgba(79, 70, 229, 0.08);
}

.messenger-icon {
    min-width: 27px;
    height: 27px;

    padding: 0 5px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    color: #ffffff;

    font-size: 9px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: 0.02em;
}

.messenger-icon-telegram {
    background: #229ed9;
}

.messenger-icon-whatsapp {
    background: #25d366;
}

.messenger-icon-max {
    background:
        linear-gradient(
            135deg,
            #7657ff,
            #b14bd5
        );
}


/* Honeypot */

.consultation-honeypot {
    position: absolute !important;

    left: -9999px !important;

    width: 1px !important;

    height: 1px !important;

    overflow: hidden !important;

    opacity: 0 !important;

    pointer-events: none !important;
}


/* Сообщение */

.consultation-form-message {
    display: none;

    padding: 12px 14px;

    border-radius: 10px;

    font-size: 13px;

    line-height: 1.45;
}


/* Кнопка */

.consultation-submit {
    width: 100%;

    min-height: 56px;

    padding: 0 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #4f46e5 0%,
            #5c54ea 55%,
            #4338ca 100%
        );

    border: 0;

    border-radius: 13px;

    cursor: pointer;

    font-size: 15px;

    font-weight: 800;

    box-shadow:
        0 13px 30px
        rgba(79, 70, 229, 0.25);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.consultation-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 17px 36px
        rgba(79, 70, 229, 0.32);
}

.consultation-submit-arrow {
    font-size: 21px;

    line-height: 1;

    transition:
        transform 0.2s ease;
}

.consultation-submit:hover
.consultation-submit-arrow {
    transform: translateX(4px);
}

.consultation-note {
    margin: -4px 0 0;

    color: #989ba4;

    font-size: 11.5px;

    line-height: 1.5;
}

.consultation-consent {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: #727680;
    font-size: 12px;
    line-height: 1.5;
    cursor: pointer;
}

.consultation-consent input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: #4f46e5;
    cursor: pointer;
}

.consultation-consent a {
    color: #4f46e5;
    text-decoration: underline;
    text-underline-offset: 2px;
}


/* =========================
   FAQ
========================= */

.faq-section {
    position: relative;

    overflow: hidden;

    padding: 110px 0 105px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(79, 70, 229, 0.07),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(37, 99, 235, 0.055),
            transparent 30%
        ),
        #eef0f6;
}

.faq-section::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -250px;

    top: -180px;

    border-radius: 50%;

    background:
        rgba(96, 86, 210, 0.055);

    pointer-events: none;
}

.faq-heading {
    position: relative;

    z-index: 2;

    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

.faq-title {
    max-width: 760px;

    margin: 0 auto 18px;

    color: #181a20;

    font-size:
        clamp(38px, 4vw, 52px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -0.045em;
}

.faq-description {
    max-width: 650px;

    margin: 0 auto;

    color: #6d707b;

    font-size: 17px;

    line-height: 1.7;
}


/* Список FAQ */

.faq-list {
    position: relative;

    z-index: 2;

    max-width: 900px;

    margin: 55px auto 0;

    display: flex;

    flex-direction: column;

    gap: 12px;
}

.faq-item {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f7f6fc 0%,
            #f2f1f8 100%
        );

    border: 1px solid #dfdeea;

    border-radius: 18px;

    box-shadow:
        0 9px 25px
        rgba(35, 38, 60, 0.045);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.faq-item:hover {
    border-color:
        rgba(79, 70, 229, 0.22);

    box-shadow:
        0 15px 32px
        rgba(35, 38, 60, 0.075);

    transform: translateY(-1px);
}

.faq-item[open] {
    background:
        linear-gradient(
            135deg,
            #f8f7ff 0%,
            #f0effb 100%
        );

    border-color:
        rgba(79, 70, 229, 0.30);

    box-shadow:
        0 18px 40px
        rgba(35, 38, 70, 0.085);
}


/* Вопрос */

.faq-question {
    list-style: none;

    min-height: 78px;

    padding: 20px 22px 20px 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 24px;

    cursor: pointer;

    color: #24262d;

    font-family:
        "Montserrat Alternates",
        sans-serif;

    font-size: 17px;

    line-height: 1.35;

    font-weight: 700;

    letter-spacing: -0.018em;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
}

.faq-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #4f46e5;

    background: #e6e4f7;

    border:
        1px solid
        rgba(79, 70, 229, 0.12);

    border-radius: 50%;

    font-family:
        "Nunito Sans",
        sans-serif;

    font-size: 23px;

    line-height: 1;

    font-weight: 500;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.faq-item[open]
.faq-icon {
    color: #ffffff;

    background: #4f46e5;

    transform: rotate(45deg);
}


/* Ответ */

.faq-answer {
    padding:
        0 78px 23px 24px;

    color: #666a75;

    font-size: 15px;

    line-height: 1.7;
}

.faq-answer p {
    margin: 0 0 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}


/* Нижний CTA FAQ */

.faq-bottom {
    position: relative;

    z-index: 2;

    max-width: 900px;

    margin: 34px auto 0;

    padding: 23px 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 28px;

    background:
        rgba(255, 255, 255, 0.48);

    border: 1px solid #dcdde7;

    border-radius: 18px;

    backdrop-filter: blur(10px);
}

.faq-bottom-text {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.faq-bottom-text span {
    color: #747883;

    font-size: 13px;

    font-weight: 600;
}

.faq-bottom-text strong {
    color: #2b2e35;

    font-size: 16px;

    line-height: 1.4;

    font-weight: 800;
}


/* =========================
   Планшеты
========================= */

@media (max-width: 1180px) {

    .hero-container {
        grid-template-columns:
            1fr 0.92fr;

        gap: 55px;
    }

    .hero-title {
        font-size:
            clamp(44px, 5vw, 56px);

        line-height: 1.06;
    }

    .analytics-services {
        grid-template-columns: 1fr;
    }

    .analytics-service {
        min-height: 62px;
    }

    .floating-card-top {
        right: -10px;
    }

    .floating-card-bottom {
        left: -10px;
    }

    .services-grid {
        gap: 18px;
    }

    .service-card {
        padding: 22px;
    }

    .about-container {
        gap: 52px;

        grid-template-columns:
            minmax(340px, 0.85fr)
            minmax(0, 1.15fr);
    }

    .about-photo-badge {
        right: -10px;
    }

    .about-benefit {
        padding: 14px;
    }

    .process-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .process-grid::before {
        display: none;
    }

    .process-step {
        min-height: 330px;
    }

    .consultation-container {
        gap: 55px;

        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(400px, 0.8fr);
    }
}


/* =========================
   Планшет / мобильное меню
========================= */

@media (max-width: 1050px) {

    .header-container {
        width:
            min(100% - 32px, 1380px);

        height: 70px;
    }

    .site-logo-image {
        width: 230px;

        max-height: 54px;
    }

    .main-nav,
    .header-button {
        display: none;
    }

    .mobile-menu-button {
        display: block;

        margin-left: auto;
    }


    /* Hero */

    .hero {
        min-height: auto;
    }

    .hero-container {
        width:
            min(100% - 40px, 760px);

        padding: 75px 0 85px;

        grid-template-columns: 1fr;

        gap: 65px;
    }

    .hero-content {
        max-width: 760px;

        text-align: center;
    }

    .hero-badge {
        margin-left: auto;

        margin-right: auto;
    }

    .hero-title {
        max-width: 760px;

        margin-left: auto;

        margin-right: auto;

        font-size:
            clamp(46px, 7vw, 60px);

        line-height: 1.06;
    }

    .hero-text {
        margin-left: auto;

        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        width:
            min(100%, 620px);

        margin: 0 auto;

        min-height: 500px;
    }

    .analytics-services {
        grid-template-columns:
            repeat(3, 1fr);
    }


    /* Услуги */

    .services-section {
        padding: 90px 0 80px;
    }

    .services-grid {
        grid-template-columns: 1fr;

        width:
            min(100%, 760px);

        margin-left: auto;

        margin-right: auto;
    }

    .service-card {
        min-height: auto;
    }


    /* Обо мне */

    .about-section {
        padding: 90px 0;
    }

    .about-container {
        width:
            min(100% - 40px, 760px);

        grid-template-columns: 1fr;

        gap: 55px;
    }

    .about-media {
        width:
            min(100%, 580px);

        margin: 0 auto;

        transform: none;
    }

    .about-content {
        text-align: center;
    }

    .about-title,
    .about-lead,
    .about-text {
        margin-left: auto;

        margin-right: auto;
    }

    .about-benefits {
        text-align: left;
    }

    .about-actions {
        justify-content: center;
    }


    /* Процесс */

    .process-section {
        padding: 90px 0 85px;
    }

    .process-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        width:
            min(100%, 760px);

        margin-left: auto;

        margin-right: auto;
    }

    .process-step {
        min-height: 320px;
    }

    .process-bottom {
        width:
            min(100%, 760px);

        margin-left: auto;

        margin-right: auto;
    }


    /* Консультация */

    .consultation-section {
        padding: 90px 0;
    }

    .consultation-container {
        width:
            min(100% - 40px, 760px);

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .consultation-content {
        text-align: center;
    }

    .consultation-title,
    .consultation-lead {
        margin-left: auto;

        margin-right: auto;
    }

    .consultation-points {
        text-align: left;
    }

    .consultation-form-card {
        width: 100%;
    }


    /* FAQ */

    .faq-section {
        padding: 90px 0 85px;
    }

    .faq-list,
    .faq-bottom {
        width:
            min(100%, 760px);
    }
}


/* =========================
   Телефоны
========================= */

@media (max-width: 700px) {

    .site-logo-image {
        width: 200px;

        max-height: 48px;
    }


    /* Hero */

    .hero-container {
        width:
            calc(100% - 32px);

        padding: 58px 0 72px;

        gap: 48px;
    }

    .hero-title {
        font-size:
            clamp(38px, 10.8vw, 50px);

        line-height: 1.07;

        letter-spacing: -0.03em;
    }

    .hero-lead {
        font-size: 21px;
    }

    .hero-text {
        font-size: 16px;

        line-height: 1.65;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-features {
        gap: 13px 18px;
    }

    .hero-visual {
        min-height: auto;
    }

    .analytics-card {
        padding: 19px;

        border-radius: 19px;
    }

    .analytics-header {
        flex-direction: column;
    }

    .analytics-header h2 {
        font-size: 19px;
    }

    .analytics-chart {
        height: 180px;
    }

    .analytics-services {
        grid-template-columns: 1fr;
    }

    .floating-card {
        display: none;
    }


    /* Услуги */

    .services-section {
        padding: 75px 0 65px;
    }

    .section-container {
        width:
            calc(100% - 32px);
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .services-grid {
        margin-top: 40px;
    }

    .service-card {
        padding: 22px;

        border-radius: 20px;
    }

    .service-card h3 {
        font-size: 26px;
    }

    .service-card-link {
        align-items: flex-start;
    }

    .services-bottom {
        align-items: flex-start;

        justify-content: flex-start;

        padding: 18px;
    }


    /* Обо мне */

    .about-section {
        padding: 72px 0;
    }

    .about-container {
        width:
            calc(100% - 32px);

        gap: 42px;
    }

    .about-photo-card {
        border-radius: 22px;
    }

    .about-photo {
        aspect-ratio: 1 / 1.05;
    }

    .about-photo-badge {
        position: relative;

        right: auto;

        bottom: auto;

        width:
            calc(100% - 26px);

        max-width: none;

        margin:
            -24px auto 0;
    }

    .about-title {
        font-size: 37px;

        line-height: 1.08;
    }

    .about-lead {
        font-size: 17px;
    }

    .about-text {
        font-size: 15px;
    }

    .about-benefits {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .about-benefit {
        min-height: auto;

        padding: 15px;
    }

    .about-actions {
        flex-direction: column;

        align-items: stretch;

        gap: 16px;
    }

    .about-more-link {
        justify-content: center;
    }


    /* Процесс */

    .process-section {
        padding: 72px 0 68px;
    }

    .process-heading {
        text-align: center;
    }

    .process-title {
        font-size: 35px;

        line-height: 1.1;
    }

    .process-description {
        font-size: 16px;

        line-height: 1.65;
    }

    .process-grid {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-top: 42px;
    }

    .process-step {
        min-height: auto;

        padding: 20px;

        border-radius: 19px;
    }

    .process-step-top {
        margin-bottom: 20px;
    }

    .process-step h3 {
        font-size: 20px;
    }

    .process-step p {
        font-size: 14px;
    }

    .process-result {
        margin-top: 22px;
    }

    .process-bottom {
        flex-direction: column;

        align-items: stretch;

        gap: 20px;

        margin-top: 28px;

        padding: 21px;

        text-align: center;
    }

    .process-bottom .button {
        width: 100%;
    }


    /* Консультация */

    .consultation-section {
        padding: 72px 0;
    }

    .consultation-container {
        width:
            calc(100% - 32px);

        gap: 40px;
    }

    .consultation-title {
        font-size: 35px;

        line-height: 1.1;
    }

    .consultation-lead {
        font-size: 16px;

        line-height: 1.65;
    }

    .consultation-points {
        margin-top: 27px;

        gap: 10px;
    }

    .consultation-point {
        padding: 15px;
    }

    .consultation-form-card {
        padding: 23px 19px;

        border-radius: 21px;
    }

    .consultation-form-header h3 {
        font-size: 22px;
    }

    .messenger-selector {
        grid-template-columns: 1fr;
    }

    .messenger-button {
        justify-content: flex-start;

        padding-left: 14px;
    }


    /* FAQ */

    .faq-section {
        padding: 72px 0 68px;
    }

    .faq-title {
        font-size: 35px;

        line-height: 1.1;
    }

    .faq-description {
        font-size: 16px;

        line-height: 1.65;
    }

    .faq-list {
        margin-top: 40px;

        gap: 10px;
    }

    .faq-item {
        border-radius: 16px;
    }

    .faq-question {
        min-height: 70px;

        padding:
            18px 16px 18px 18px;

        gap: 16px;

        font-size: 15px;

        line-height: 1.4;
    }

    .faq-icon {
        width: 34px;

        height: 34px;

        font-size: 21px;
    }

    .faq-answer {
        padding:
            0 18px 19px;

        font-size: 14px;

        line-height: 1.65;
    }

    .faq-bottom {
        flex-direction: column;

        align-items: stretch;

        gap: 18px;

        margin-top: 26px;

        padding: 20px;

        text-align: center;
    }

    .faq-bottom .button {
        width: 100%;
    }
}


/* =========================
   Маленькие телефоны
========================= */

@media (max-width: 480px) {

    .header-container {
        width:
            calc(100% - 28px);
    }

    .site-logo-image {
        width: 200px;

        max-height: 46px;
    }

    .hero-badge {
        font-size: 10px;
    }

    .hero-title {
        font-size: 39px;

        line-height: 1.08;

        letter-spacing: -0.025em;
    }

    .hero-features {
        flex-direction: column;

        align-items: center;
    }

    .service-card-top {
        margin-bottom: 22px;
    }

    .service-card-icon {
        width: 52px;

        height: 52px;
    }

    .about-title {
        font-size: 34px;
    }

    .about-benefit {
        padding: 14px;
    }

    .process-title {
        font-size: 32px;
    }

    .process-step {
        padding: 18px;
    }

    .process-number {
        min-width: 46px;

        height: 32px;
    }

    .process-icon {
        width: 42px;

        height: 42px;

        font-size: 17px;
    }

    .consultation-title {
        font-size: 32px;
    }

    .consultation-form-card {
        padding: 21px 16px;
    }

    .consultation-form-header h3 {
        font-size: 20px;
    }

    .form-field input {
        min-height: 50px;
    }

    .consultation-submit {
        min-height: 54px;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-question {
        padding:
            17px 14px 17px 16px;

        font-size: 14.5px;
    }

    .faq-answer {
        padding:
            0 16px 18px;
    }
}


/* =========================
   Футер
========================= */

.site-footer {
    position: relative;
    overflow: hidden;

    padding: 78px 0 28px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 12% 15%,
            rgba(99, 91, 255, 0.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 90%,
            rgba(37, 99, 235, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #171729 0%,
            #1d1d34 48%,
            #151625 100%
        );
}

.site-footer::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        );

    background-size: 48px 48px;
}

.footer-container {
    position: relative;

    z-index: 2;

    width:
        min(1180px, calc(100% - 48px));

    margin: 0 auto;
}


/* Верх футера */

.footer-main {
    display: grid;

    grid-template-columns:
        minmax(280px, 1.25fr)
        minmax(160px, 0.62fr)
        minmax(180px, 0.72fr)
        minmax(240px, 0.9fr);

    gap: 55px;

    padding-bottom: 55px;
}


/* Бренд */

.footer-brand {
    max-width: 390px;
}

.footer-logo {
    display: inline-flex;

    align-items: center;

    margin-bottom: 24px;
}

.footer-logo-image {
    display: block;

    width: 260px;

    max-width: 100%;

    height: auto;

    object-fit: contain;
}

.footer-description {
    max-width: 370px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.63);

    font-size: 14.5px;

    line-height: 1.7;
}

.footer-specialization {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 24px;
}

.footer-specialization span {
    display: inline-flex;

    align-items: center;

    min-height: 32px;

    padding: 0 11px;

    color:
        rgba(255, 255, 255, 0.78);

    background:
        rgba(255, 255, 255, 0.055);

    border:
        1px solid
        rgba(255, 255, 255, 0.075);

    border-radius: 999px;

    font-size: 11px;

    line-height: 1;

    font-weight: 700;
}


/* Колонки футера */

.footer-column {
    min-width: 0;
}

.footer-column-title {
    margin: 0 0 20px;

    color: #ffffff;

    font-family:
        "Montserrat Alternates",
        sans-serif;

    font-size: 15px;

    line-height: 1.3;

    font-weight: 700;
}

.footer-nav,
.footer-links-list {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}

.footer-links-list .footer-menu {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;

    margin: 0;

    padding: 0;

    list-style: none;
}

.footer-links-list .footer-menu li {
    margin: 0;

    padding: 0;
}

.footer-nav a,
.footer-links-list a {
    position: relative;

    display: block;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 14px;

    line-height: 1.45;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-nav a:hover,
.footer-links-list a:hover {
    color: #ffffff;

    transform: translateX(3px);
}


/* Контакты футера */

.footer-contact-text {
    margin: 0 0 19px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 13.5px;

    line-height: 1.6;
}

.footer-messengers {
    position: relative;

    z-index: 20;

    display: flex;

    flex-direction: column;

    gap: 9px;

    pointer-events: auto;
}

.footer-messenger {
    position: relative;

    z-index: 21;

    min-height: 46px;

    padding: 0 13px;

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        rgba(255, 255, 255, 0.88);

    background:
        rgba(255, 255, 255, 0.055);

    border:
        1px solid
        rgba(255, 255, 255, 0.075);

    border-radius: 12px;

    font-size: 13px;

    font-weight: 700;

    pointer-events: auto;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.footer-messenger > * {
    pointer-events: none;
}

.footer-messenger:hover {
    transform: translateY(-2px);

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.09);

    border-color:
        rgba(255, 255, 255, 0.15);
}

.footer-messenger-icon {
    min-width: 28px;

    height: 28px;

    padding: 0 5px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    border-radius: 8px;

    font-size: 9px;

    line-height: 1;

    font-weight: 900;
}

.footer-messenger-telegram
.footer-messenger-icon {
    background: #229ed9;
}

.footer-messenger-whatsapp
.footer-messenger-icon {
    background: #25d366;
}

.footer-messenger-max
.footer-messenger-icon {
    background:
        linear-gradient(
            135deg,
            #7657ff,
            #b14bd5
        );
}


/* CTA футера */

.footer-cta {
    margin-top: 16px;
}

.footer-consultation-link {
    min-height: 48px;

    padding: 0 16px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #4f46e5,
            #5b52eb
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 12px;

    font-size: 13px;

    font-weight: 800;

    box-shadow:
        0 12px 27px
        rgba(79, 70, 229, 0.22);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.footer-consultation-link:hover {
    transform: translateY(-2px);

    background:
        linear-gradient(
            135deg,
            #5c54ea,
            #4338ca
        );

    box-shadow:
        0 16px 32px
        rgba(79, 70, 229, 0.30);
}

.footer-consultation-link span {
    font-size: 18px;

    line-height: 1;

    transition:
        transform 0.2s ease;
}

.footer-consultation-link:hover span {
    transform: translateX(3px);
}


/* Нижняя часть футера */

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 28px;

    padding-top: 26px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.09);
}

.footer-copyright {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.43);

    font-size: 12.5px;

    line-height: 1.5;
}

.footer-legal {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 18px;
}

.footer-legal a {
    color:
        rgba(255, 255, 255, 0.43);

    font-size: 12.5px;

    line-height: 1.5;

    transition:
        color 0.2s ease;
}

.footer-legal a:hover {
    color:
        rgba(255, 255, 255, 0.88);
}


/* =========================
   Футер — планшеты
========================= */

@media (max-width: 1050px) {

    .site-footer {
        padding: 68px 0 26px;
    }

    .footer-container {
        width:
            min(100% - 40px, 760px);
    }

    .footer-main {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 45px 50px;

        padding-bottom: 46px;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-description {
        max-width: 420px;
    }
}


/* =========================
   Футер — телефоны
========================= */

@media (max-width: 700px) {

    .site-footer {
        padding: 58px 0 24px;
    }

    .footer-container {
        width:
            calc(100% - 32px);
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 38px;
    }

    .footer-logo-image {
        width: 235px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-description {
        max-width: 100%;

        font-size: 14px;
    }

    .footer-specialization {
        margin-top: 20px;
    }

    .footer-column-title {
        margin-bottom: 15px;
    }

    .footer-nav {
        gap: 10px;
    }

    .footer-messengers {
        width: 100%;
    }

    .footer-messenger {
        width: 100%;
    }

    .footer-consultation-link {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 14px;

        padding-top: 22px;
    }

    .footer-legal {
        justify-content: flex-start;

        gap: 10px 17px;
    }
}


/* =========================
   Футер — маленькие телефоны
========================= */

@media (max-width: 480px) {

    .footer-container {
        width:
            calc(100% - 28px);
    }

    .footer-logo-image {
        width: 220px;
    }

    .footer-specialization span {
        font-size: 10.5px;
    }

    .footer-messenger {
        min-height: 45px;
    }
}
/* MOBILE MENU */
body.mobile-menu-open{overflow:hidden}
@media(max-width:1050px){
.site-header{overflow:visible}.header-container{position:relative}.mobile-menu-button{position:relative;z-index:1002;display:block;margin-left:auto}.mobile-menu-button span{transition:transform .22s ease,opacity .22s ease}.mobile-menu-button.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}.mobile-menu-button.is-open span:nth-child(2){opacity:0}.mobile-menu-button.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.main-nav{position:absolute;top:calc(100% + 1px);right:0;left:0;z-index:1001;display:flex;max-height:calc(100vh - 82px);padding:18px 24px 24px;overflow-y:auto;flex-direction:column;align-items:stretch;gap:0;background:#fff;border:1px solid #e6e8ef;border-top:0;border-radius:0 0 18px 18px;box-shadow:0 24px 50px rgba(18,24,40,.14);opacity:0;visibility:hidden;pointer-events:none;transform:translateY(-10px);transition:opacity .22s ease,visibility .22s ease,transform .22s ease}.main-nav.is-open{opacity:1;visibility:visible;pointer-events:auto;transform:none}.main-nav>a,.nav-dropdown>a{display:flex;min-height:50px;padding:13px 4px;align-items:center;justify-content:space-between;border-bottom:1px solid #eceef3}.nav-dropdown>a::after{content:"+";font-size:20px}.nav-dropdown.is-open>a::after{transform:rotate(45deg)}.dropdown-menu{position:static;display:none;min-width:0;padding:6px 0 10px 14px;background:#f7f8fc;border:0;box-shadow:none;opacity:1;visibility:visible;transform:none}.nav-dropdown.is-open .dropdown-menu{display:block}}
@media(max-width:700px){.main-nav{position:fixed;top:70px;right:12px;left:12px;padding:14px 18px 20px;border-top:1px solid #e6e8ef;border-radius:16px}}

/* SERVICE ICONS AND ADDITIONAL SERVICES */
.service-card-icon{position:relative;isolation:isolate;overflow:visible}.service-card-icon svg{width:32px;height:32px;fill:none;stroke:currentColor;stroke-width:3;stroke-linecap:round;stroke-linejoin:round}.service-card-direct .service-card-icon{color:#9a5700;background:linear-gradient(135deg,#fff1a8,#ffd45c);box-shadow:0 10px 24px rgba(244,180,0,.24)}.service-card-yandex .service-card-icon{color:#4338ca;background:linear-gradient(135deg,#eeeaff,#d9d3ff);box-shadow:0 10px 24px rgba(79,70,229,.22)}.service-card-google .service-card-icon{color:#1261c9;background:linear-gradient(135deg,#ddebff,#d8f8e4);box-shadow:0 10px 24px rgba(37,99,235,.2)}
.additional-services{margin-top:68px;padding:38px;background:linear-gradient(135deg,#f8f8ff,#f4f6fb);border:1px solid #e4e5ef;border-radius:26px}.additional-services-heading{max-width:720px;margin-bottom:28px}.additional-services-heading h3{margin:0 0 10px;font-size:clamp(25px,3vw,36px);line-height:1.15}.additional-services-heading p{margin:0;color:#696d76}.additional-services-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:13px}.additional-service-card{min-height:104px;padding:17px;display:grid;grid-template-columns:44px minmax(0,1fr) auto;align-items:center;gap:13px;background:#fff;border:1px solid #e4e5ed;border-radius:16px;transition:.22s ease}.additional-service-card:hover{transform:translateY(-4px);border-color:#c9c5ff;box-shadow:0 17px 34px rgba(32,36,60,.09)}.additional-service-icon{width:44px;height:44px;display:flex;align-items:center;justify-content:center;color:#4f46e5;background:#efedff;border-radius:12px}.additional-service-icon svg{width:25px;height:25px;fill:none;stroke:currentColor;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}.additional-service-card strong,.additional-service-card small{display:block}.additional-service-card strong{font-size:14px;color:#262930}.additional-service-card small{margin-top:4px;color:#828690;font-size:11.5px}.additional-service-card b{color:#4f46e5;font-size:18px}
@media(max-width:1050px){.additional-services-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:700px){.additional-services{margin-top:48px;padding:25px 18px}.additional-services-grid{grid-template-columns:1fr}}


/* =========================================================
   WORDPRESS MENU
========================================================= */

.main-menu,
.main-menu .sub-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    display: flex;
    align-items: center;
    min-height: 82px;
    color: #34373d;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-menu > li > a:hover,
.main-menu > li.current-menu-item > a,
.main-menu > li.current-menu-ancestor > a {
    color: #4f46e5;
}

.submenu-toggle {
    position: absolute;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.main-menu > .menu-item-has-children > .submenu-toggle {
    top: 50%;
    right: -17px;
    width: 18px;
    height: 24px;
    padding: 0;
    transform: translateY(-50%);
}

.submenu-toggle span::before,
.submenu-toggle span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.2s ease;
}

.submenu-toggle span::before {
    transform: translate(-78%, -50%) rotate(45deg);
}

.submenu-toggle span::after {
    transform: translate(-22%, -50%) rotate(-45deg);
}

.main-menu > .menu-item-has-children > .sub-menu {
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    z-index: 20;
    width: min(760px, calc(100vw - 48px));
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    background: #ffffff;
    border: 1px solid #e5e7ef;
    border-radius: 18px;
    box-shadow: 0 22px 55px rgba(18, 24, 40, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.main-menu > .menu-item-has-children:hover > .sub-menu,
.main-menu > .menu-item-has-children:focus-within > .sub-menu,
.main-menu > .menu-item-has-children.is-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.main-menu > .menu-item-has-children > .sub-menu > li {
    position: relative;
    min-width: 0;
    padding: 16px;
    background: #f8f8fc;
    border: 1px solid #ececf3;
    border-radius: 14px;
}

.main-menu > .menu-item-has-children > .sub-menu > li > a {
    display: block;
    margin-bottom: 10px;
    color: #20232a;
    font-family: "Montserrat Alternates", sans-serif;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
}

.main-menu > .menu-item-has-children > .sub-menu > li > .submenu-toggle {
    display: none;
}

.main-menu .sub-menu .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.main-menu .sub-menu .sub-menu a {
    display: block;
    padding: 8px 9px;
    color: #626670;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.main-menu .sub-menu .sub-menu a:hover {
    color: #4f46e5;
    background: #eeedff;
}

@media (max-width: 1180px) and (min-width: 1051px) {

    .main-menu {
        gap: 18px;
    }

    .main-menu > li > a {
        font-size: 15px;
    }
}

@media (max-width: 1050px) {

    .main-nav .main-menu {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-menu > li {
        position: relative;
        border-bottom: 1px solid #eceef3;
    }

    .main-menu > li > a {
        min-height: 52px;
        padding: 13px 48px 13px 5px;
        font-size: 17px;
    }

    .main-menu .submenu-toggle,
    .main-menu > .menu-item-has-children > .submenu-toggle {
        position: absolute;
        top: 7px;
        right: 0;
        z-index: 2;
        display: block;
        width: 42px;
        height: 40px;
        padding: 0;
        color: #34373d;
        transform: none;
    }

    .main-menu .submenu-toggle span::before {
        width: 12px;
        transform: translate(-50%, -50%);
    }

    .main-menu .submenu-toggle span::after {
        width: 12px;
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .main-menu .menu-item-has-children.is-open > .submenu-toggle span::after {
        transform: translate(-50%, -50%) rotate(0);
    }

    .main-menu > .menu-item-has-children > .sub-menu {
        position: static;
        width: auto;
        padding: 8px 0 13px 14px;
        display: none;
        grid-template-columns: 1fr;
        gap: 7px;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: none;
    }

    .main-menu > .menu-item-has-children:hover > .sub-menu,
    .main-menu > .menu-item-has-children:focus-within > .sub-menu {
        display: none;
        transform: none;
    }

    .main-menu > .menu-item-has-children.is-open > .sub-menu {
        display: grid;
        transform: none;
    }

    .main-menu > .menu-item-has-children > .sub-menu > li {
        padding: 0;
        background: #f7f8fc;
        border: 1px solid #e8e9f0;
        border-radius: 12px;
    }

    .main-menu > .menu-item-has-children > .sub-menu > li > a {
        min-height: 47px;
        margin: 0;
        padding: 13px 48px 12px 13px;
        display: flex;
        align-items: center;
        font-size: 15px;
    }

    .main-menu .sub-menu .sub-menu {
        display: none;
        padding: 0 8px 10px;
    }

    .main-menu .sub-menu .is-open > .sub-menu {
        display: flex;
    }

    .main-menu .sub-menu .sub-menu a {
        padding: 9px 10px;
        background: #ffffff;
        border: 1px solid #ececf3;
        font-size: 15px;
    }
}
