.benefits-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8fafc 0%, #d9d9d9 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2196f3, #21cbf3, #2196f3);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: "Exo-2", sans-serif;
    font-size: 2.7rem;
    text-align: center;
    color: #1f2937;
    margin-bottom: 80px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 25px;
}

.section-title span {
    font-family: "Exo-2", sans-serif;
    font-size: 2.7rem;
    text-align: center;
}


.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2196f3, transparent);
    border-radius: 2px;
}

.title-highlight {
    position: relative;
    display: inline-block;
}

.highlight-word {
    color: #2196f3;
    position: relative;
    padding: 0 8px;
    z-index: 1;
}

.highlight-word::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(33, 203, 243, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
    transition: all 0.3s ease;
}

.highlight-word:hover::before {
    height: 12px;
    background: rgba(33, 203, 243, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(33, 150, 243, 0.15);
}

.card-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2196f3, #21cbf3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover .card-border {
    transform: scaleX(1);
}

.card-content {
    padding: 35px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
}

.benefit-card:hover .card-icon {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.card-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
    color: #2196f3;
    transition: all 0.4s ease;
}

.benefit-card:hover .card-icon svg {
    color: white;
    transform: scale(1.1);
}

.card-title,
.card-title span {
    font-family: "Exo-2", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 10px;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #2196f3;
    transform: scaleX(0.5);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover .card-title::after {
    transform: scaleX(1);
}

.card-text {
    font-family: "Exo-2", sans-serif;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
    transition: color 0.3s ease;
    font-weight: 400;
}

.benefit-card:hover .card-text {
    color: #4b5563;
}

.card-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2196f3, transparent);
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.6s ease;
}

.benefit-card:hover .card-wave {
    opacity: 1;
    transform: scaleX(1);
}

/* Анимация появления карточек */
.benefit-card {
    opacity: 0;
    transform: translateY(30px);
    animation: cardAppear 0.6s ease forwards;
}

.benefit-card:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(5) {
    animation-delay: 0.5s;
}

.benefit-card:nth-child(6) {
    animation-delay: 0.6s;
}

.benefit-card:nth-child(7) {
    animation-delay: 0.7s;
}

.benefit-card:nth-child(8) {
    animation-delay: 0.8s;
}

.benefit-card:nth-child(9) {
    animation-delay: 0.9s;
}

.benefit-card:nth-child(10) {
    animation-delay: 1s;
}

.benefit-card:nth-child(11) {
    animation-delay: 1.1s;
}

.benefit-card:nth-child(12) {
    animation-delay: 1.2s;
}

@keyframes cardAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 80px 4%;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .benefit-card {
        min-height: 280px;
    }

    .card-content {
        padding: 25px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .card-title,
    .card-title span {
        font-size: 1.3rem;
    }

    .card-title span {
        display: block;
    }
}

@media (max-width: 480px) {

    .section-title,
    .section-title span {
        font-size: 1.8rem;
    }

    .highlight-word::before {
        bottom: 3px;
        height: 6px;
    }
}

.services-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(33, 150, 243, 0.3),
            rgba(33, 203, 243, 0.6),
            rgba(33, 150, 243, 0.3),
            transparent);
}

.services-title {
    font-family: "Exo-2", sans-serif;
    font-size: 2.8rem;
    text-align: center;
    color: #1f2937;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            #2196f3 0%,
            #21cbf3 50%,
            #2196f3 100%);
    border-radius: 2px;
    transform: scaleX(0.8);
    transform-origin: center;
    animation: pulseLine 3s ease-in-out infinite;
}

@keyframes pulseLine {

    0%,
    100% {
        transform: scaleX(0.8);
    }

    50% {
        transform: scaleX(1);
    }
}

.services-subtitle,
.services-subtitle span {
    font-family: "Exo-2", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    color: #6b7280;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    display: block;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(33, 150, 243, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(33, 150, 243, 0) 0%,
            rgba(33, 150, 243, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.3) 100%);
    transition: background 0.4s ease;
}

.service-card:hover .image-overlay {
    background: linear-gradient(to bottom,
            rgba(33, 150, 243, 0.3) 0%,
            rgba(33, 150, 243, 0.6) 100%);
}

.service-content {
    padding: 25px;
    position: relative;
    z-index: 2;
    background: white;
    height: calc(100% - 200px);
    display: flex;
    flex-direction: column;
}

.service-name {
    font-family: "Exo-2", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 10px;
    transition: color 0.3s ease;
}

.service-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #2196f3;
    transform: scaleX(0.6);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover .service-name {
    color: #2196f3;
}

.service-card:hover .service-name::after {
    transform: scaleX(1);
}

.service-card:hover {
    color: #4b5563;
}

.service-link {
    font-family: "Exo-2", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2196f3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-card:hover .service-link {
    color: #1e88e5;
    gap: 12px;
}

.service-card:hover .service-link::after {
    transform: translateX(5px);
}

.service-hover-effect {
    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.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    pointer-events: none;
}

.service-card:hover .service-hover-effect {
    left: 100%;
}

/* Анимация появления карточек */
.service-card {
    opacity: 0;
    transform: translateY(30px) rotateX(5deg);
    animation: serviceCardAppear 0.6s ease forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.service-card:nth-child(7) {
    animation-delay: 0.7s;
}

.service-card:nth-child(8) {
    animation-delay: 0.8s;
}

@keyframes serviceCardAppear {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* Адаптивность */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-title {
        font-size: 2.4rem;
    }

    .service-card {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 4%;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .service-image {
        height: 180px;
    }

    .service-content {
        padding: 20px;
    }

    .service-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .service-card {
        min-height: 320px;
    }

    .service-image {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 1.8rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }

    .services-subtitle span {
        display: block;
    }
}

.stages-section-light {
    padding: 100px 5% 0px 5px;
    background: linear-gradient(135deg, #f8fafc 0%, #c2cfe0 100%);
    position: relative;
    overflow: hidden;
}

.stages-section-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            #2196f3,
            #21cbf3,
            #2196f3);
    background-size: 200% 100%;
    animation: gradientFlowLight 3s linear infinite;
}

@keyframes gradientFlowLight {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.stages-title-light {
    font-family: "Exo-2", sans-serif;
    font-size: 3.2rem;
    text-align: center;
    color: #1f2937;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.stages-title-light::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            #2196f3 0%,
            #21cbf3 50%,
            #2196f3 100%);
    border-radius: 2px;
    transform: scaleX(0.8);
    transform-origin: center;
    animation: pulseLineLight 3s ease-in-out infinite;
}

@keyframes pulseLineLight {

    0%,
    100% {
        transform: scaleX(0.8);
    }

    50% {
        transform: scaleX(1);
    }
}

.stages-subtitle-light,
.stages-subtitle-light span {
    font-family: "Exo-2", sans-serif;
    font-size: 1.3rem;
    text-align: center;
    color: #6b7280;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

.stages-timeline-light {
    position: relative;
    max-width: 900px;
    margin: 0 auto 100px;
    padding-left: 50px;
}

/* Основная линия таймлайна */
.stages-timeline-light::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom,
            rgba(33, 150, 243, 0.1),
            rgba(33, 150, 243, 0.6) 20%,
            rgba(33, 150, 243, 0.6) 80%,
            rgba(33, 150, 243, 0.1));
    border-radius: 3px;
}

.stage-item-light {
    position: relative;
    margin-bottom: 70px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stage-item-light.animated {
    opacity: 1;
    transform: translateX(0);
}

.stage-number-light {
    position: absolute;
    left: -55px;
    top: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Exo-2", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.3);
    border: 3px solid white;
    transition: all 0.4s ease;
}

.stage-content-light {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-left: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.stage-content-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(33, 150, 243, 0.03) 0%,
            rgba(33, 203, 243, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.stage-item-light:hover .stage-content-light {
    transform: translateY(-8px);
    border-color: #2196f3;
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.15);
}

.stage-item-light:hover .stage-content-light::before {
    opacity: 1;
}

.stage-item-light:hover .stage-number-light {
    transform: scale(1.15);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.4);
}

.stage-icon-light {
    width: 60px;
    height: 60px;
    background: rgba(33, 150, 243, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.15);
    transition: all 0.4s ease;
}

.stage-icon-light svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.stage-item-light:hover .stage-icon-light {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
    color: white;
    transform: rotate(8deg) scale(1.1);
    border-color: transparent;
}

.stage-name-light {
    font-family: "Exo-2", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 10px;
}

.stage-name-light::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2196f3, #21cbf3);
    border-radius: 2px;
    transform: scaleX(0.7);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stage-item-light:hover .stage-name-light {
    color: #2196f3;
}

.stage-item-light:hover .stage-name-light::after {
    transform: scaleX(1);
}

.stage-description-light {
    font-family: "Exo-2", sans-serif;
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    font-weight: 400;
}

.stage-item-light:hover .stage-description-light {
    color: #4b5563;
}

.stage-time-light {
    display: inline-block;
    font-family: "Exo-2", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2196f3;
    background: rgba(33, 150, 243, 0.08);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(33, 150, 243, 0.15);
    transition: all 0.3s ease;
}

.stage-item-light:hover .stage-time-light {
    background: rgba(33, 150, 243, 0.15);
    border-color: rgba(33, 150, 243, 0.3);
}

.stage-connector-light {
    position: absolute;
    left: 35px;
    top: 70px;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #2196f3, rgba(33, 150, 243, 0.3));
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.6s ease 0.3s;
}

.stage-item-light.animated .stage-connector-light {
    transform: scaleX(1);
}

.stage-final-light {
    position: relative;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 1s;
}

.stage-final-light.animated {
    opacity: 1;
    transform: translateY(0);
}

.final-circle-light {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -62px;
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.25);
    border: 3px solid white;
    animation: pulseSuccessLight 2s ease-in-out infinite;
}

@keyframes pulseSuccessLight {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.final-circle-light svg {
    width: 36px;
    height: 36px;
    color: white;
    stroke-width: 2;
}

.final-text-light {
    font-family: "Exo-2", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #10b981;
    margin-left: 40px;
    background: white;
    padding: 11px 24px;
    border-radius: 20px;
    border: 2px solid #10b981;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.1);
}

.cta-button-light {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 16px;
    font-family: "Exo-2", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.5);
    gap: 20px;
    background: linear-gradient(135deg, #1e88e5 0%, #1ad1ff 100%);
}

.cta-button-light svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.cta-button-light:hover svg {
    transform: translateX(5px);
}

/* Эффект волны при наведении на карточку */
.stage-content-light::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(33, 150, 243, 0.05),
            transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.stage-item-light:hover .stage-content-light::after {
    left: 150%;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .stages-timeline-light {
        max-width: 700px;
        padding-left: 40px;
    }

    .stage-number-light {
        left: -50px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .final-circle-light {
        left: -85px;
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .stages-section-light {
        padding: 80px 4% 0 4%;
    }

    .stages-title-light {
        font-size: 2.5rem;
    }

    .stages-subtitle-light,
    .stages-subtitle-light span {
        font-size: 1.1rem;
        margin-bottom: 60px;
    }

    .stages-timeline-light {
        padding-left: 30px;
        margin-bottom: 70px;
    }

    .stages-timeline-light::before {
        left: 25px;
    }

    .stage-item-light {
        margin-bottom: 50px;
    }

    .stage-number-light {
        left: -40px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .stage-content-light {
        padding: 25px;
        margin-left: 30px;
    }

    .stage-icon-light {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .stage-name-light {
        font-size: 1.4rem;
    }

    .final-circle-light {
        left: -65px;
        width: 60px;
        height: 60px;
    }

    .final-text-light {
        font-size: 1.5rem;
        padding: 20px 30px;
    }
}

@media (max-width: 600px) {
    .stages-timeline-light {
        padding-left: 25px;
    }

    .stages-timeline-light::before {
        left: 20px;
    }

    .stage-number-light {
        left: -35px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .stage-content-light {
        padding: 20px;
        margin-left: 25px;
    }

    .stage-name-light {
        font-size: 1.3rem;
    }

    .stage-description-light {
        font-size: 1rem;
    }

    .final-circle-light {
        left: -55px;
        width: 50px;
        height: 50px;
    }

    .final-text-light {
        font-size: 1rem;
        padding: 15px 25px;
        margin-left: 30px;
    }

    .cta-button-light {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .stages-title-light {
        font-size: 1.8rem;
    }

    .stages-subtitle-light,
    .stages-subtitle-light span {
        font-size: 1rem;
        margin-bottom: 50px;
    }

    .stages-subtitle-light span {
        display: block;
    }

    .stage-content-light {
        padding: 18px;
    }

    .stage-name-light {
        font-size: 1.2rem;
    }

    .stage-description-light {
        font-size: 0.95rem;
    }
}

.faq-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            #2196f3,
            #21cbf3,
            #2196f3);
    background-size: 200% 100%;
    animation: faqGradientFlow 3s linear infinite;
}

@keyframes faqGradientFlow {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.faq-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.faq-title {
    font-family: "Exo-2", sans-serif;
    font-size: 3.2rem;
    color: #1f2937;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2196f3, #21cbf3);
    border-radius: 2px;
}

.faq-subtitle,
.faq-subtitle span {
    font-family: "Exo-2", sans-serif;
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 400;
}

.faq-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            #2196f3,
            transparent);
}

.decoration-dot {
    width: 12px;
    height: 12px;
    background: #2196f3;
    border-radius: 50%;
    position: relative;
}

.decoration-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #2196f3;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 80px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: #2196f3;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.15);
}

.faq-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2196f3, #21cbf3);
}

.faq-question {
    padding: 28px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question {
    background: rgba(33, 150, 243, 0.02);
}

.faq-item.active .faq-question {
    background: rgba(33, 150, 243, 0.04);
}

.question-number {
    font-family: "Exo-2", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2196f3;
    min-width: 50px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.faq-item.active .question-number {
    opacity: 1;
    transform: scale(1.1);
}

.question-text {
    font-family: "Exo-2", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    flex-grow: 1;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item.active .question-text {
    color: #2196f3;
}

.question-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2196f3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .question-icon {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
    color: white;
    transform: rotate(45deg);
}

.question-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: transform 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(33, 150, 243, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 30px 30px 100px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease 0.2s;
}

.faq-item.active .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
}

.faq-answer p {
    font-family: "Exo-2", sans-serif;
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
}

.faq-answer ul {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 0;
}

.faq-answer li {
    font-family: "Exo-2", sans-serif;
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.faq-answer li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: #2196f3;
    border-radius: 50%;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(33, 150, 243, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(33, 150, 243, 0.1);
    transition: all 0.3s ease;
}

.payment-method:hover {
    background: rgba(33, 150, 243, 0.1);
    transform: translateY(-2px);
}

.payment-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.payment-text {
    font-family: "Exo-2", sans-serif;
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
}

.faq-cta {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.2);
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path d="M0,50 Q250,0 500,50 T1000,50 V100 H0 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: "Exo-2", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-text {
    font-family: "Exo-2", sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 14px;
    font-family: "Exo-2", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-buttons span {
    font-size: 1.2rem;
}

.cta-button.phone {
    background: white;
    color: #2196f3;
}

.cta-button.form {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-button.phone:hover {
    background: #f8fafc;
    gap: 15px;
}

.cta-button.form:hover {
    background: rgba(255, 255, 255, 0.25);
    gap: 15px;
}

.cta-button svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

/* Анимация появления вопросов */
.faq-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:nth-child(1) {
    transition-delay: 0.1s;
}

.faq-item:nth-child(2) {
    transition-delay: 0.2s;
}

.faq-item:nth-child(3) {
    transition-delay: 0.3s;
}

.faq-item:nth-child(4) {
    transition-delay: 0.4s;
}

.faq-item:nth-child(5) {
    transition-delay: 0.5s;
}

.faq-item:nth-child(6) {
    transition-delay: 0.6s;
}

.faq-item:nth-child(7) {
    transition-delay: 0.7s;
}

.faq-item:nth-child(8) {
    transition-delay: 0.8s;
}

/* Адаптивность */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 4%;
    }

    .faq-title {
        font-size: 2.5rem;
    }

    .faq-subtitle,
    .faq-subtitle span {
        font-size: 1.1rem;
    }

    .faq-question {
        padding: 22px 20px;
        gap: 15px;
    }

    .question-number {
        min-width: 40px;
        font-size: 1.3rem;
    }

    .question-text {
        font-size: 1.2rem;
    }

    .question-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .faq-answer-content {
        padding: 0 20px 25px 70px;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 1rem;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .faq-cta {
        padding: 40px 25px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .faq-question {
        padding: 20px;
        gap: 12px;
    }

    .question-number {
        min-width: 35px;
        font-size: 1.1rem;
    }

    .question-text {
        font-size: 1.1rem;
    }

    .faq-answer-content {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 0.9rem;
    }

    .faq-answer li {
        padding-left: 25px;
        font-weight: 400;
    }

    .faq-answer li::before {
        top: 8px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-text {
        font-weight: 400;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.8rem;
    }

    .faq-subtitle,
    .faq-subtitle span {
        font-size: 1rem;
    }

    .faq-subtitle span {
        display: block;
    }

    .question-text {
        font-size: 1rem;
    }

    .question-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .question-icon svg {
        width: 16px;
        height: 16px;
    }
}