/* ============================================
   ПОСАДОЧНЫЕ СТРАНИЦЫ - СТИЛИ
   ============================================ */

.landing-page-standard {
    background: #fff;
    scroll-behavior: smooth;
}

/* Плавное появление секций при скролле */
.landing-block,
.landing-main-section,
.landing-advantages,
.landing-process,
.landing-cases,
.landing-faq,
.landing-contacts {
    opacity: 1;
    animation: fadeInSection 0.8s ease-out;
}

@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === HERO СЕКЦИЯ === */
.landing-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 120px 20px 0;
    padding-bottom: 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #1A6BBD 0%, #2986E3 50%, #1e3c72 100%);
    margin-bottom: 0;
}

.landing-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    display: none;
}

.landing-hero__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 120px;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 1;
}

.landing-hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 120px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 70%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.landing-hero__content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.landing-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: var(--font-14);
    font-weight: 600;
    color: var(--white);
    animation: fadeInDown 0.6s ease-out;
}

.landing-hero__badge-icon {
    font-size: 18px;
}

.landing-hero__badge-text {
    letter-spacing: 0.5px;
}

.landing-hero__title {
    font-size: var(--font-54);
    font-weight: 800;
    margin: 0 0 30px 0;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.landing-hero__subtitle {
    font-size: var(--font-22);
    line-height: 1.8;
    margin: 0 0 50px 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.landing-hero__features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.landing-hero__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.landing-hero__feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.landing-hero__feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.landing-hero__feature-text {
    font-size: var(--font-16);
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
}

.wave {
    width: 100%;
    height: 100%;
    display: block;
    preserveAspectRatio: none;
}

.landing-hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
    height: 77px;
    z-index: 3;
    pointer-events: none;
}

.wave-bottom {
    width: 100%;
    height: 100%;
}


.landing-hero__wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === ОСНОВНАЯ СЕКЦИЯ === */
.landing-main-section {
    padding: 140px 20px;
    background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.landing-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(26, 107, 189, 0.2) 50%, transparent 100%);
}

.landing-main-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 107, 189, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.landing-main-content {
    position: relative;
    z-index: 1;
}

.landing-h2 {
    font-size: var(--font-48);
    font-weight: 700;
    color: var(--grad-black);
    margin: 0 0 60px 0;
    text-align: center;
    position: relative;
    padding-bottom: 25px;
}

.landing-h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--grad-blue);
    border-radius: 2px;
}

.landing-main-text {
    font-size: var(--font-20);
    line-height: 1.9;
    color: var(--dgray);
    max-width: 1200px;
    margin: 0 auto;
    letter-spacing: 0.2px;
}

.landing-main-text__single {
    text-align: center;
}

.landing-main-text__single p {
    margin: 0 0 25px 0;
    text-align: center;
}

.landing-main-text__single p:last-child {
    margin-bottom: 0;
}

.landing-main-text__wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.landing-main-text__column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.landing-main-text__column p {
    position: relative;
    padding-left: 35px;
    text-align: left;
    margin: 0;
    line-height: 1.9;
}

.landing-main-text__column p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--grad-blue);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(26, 107, 189, 0.1);
}

.landing-main-text__divider {
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 107, 189, 0.2) 20%, rgba(26, 107, 189, 0.2) 80%, transparent 100%);
    align-self: stretch;
    margin: 20px 0;
}

/* === CTA КНОПКА === */
.landing-main-cta {
    margin-top: 60px;
    text-align: center;
}

.landing-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--grad-blue);
    color: var(--white);
    font-size: var(--font-18);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(26, 107, 189, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.landing-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 107, 189, 0.4);
}

.landing-cta-button__icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.landing-cta-button:hover .landing-cta-button__icon {
    transform: translateX(5px);
}

/* === БЛОК СТАТИСТИКИ === */
.landing-stats {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1A6BBD 0%, #2986E3 100%);
    position: relative;
    overflow: hidden;
}

.landing-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: var(--font-64);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.2);
    animation: numberPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    transition: all 0.3s ease;
    z-index: 1;
}

.stat-number:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.6));
}

.stat-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 150%;
    background: radial-gradient(ellipse at center,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.1) 40%,
            transparent 70%);
    z-index: -2;
    animation: glowPulse 3s ease-in-out infinite;
    border-radius: 50%;
}


.stat-number.animated {
    animation: numberAppear 0.8s ease-out, numberPulse 2s ease-in-out 0.8s infinite;
}

@keyframes numberAppear {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }

    60% {
        transform: scale(1.1) translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes numberPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.stat-label {
    font-size: var(--font-18);
    font-weight: 500;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

/* === БЛОКИ КОНТЕНТА === */
.landing-block {
    padding: 100px 20px;
    position: relative;
}

.landing-block::before,
.landing-block::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(26, 107, 189, 0.1) 50%, transparent 100%);
}

.landing-block::before {
    top: 0;
}

.landing-block::after {
    bottom: 0;
}

.landing-services {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
}

/* === СЕТКА УСЛУГ === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 107, 189, 0.15);
    border-color: rgba(26, 107, 189, 0.2);
}

.service-card__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A6BBD 0%, #2986E3 100%);
    border-radius: 18px;
    margin-bottom: 20px;
    color: var(--white);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(26, 107, 189, 0.25);
}

.service-card:hover .service-card__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(26, 107, 189, 0.35);
}

.service-card__icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.service-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__title {
    font-size: var(--font-18);
    font-weight: 600;
    color: var(--grad-black);
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

/* === ТЕКСТ ПОСЛЕ УСЛУГ === */
.services-text-after {
    margin-top: 60px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-text-after p {
    font-size: var(--font-18);
    line-height: 1.9;
    color: var(--dgray);
    margin: 0;
    letter-spacing: 0.2px;
}

.landing-audience {
    background: linear-gradient(135deg, #1A6BBD 0%, #2986E3 30%, #1e3c72 70%, #2a5298 100%);
    position: relative;
    overflow: hidden;
}

.landing-audience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    z-index: 0;
    opacity: 0.8;
}

.landing-audience .landing-container {
    position: relative;
    z-index: 1;
}

.landing-audience .block-title {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.landing-audience .block-title::after {
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    width: 80px;
    height: 4px;
}

.landing-audience .audience-text-after p {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* === СЕТКА АУДИТОРИИ === */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.audience-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 107, 189, 0.25);
    border-color: rgba(26, 107, 189, 0.4);
    background: rgba(255, 255, 255, 1);
}

.audience-card__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A6BBD 0%, #2986E3 100%);
    border-radius: 18px;
    margin-bottom: 20px;
    color: var(--white);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(26, 107, 189, 0.25);
}

.audience-card:hover .audience-card__icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(26, 107, 189, 0.35);
}

.audience-card__icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.audience-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.audience-card__title {
    font-size: var(--font-18);
    font-weight: 600;
    color: var(--grad-black);
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

/* === ТЕКСТ ПОСЛЕ АУДИТОРИИ === */
.audience-text-after {
    margin-top: 60px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.audience-text-after p {
    font-size: var(--font-18);
    line-height: 1.9;
    color: var(--dgray);
    margin: 0;
    letter-spacing: 0.2px;
}

.landing-tasks {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
}

/* === СЕТКА ЗАДАЧ === */
.tasks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.task-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.task-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.task-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 107, 189, 0.15);
    border-color: rgba(26, 107, 189, 0.2);
}

.task-card__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A6BBD 0%, #2986E3 100%);
    border-radius: 18px;
    margin-bottom: 20px;
    color: var(--white);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(26, 107, 189, 0.25);
}

.task-card:hover .task-card__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(26, 107, 189, 0.35);
}

.task-card__icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.task-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.task-card__title {
    font-size: var(--font-18);
    font-weight: 600;
    color: var(--grad-black);
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

/* === ТЕКСТ ПОСЛЕ ЗАДАЧ === */
.tasks-text-after {
    margin-top: 60px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.tasks-text-after p {
    font-size: var(--font-18);
    line-height: 1.9;
    color: var(--dgray);
    margin: 0;
    letter-spacing: 0.2px;
}

.block-title {
    font-size: var(--font-36);
    font-weight: 700;
    color: var(--grad-black);
    margin: 0 0 60px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 25px;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--grad-blue);
    border-radius: 2px;
}

.block-icon {
    font-size: 48px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.block-content {
    max-width: 1000px;
    margin: 0 auto;
}

.block-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.block-content li {
    background: var(--white);
    padding: 28px 32px;
    border-radius: 16px;
    border-left: 5px solid var(--blue);
    font-size: var(--font-18);
    line-height: 1.8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.1px;
}

.block-content li::before {
    content: '✓';
    position: absolute;
    right: 20px;
    top: 25px;
    color: var(--blue);
    font-size: 24px;
    opacity: 0.2;
    font-weight: bold;
}

.landing-services .block-content li {
    border-left-color: var(--blue);
}

.landing-services .block-content li::before {
    color: var(--blue);
}

.landing-audience .block-content li {
    border-left-color: var(--blue);
}

.landing-audience .block-content li::before {
    color: var(--blue);
}

.landing-tasks .block-content li {
    border-left-color: var(--blue);
}

.landing-tasks .block-content li::before {
    color: var(--blue);
}

.block-content li:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-width: 6px;
}

.block-content p {
    font-size: var(--font-18);
    line-height: 1.9;
    color: var(--dgray);
    margin-bottom: 20px;
    letter-spacing: 0.1px;
}

.landing-content {
    padding: 100px 20px;
    background: var(--white);
}

.landing-content p {
    font-size: var(--font-18);
    line-height: 1.8;
    color: var(--dgray);
    margin-bottom: 25px;
}

/* === ПРЕИМУЩЕСТВА === */
.landing-advantages {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1A6BBD 100%);
    position: relative;
    overflow: visible;
}

.landing-advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 0;
}

.advantages-title {
    font-size: var(--font-48);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 70px 0;
    text-align: center;
    position: relative;
    padding-bottom: 25px;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.advantages-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 2px;
}

.advantages-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: start;
    min-height: 500px;
}

.advantages-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    z-index: 2;
    align-self: start;
    height: fit-content;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 35px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100%;
}

/* Уменьшаем отступы в обычных карточках (не sticky) */
.advantages-grid .advantage-card {
    padding: 25px 28px;
}

.advantage-card--sticky {
    padding: 35px 30px;
    min-height: auto;
    text-align: left;
    align-items: flex-start;
    background: transparent;
    box-shadow: none;
    border: none;
}

.advantage-card--sticky:hover {
    transform: translateY(10) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    background: rgba(255, 255, 255, 0) !important;

}

.advantage-card--sticky .advantage-card__icon {
    display: none;
}

.advantage-card--sticky .advantage-card__content {
    text-align: left;
    gap: 20px;
}

.advantage-card--sticky .advantage-card__title {
    font-size: var(--font-24);
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 700;
}

.advantage-card--sticky .advantage-card__text {
    font-size: var(--font-17);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.advantage-card--sticky .advantage-card__additional-text {
    margin-top: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.advantage-card--sticky .advantage-card__additional-text p {
    font-size: var(--font-16);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    letter-spacing: 0.2px;
}

/* Стили для дополнительного текста теперь внутри sticky карточки */

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #1A6BBD 0%, #2986E3 50%, #fbbf24 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
    border-radius: 20px 0 0 20px;
}

.advantage-card--sticky::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0px;
    background: transparent;
    transform: scaleY(0);
    transform-origin: top;
    transition: none;
    border-radius: 0;

}

.advantage-card:hover::before {
    transform: scaleY(1);
}

.advantage-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 107, 189, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advantage-card:hover::after {
    opacity: 1;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 1);
}

.advantage-card__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A6BBD 0%, #2986E3 100%);
    border-radius: 18px;
    color: var(--white);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(26, 107, 189, 0.25);
    position: relative;
    z-index: 1;
    margin: 0 auto 25px;
    flex-shrink: 0;
}

/* Скрываем иконки в обычных карточках (не в sticky) */
.advantages-grid .advantage-card__icon {
    display: none;
}

.advantage-card--large .advantage-card__icon {
    width: 90px;
    height: 90px;
    margin: 0;
}

.advantage-card:hover .advantage-card__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(26, 107, 189, 0.35);
}

.advantage-card__icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.advantage-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}

/* Уменьшаем промежутки в обычных карточках */
.advantages-grid .advantage-card__content {
    gap: 10px;
}

.advantage-card__number {
    font-size: var(--font-56);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #1A6BBD 0%, #2986E3 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-card--large .advantage-card__number {
    font-size: var(--font-72);
    margin-bottom: 10px;
}

.advantage-card__title {
    font-size: var(--font-20);
    font-weight: 700;
    color: var(--grad-black);
    margin: 0;
    line-height: 1.3;
}

/* Уменьшаем размеры в обычных карточках */
.advantages-grid .advantage-card__title {
    font-size: var(--font-18);
    margin-bottom: 0;
}

.advantage-card--large .advantage-card__title {
    font-size: var(--font-28);
    margin-bottom: 5px;
}

.advantage-card__text {
    font-size: var(--font-16);
    line-height: 1.8;
    color: var(--dgray);
    margin: 0;
    letter-spacing: 0.1px;
}

/* Уменьшаем размеры текста в обычных карточках */
.advantages-grid .advantage-card__text {
    font-size: var(--font-15);
    line-height: 1.6;
    margin: 0;
}

.advantage-card--large .advantage-card__text {
    font-size: var(--font-18);
    line-height: 1.9;
}

.advantage-card__decorative {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.advantage-card__pattern {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: patternFloat 8s ease-in-out infinite;
}

@keyframes patternFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, 20px) scale(1.1);
    }
}

/* === ТЕКСТ ПОСЛЕ ПРЕИМУЩЕСТВ === */
.advantages-text-after {
    margin-top: 70px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.advantages-text-after p {
    font-size: var(--font-18);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* === ЭТАПЫ РАБОТЫ === */
.landing-process {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.process-title {
    font-size: var(--font-48);
    font-weight: 700;
    color: var(--grad-black);
    margin: 0 0 30px 0;
    text-align: center;
    position: relative;
    padding-bottom: 25px;
}

.process-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--grad-blue);
    border-radius: 2px;
}

.process-intro {
    font-size: var(--font-20);
    line-height: 1.9;
    color: var(--dgray);
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px auto;
    letter-spacing: 0.2px;
}

.steps-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    bottom: 70px;
    width: 3px;
    background: var(--grad-blue);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(26, 107, 189, 0.3);
}

.step-item {
    display: flex;
    gap: 35px;
    margin-bottom: 60px;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--grad-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-32);
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(26, 107, 189, 0.4);
    z-index: 1;
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(26, 107, 189, 0.5);
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--grad-blue);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: top;
}

.step-item:hover .step-content::before {
    transform: scaleY(1);
}

.step-item:hover .step-content {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--blue);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.step-title {
    font-size: var(--font-26);
    font-weight: 700;
    color: var(--grad-black);
    margin: 0;
}

.step-timing {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--grad-blue);
    color: var(--white);
    border-radius: 25px;
    font-size: var(--font-14);
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(26, 107, 189, 0.3);
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.step-detail {
    display: flex;
    gap: 12px;
    padding: 15px 20px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid var(--blue);
    transition: all 0.3s ease;
    align-items: center;
}

.step-detail:hover {
    background: #f0f7ff;
    transform: translateX(5px);
}

.detail-label {
    font-weight: 600;
    color: var(--grad-black);
    flex-shrink: 0;
    font-size: var(--font-16);
}

.detail-text {
    color: var(--dgray);
    line-height: 1.8;
    font-size: var(--font-16);
    letter-spacing: 0.1px;
}

.step-result {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 12px;
    border-left: 4px solid var(--green);
    margin-top: 15px;
    box-shadow: 0 2px 8px rgba(31, 145, 16, 0.15);
    align-items: center;
}

.result-label {
    font-weight: 700;
    color: #155724;
    flex-shrink: 0;
    font-size: var(--font-16);
    line-height: 16px;
}

.result-text {
    color: #155724;
    font-weight: 600;
    line-height: 1.8;
    font-size: var(--font-16);
    letter-spacing: 0.1px;
    margin-top: 2px;
}

/* === ДРУГИЕ УСЛУГИ === */
.landing-other-services {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1A6BBD 0%, #2986E3 30%, #1e3c72 70%, #2a5298 100%);
    position: relative;
    overflow: hidden;
}

.landing-other-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    z-index: 0;
    opacity: 0.8;
}

.landing-other-services .landing-container {
    position: relative;
    z-index: 1;
}

.other-services-title {
    font-size: var(--font-36);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 60px 0;
    text-align: center;
    position: relative;
    padding-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.other-services-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 2px;
}

.services-navigation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;
    text-decoration: none;
    color: var(--grad-black);
    font-size: var(--font-18);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, #1A6BBD 0%, #2986E3 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.service-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1A6BBD 0%, #2986E3 50%, #fbbf24 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.service-link:hover::before {
    width: 100%;
}

.service-link:hover::after {
    transform: scaleX(1);
}

.service-link:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.service-icon,
.service-name {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-link:hover .service-icon {
    transform: translateX(8px) scale(1.1);
}

.service-link:hover .service-name {
    transform: translateX(3px);
}

.service-icon {
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(26, 107, 189, 0.15) 0%, rgba(41, 134, 227, 0.15) 100%);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    border: 1px solid rgba(26, 107, 189, 0.2);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    transition: transform 0.4s ease;
}

.service-link:hover .service-icon {
    color: var(--white);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(8px) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.service-link:hover .service-icon svg {
    transform: translateX(2px);
}

.service-name {
    flex: 1;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

/* Дополнительные стили для надежности - убеждаемся, что стили применяются */
.landing-page-standard .landing-other-services {
    background: linear-gradient(135deg, #1A6BBD 0%, #2986E3 30%, #1e3c72 70%, #2a5298 100%);
    padding: 100px 20px;
}

.landing-page-standard .service-link {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* === ПРИМЕРЫ РАБОТ (КЕЙСЫ) === */
.landing-cases {
    padding: 100px 20px;
    background: var(--white);
    overflow-x: hidden;
}

.cases-title {
    font-size: var(--font-48);
    font-weight: 700;
    color: var(--grad-black);
    margin: 0 0 70px 0;
    text-align: center;
    position: relative;
    padding-bottom: 25px;
}

.cases-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--grad-blue);
    border-radius: 2px;
}

/* Контейнер слайдера */
.cases-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Swiper слайдер */
.cases-slider {
    overflow: visible;
    padding: 20px 0 80px;
}

.cases-slider .swiper-wrapper {
    align-items: stretch;
}

.cases-slider .swiper-slide {
    height: auto;
    display: flex;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    transform: scale(0.85);
}

.cases-slider .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.cases-slider .swiper-slide-prev,
.cases-slider .swiper-slide-next {
    opacity: 0.65;
    transform: scale(0.92);
}

/* Карточка кейса */
.case-item {
    background: #f9fafb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cases-slider .swiper-slide-active .case-item {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.case-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

/* Изображение кейса */
.case-item__image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.case-item__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-item:hover .case-item__image::after {
    opacity: 1;
}

.case-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.case-item:hover .case-item__image img {
    transform: scale(1.08);
}

/* Контент кейса */
.case-item__content {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-item__title {
    font-size: var(--font-26);
    font-weight: 700;
    color: var(--blue);
    margin: 0 0 18px 0;
}

.case-item__description {
    font-size: var(--font-18);
    line-height: 1.7;
    color: var(--dgray);
    margin: 0 0 30px 0;
    flex: 1;
}

/* Отзыв */
.case-item__review {
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    border-left: 5px solid var(--blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.case-item__review-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.case-item__review-text {
    font-size: var(--font-16);
    line-height: 1.8;
    color: var(--dgray);
    font-style: italic;
    margin: 0 0 15px 0;
}

.case-item__review-author {
    font-size: var(--font-16);
    font-weight: 600;
    color: var(--blue);
    margin: 0;
}

/* Навигация */
.cases-slider__nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.cases-slider__btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--blue);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.cases-slider__btn:hover {
    background: var(--blue);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(26, 107, 189, 0.3);
}

.cases-slider__btn:active {
    transform: scale(0.95);
}

.cases-slider__btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Пагинация */
.cases-slider__pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
}

.cases-slider__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d1d5db;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 6px;
}

.cases-slider__pagination .swiper-pagination-bullet-active {
    background: var(--blue);
    width: 32px;
    border-radius: 6px;
}

/* === FAQ === */
.landing-faq {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.faq-title {
    font-size: var(--font-48);
    font-weight: 700;
    color: var(--grad-black);
    margin: 0 0 70px 0;
    text-align: center;
    position: relative;
    padding-bottom: 25px;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--grad-blue);
    border-radius: 2px;
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 20px;
    border: 2px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--blue);
    box-shadow: 0 6px 20px rgba(26, 107, 189, 0.1);
}

.faq-item.active {
    border-color: var(--blue);
    box-shadow: 0 6px 20px rgba(26, 107, 189, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
    font-size: var(--font-20);
    font-weight: 600;
    color: var(--grad-black);
}

.faq-toggle {
    font-size: 32px;
    color: var(--blue);
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--lblue);
}

.faq-answer {
    padding: 0 30px 25px 76px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    font-size: var(--font-18);
    line-height: 1.8;
    color: var(--dgray);
    margin: 0;
}

/* === КОНТАКТЫ === */
.landing-contacts {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.landing-contacts h2 {
    font-size: var(--font-48);
    text-align: center;
    margin: 0 0 60px 0;
    color: var(--grad-black);
    font-weight: 700;
    position: relative;
    padding-bottom: 25px;
}

.landing-contacts h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--grad-blue);
    border-radius: 2px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 45px;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--grad-blue);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
    z-index: 0;
}

.contact-card:hover::before {
    transform: scaleY(1);
}

.contact-card:hover {
    border-color: var(--blue);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 107, 189, 0.25);
}

.contact-icon,
.contact-label,
.contact-value {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.contact-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.contact-label {
    font-size: var(--font-16);
    color: var(--dgray);
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-card:hover .contact-label {
    color: rgba(255, 255, 255, 0.9);
}

.contact-value {
    font-size: var(--font-24);
    font-weight: 700;
    color: var(--blue);
}

.contact-card:hover .contact-value {
    color: var(--white);
}

/* === АДАПТИВНОСТЬ === */
@media (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .advantages-layout {
        grid-template-columns: 350px 1fr;
        gap: 25px;
    }

    .advantages-sticky {
        top: 100px;
    }

    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .landing-other-services {
        padding: 80px 20px;
    }

    .other-services-title {
        font-size: var(--font-36);
        margin-bottom: 50px;
    }

    .services-navigation {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 18px;
    }

    .service-link {
        padding: 24px 28px;
        gap: 18px;
    }

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

    .service-icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 768px) {
    .landing-hero {
        min-height: 500px;
        padding: 80px 20px 140px;
    }

    .landing-hero__badge {
        padding: 8px 16px;
        font-size: var(--font-12);
        margin-bottom: 25px;
    }

    .landing-hero__badge-icon {
        font-size: 16px;
    }

    .landing-hero__title {
        font-size: var(--font-36);
        margin-bottom: 25px;
    }

    .landing-hero__subtitle {
        font-size: var(--font-18);
        margin-bottom: 40px;
    }

    .landing-hero__features {
        gap: 15px;
        flex-direction: column;
    }

    .landing-hero__feature {
        padding: 10px 20px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .landing-hero__feature-text {
        font-size: var(--font-14);
    }

    .landing-hero__wave {
        height: 60px;
    }

    .landing-main-section {
        padding: 80px 20px;
    }

    .landing-main-section::after {
        display: none;
    }

    .landing-h2 {
        font-size: var(--font-32);
        margin-bottom: 40px;
        padding-bottom: 20px;
    }

    .landing-h2::after {
        width: 60px;
        height: 3px;
    }

    .landing-main-text {
        font-size: var(--font-18);
    }

    .landing-main-text__wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .landing-main-text__divider {
        display: none;
    }

    .landing-main-text__column p {
        padding-left: 28px;
        text-align: left;
    }

    .landing-main-text__column p::before {
        width: 6px;
        height: 6px;
        top: 8px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .service-card__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

    .service-card__icon svg {
        width: 28px;
        height: 28px;
    }

    .service-card__title {
        font-size: var(--font-16);
    }

    .services-text-after {
        margin-top: 50px;
    }

    .services-text-after p {
        font-size: var(--font-17);
    }

    .audience-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .audience-card {
        padding: 30px 25px;
    }

    .audience-card__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

    .audience-card__icon svg {
        width: 28px;
        height: 28px;
    }

    .audience-card__title {
        font-size: var(--font-16);
    }

    .audience-text-after {
        margin-top: 50px;
    }

    .audience-text-after p {
        font-size: var(--font-17);
    }

    .tasks-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .task-card {
        padding: 30px 25px;
    }

    .task-card__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

    .task-card__icon svg {
        width: 28px;
        height: 28px;
    }

    .task-card__title {
        font-size: var(--font-16);
    }

    .tasks-text-after {
        margin-top: 50px;
    }

    .tasks-text-after p {
        font-size: var(--font-17);
    }

    .landing-block {
        padding: 60px 20px;
    }

    .block-title {
        font-size: var(--font-28);
        flex-direction: column;
        gap: 12px;
    }

    .block-icon {
        font-size: 40px;
    }

    .block-content ul {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .block-content li {
        padding: 20px 25px;
    }

    .landing-content {
        padding: 70px 20px;
    }

    .landing-advantages {
        padding: 70px 20px;
    }

    .advantages-title {
        font-size: var(--font-32);
        color: var(--white);
    }

    .advantages-text-after p {
        color: rgba(255, 255, 255, 0.95);
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .advantages-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .advantages-sticky {
        position: relative;
        top: 0;
    }

    .advantage-card--sticky {
        padding: 30px 25px;
        text-align: center;
        align-items: center;
        background: transparent;
    }

    .advantage-card--sticky .advantage-card__icon {
        display: none;
    }

    .advantage-card--sticky .advantage-card__content {
        text-align: center;
    }

    .advantage-card--sticky .advantage-card__title {
        font-size: var(--font-20);
        color: var(--white);
    }

    .advantage-card--sticky .advantage-card__text {
        font-size: var(--font-16);
        color: rgba(255, 255, 255, 0.95);
    }

    .advantage-card--sticky .advantage-card__additional-text {
        margin-top: 15px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .advantage-card--sticky .advantage-card__additional-text p {
        font-size: var(--font-15);
        text-align: center;
        color: rgba(255, 255, 255, 0.9);
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-card {
        padding: 30px 25px;
        min-height: 220px;
    }

    .advantage-card__icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .advantage-card__icon svg {
        width: 28px;
        height: 28px;
    }

    .advantage-card__title {
        font-size: var(--font-18);
    }

    .advantage-card__text {
        font-size: var(--font-15);
    }

    .advantages-text-after {
        margin-top: 50px;
    }

    .advantages-text-after p {
        font-size: var(--font-17);
    }

    .landing-process {
        padding: 70px 20px;
    }

    .process-title {
        font-size: var(--font-32);
    }

    .process-intro {
        font-size: var(--font-18);
        margin-bottom: 50px;
    }

    .steps-timeline::before {
        left: 25px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: var(--font-24);
    }

    .step-item {
        gap: 25px;
        margin-bottom: 40px;
    }

    .step-content {
        padding: 25px;
    }

    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .step-title {
        font-size: var(--font-20);
    }

    .step-timing {
        font-size: var(--font-12);
        padding: 6px 14px;
    }

    .step-detail,
    .step-result {
        flex-direction: column;
        gap: 8px;
        padding: 12px 18px;
    }

    .landing-other-services {
        padding: 70px 20px;
    }

    .other-services-title {
        font-size: var(--font-32);
        margin-bottom: 40px;
        padding-bottom: 20px;
    }

    .other-services-title::after {
        width: 80px;
        height: 3px;
    }

    .services-navigation {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-link {
        padding: 22px 24px;
        gap: 16px;
        font-size: var(--font-16);
    }

    .service-icon {
        width: 36px;
        height: 36px;
    }

    .service-icon svg {
        width: 20px;
        height: 20px;
    }

    .cases-title {
        font-size: var(--font-32);
        margin-bottom: 40px;
    }

    .cases-slider-container {
        padding: 0 15px;
    }

    .cases-slider {
        padding: 15px 0 70px;
    }

    .cases-slider .swiper-slide {
        opacity: 0.6;
        transform: scale(0.88);
    }

    .cases-slider .swiper-slide-active {
        opacity: 1;
        transform: scale(1);
    }

    .cases-slider .swiper-slide-prev,
    .cases-slider .swiper-slide-next {
        opacity: 0.7;
        transform: scale(0.94);
    }

    .cases-slider__nav {
        margin-top: 25px;
    }

    .cases-slider__btn {
        width: 45px;
        height: 45px;
    }

    .case-item__content {
        padding: 25px;
    }

    .case-item__title {
        font-size: var(--font-22);
    }

    .faq-title {
        font-size: var(--font-32);
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px 25px;
        gap: 15px;
    }

    .faq-text {
        font-size: var(--font-18);
    }

    .faq-answer {
        padding: 0 25px 20px 68px;
    }

    .landing-contacts h2 {
        font-size: var(--font-32);
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-card {
        padding: 35px;
    }
}

@media (max-width: 480px) {
    .landing-hero {
        min-height: 450px;
        padding: 60px 15px 120px;
    }

    .landing-hero__badge {
        padding: 6px 14px;
        font-size: var(--font-10);
        margin-bottom: 20px;
    }

    .landing-hero__badge-icon {
        font-size: 14px;
    }

    .landing-hero__title {
        font-size: var(--font-28);
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .landing-hero__subtitle {
        font-size: var(--font-16);
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .landing-hero__features {
        gap: 12px;
    }

    .landing-hero__feature {
        padding: 8px 16px;
        max-width: 100%;
    }

    .landing-hero__feature-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .landing-hero__feature-text {
        font-size: var(--font-12);
    }

    .landing-hero__wave {
        height: 60px;
    }

    .landing-main-section {
        padding: 60px 15px;
    }

    .landing-h2 {
        font-size: var(--font-24);
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .landing-h2::after {
        width: 50px;
        height: 2px;
    }

    .landing-main-text {
        font-size: var(--font-16);
    }

    .landing-main-text__wrapper {
        gap: 25px;
        margin-top: 25px;
    }

    .landing-main-text__column p {
        padding-left: 24px;
        font-size: var(--font-16);
        line-height: 1.8;
    }

    .landing-main-text__column p::before {
        width: 5px;
        height: 5px;
        top: 7px;
        box-shadow: 0 0 0 3px rgba(26, 107, 189, 0.1);
    }

    .landing-main-cta {
        margin-top: 40px;
    }

    .landing-cta-button {
        padding: 16px 32px;
        font-size: var(--font-16);
    }

    .landing-stats {
        padding: 70px 20px;
    }

    .stats-grid {
        gap: 40px;
    }

    .stat-number {
        font-size: var(--font-48);
    }

    .stat-number::after {
        width: 110%;
        height: 110%;
    }

    .stat-label {
        font-size: var(--font-16);
    }

    .landing-main-cta {
        margin-top: 30px;
    }

    .landing-cta-button {
        padding: 14px 28px;
        font-size: var(--font-14);
    }

    .landing-stats {
        padding: 60px 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: var(--font-36);
    }

    .stat-number::after {
        width: 105%;
        height: 105%;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card__icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
        border-radius: 14px;
    }

    .service-card__icon svg {
        width: 24px;
        height: 24px;
    }

    .service-card__title {
        font-size: var(--font-15);
    }

    .services-text-after {
        margin-top: 40px;
    }

    .services-text-after p {
        font-size: var(--font-16);
        line-height: 1.8;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .audience-card {
        padding: 25px 20px;
    }

    .audience-card__icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
        border-radius: 14px;
    }

    .audience-card__icon svg {
        width: 24px;
        height: 24px;
    }

    .audience-card__title {
        font-size: var(--font-15);
    }

    .audience-text-after {
        margin-top: 40px;
    }

    .audience-text-after p {
        font-size: var(--font-16);
        line-height: 1.8;
    }

    .tasks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .task-card {
        padding: 25px 20px;
    }

    .task-card__icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
        border-radius: 14px;
    }

    .task-card__icon svg {
        width: 24px;
        height: 24px;
    }

    .task-card__title {
        font-size: var(--font-15);
    }

    .tasks-text-after {
        margin-top: 40px;
    }

    .tasks-text-after p {
        font-size: var(--font-16);
        line-height: 1.8;
    }

    .advantage-card {
        padding: 30px 25px;
        min-height: 220px;
    }

    .advantages-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantages-sticky {
        position: relative;
        top: 0;
    }

    .advantage-card--sticky {
        padding: 25px 20px;
        text-align: center;
        align-items: center;
        background: transparent;
    }

    .advantage-card--sticky .advantage-card__icon {
        display: none;
    }

    .advantage-card--sticky .advantage-card__content {
        text-align: center;
    }

    .advantage-card--sticky .advantage-card__title {
        font-size: var(--font-18);
        color: var(--white);
    }

    .advantage-card--sticky .advantage-card__text {
        font-size: var(--font-15);
        color: rgba(255, 255, 255, 0.95);
    }

    .advantage-card--sticky .advantage-card__additional-text {
        margin-top: 12px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .advantage-card--sticky .advantage-card__additional-text p {
        font-size: var(--font-14);
        text-align: center;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .advantage-card {
        padding: 25px 20px;
        height: auto;
    }


    .advantage-card__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

    .advantage-card__icon svg {
        width: 24px;
        height: 24px;
    }

    .advantage-card__title {
        font-size: var(--font-16);
    }

    .advantage-card__text {
        font-size: var(--font-14);
        line-height: 1.7;
    }

    .advantages-text-after {
        margin-top: 40px;
    }

    .advantages-text-after p {
        font-size: var(--font-16);
        line-height: 1.8;
    }

    .landing-h2,
    .advantages-title,
    .process-title,
    .cases-title,
    .faq-title,
    .landing-contacts h2 {
        font-size: var(--font-24);
    }

    .block-title {
        font-size: var(--font-24);
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: var(--font-20);
    }

    .steps-timeline::before {
        left: 22px;
    }

    .cases-slider-container {
        padding: 0 10px;
    }

    .cases-slider {
        padding: 10px 0 70px;
    }

    .cases-slider .swiper-slide {
        opacity: 0.65;
        transform: scale(0.9);
    }

    .cases-slider .swiper-slide-active {
        opacity: 1;
        transform: scale(1);
    }

    .cases-slider .swiper-slide-prev,
    .cases-slider .swiper-slide-next {
        opacity: 0.75;
        transform: scale(0.95);
    }

    .cases-slider__btn {
        width: 40px;
        height: 40px;
    }

    .cases-slider__btn svg {
        width: 20px;
        height: 20px;
    }

    .cases-slider__pagination {
        margin-top: 15px;
    }

    .cases-slider__pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }

    .cases-slider__pagination .swiper-pagination-bullet-active {
        width: 24px;
    }

    .landing-other-services {
        padding: 60px 15px;
    }

    .other-services-title {
        font-size: var(--font-28);
        margin-bottom: 35px;
        padding-bottom: 18px;
    }

    .other-services-title::after {
        width: 70px;
        height: 3px;
    }

    .services-navigation {
        gap: 15px;
    }

    .service-link {
        padding: 20px 22px;
        gap: 14px;
        font-size: var(--font-15);
        border-radius: 16px;
    }

    .service-link:hover {
        transform: translateY(-3px) translateX(3px);
    }

    .service-icon {
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }

    .service-icon svg {
        width: 18px;
        height: 18px;
    }

    .service-name {
        font-size: var(--font-15);
    }
}

.swiper {
    overflow: visible !important;
}