body {
    box-sizing: border-box;
    margin: 0;
}
*, *::before, *::after {
    box-sizing: border-box;
}

.container {
    max-width: 1248px;  /* максимум ширины */
    width: 100%;        /* подстраивается под экран */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;    /* элементы будут переноситься на маленьких экранах */
}
.col1 .container{
    padding: 0;
    flex-wrap: wrap;
}
.col1 {
    box-sizing: border-box;
    background-color: #F1F5FF;
    padding-top: 90px;
    padding-bottom: 25px;
    padding-left: 10px;
    padding-right: 10px;
}
.col1 .left {
    padding-top: 71px;
    display: block;
}
.col1 .left .row .svg {
    width: 13px;
    height: 13px;
    margin-right: 20px;
    color: white;
}
.col1 .left .row .tag {
    display: flex;
    padding: 13px 20px;
    font-family: sans-serif;
    font-size: 16px;
    color: white;
    background-color: #7335FE;
    border-radius: 23px;
    width: fit-content;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeDown 0.6s ease-out forwards;
}


@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.col1 .left .row h2 {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #162959;
    margin-bottom: 32px;
}
.col1 .left .row p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    color: #596373;
    line-height: 32px;
}
.col1 .left .row h2,
.col1 .left .row p {
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.col1 .left .row .row-1 .item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideFromLeft 0.6s ease-out forwards;
}

@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.col1 .left .row .row-1 .item .icon {
    width: 40px;
    height: 40px;
    background-color: #DBEAFE;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    margin-right: 10px;
}
.col1 .left .row .row-1 .item .icon svg {
    width: 20px;
    height: 20px;
    color: #155DFC;
}
.col1 .left .row .row-1 .item span {
    font-family: sans-serif;
    font-size: 18px;
    color: #596373;
}
.col1 .left .row .row-2 {
    display: flex;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideFromBottom 0.6s ease-out forwards;
}

@keyframes slideFromBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.col1 .left .row .row-2 button {
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.col1 .left .row .row-2 button:hover {
    background-color: #FF5722;
}
.col1 .left .row .row-2 .phone {
    display: flex;
    align-items: center;
    border: 2px solid #D1D5DC;
    height: 37px;
    border-radius: 8px;
    width: fit-content;
    background-color: #FFFFFF;
    padding: 0 35px;
    margin-left: 33px;
}
.col1 .left .row .row-2 .phone:hover{
    background-color: #F9FAFB;
}
.col1 .left .row .row-2 .phone a {
    font-size: 18px;
    display: flex;
    text-decoration: none;
}
.col1 .left .row .row-2 .phone svg {
    width: 19px;
    padding-right: 10px;
}
.col1 .left .row .row-3 {
    width: 100%;
    max-width: 516px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: slideFromBottom 0.6s ease-out forwards;
}

@keyframes slideFromBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.col1 .left .row .row-3 .item span {
    font-size: 36px;
    font-family: sans-serif;
    color: #155DFC;
}
.col1 .left .row .row-3 .item p {
    font-size: 14px;
    margin: 4px 0;
}

.cards-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 500px;
    justify-content: space-between;
}

.video-card{
    padding: 0;
    width: 100%;
    position: relative;
    animation: moveUpDown 2.4s ease-in-out infinite;
}

.whatsapp{
    margin-right: 10px;
}
.whatsapp a{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;

}
.whatsapp a img{
    margin-right: 10px;
}
.telegram a img{
    margin-right: 10px;
}
.telegram a{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}
.about{
    padding: 80px 0;
}
.card {
    width: 20%;
    height: 250px;
    background-color:  #155DFC;
    border-radius: 12px;
    padding: 13px 10px 13px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    animation: moveUpDown 2s ease-in-out infinite;
    color: #ffffff;
}
@keyframes moveUpDown {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); } /* вверх на 10px */
    100% { transform: translateY(0); }
}
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    font-size: 24px;
    margin-right: 10px;
    background-color:#6178FD ;
}



.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: sans-serif;
    font-size: 18px;
    margin: 0 0 10px 0;
}


.card-text {
    font-size: 1rem;
    font-family: sans-serif;
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 8px;
    color: #ffffff;
}


.gradient-card {
    background: linear-gradient(135deg, #155DFC 0%, #155DFC 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

}
.teg-0{
    animation: moveUpDown 2.2s ease-in-out infinite;
}
.teg-1{
    animation: moveUpDown 2.5s ease-in-out infinite;
}
.teg-2{
    animation: moveUpDown 2.1s ease-in-out infinite;
}
.teg-3{
    animation: moveUpDown 2.3s ease-in-out infinite;
}

.gradient-card .card-title,
.gradient-card .card-text {
    color: #ffffff;
}


.gradient-card {

    justify-content: space-between;
    align-items: flex-start;
}

.gradient-card .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: sans-serif;
    font-size: 18px;
    margin: 0 0 10px 0;
    color: white;
}

.gradient-card .card-text {
    order: 3;
    font-size: 1.1rem;
    font-weight: 400;
    font-size: 14px;
}
.gradient-card .icon-circle {
    background-color:#6178FD ;
}
.video-card{
    padding: 0;
    width: 100%;
    position: relative;
    animation: moveUpDown 2.4s ease-in-out infinite;
}
.cards-container .video-card video{
    height: 600px;
    object-fit: cover;
}
.cards-container .video-card img{
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}
video{
    border-radius: 20px;
    width: 100%;
}
.video-card .volume{
    position: absolute;
    right: 15px;
    top: 15px;

}

.video-card .volume .vol{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F1F5FF;
    border-radius: 50%;
    opacity: 0.4;
    cursor: pointer;
}
.video-card .volume svg{
    width:24px;
    height: 24px;

}




.col2{
    background-color: #f1f5ff;
}
.col2 .container .card-icon {
    background-color: #FD3B2E;
}
.col2 .container .tag-1{
    background-color: #F93267;
}.col2 .container .tag-2{
     background-color: #FF8A00;
 }.col2 .container .tag-3{
      background-color: #00C55E;
  }.col2 .container .tag-4{
       background-color: #F4AA00;
   }.col2 .container .tag-5{
        background-color: #77716D;
    }.col2 .container .tag-6{
         background-color: #636C7E;
     }.col2 .container .tag-7{
          background-color: #168EFB;
      }.col2 .container .tag-8{
           background-color: #04A4F9;
       }.col2 .container .tag-9{
            background-color: #00AEAD;
        }

.guarantees-section {
    font-family: Arial, sans-serif;
    background-color: #f8faff;
    padding: 60px 20px;
    text-align: center;
}

.guarantees-header {
    margin-bottom: 40px;
}

.guarantees-header h1 {
    font-size: 30px;
    color: #333;
    margin-bottom: 16px;
    font-weight: 300;
}

.guarantees-header p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.guarantee-card {
    background-color: white;
    padding: 24px;
    border-radius: 22px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}
.guarantee-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.guarantee-card h3 {
    font-size: 16px;
    font-weight: bold;
    color: #121212;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: sans-serif;
    font-weight: 600;
}

.guarantee-card p {
    font-size: 16px;
    color: #252525;
    line-height: 1.5;
    font-weight: 300;
}

.icon-container {
    background: linear-gradient(135deg, var(--icon-color), #155DFC);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.guarantee-details-section {
    font-family: Arial, sans-serif;
    background-color:white;
    border-radius: 22px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
}


.details-content {
    flex: 1;
    min-width: 300px;
    padding: 48px 0 48px 48px;
}

.details-content h2 {
    font-size: 16px;
    font-weight: bold;
    color: #2c2c2c;
    margin-top: 20px;
    margin-bottom: 16px;
    font-family: sans-serif;
    font-weight: 600;
    text-align: start;
}

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

.guarantee-list li {
    font-size: 16px;
    color: #1c1c1c;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}
.guarantee-list li  span{
    margin-right: 13px;
}

.details-card-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 30px 6px;
}

.guarantee-highlight-card {
    background-color: #235BFC;
    color: white;
    border-radius: 15px;
    padding: 15px 20px;
    width: 100%;
}

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

.card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background-color: #5979FC;
    border-radius: 8px;
    line-height: 1;
}

.card-subtitle {
    justify-content: start;
    display: flex;
    color: white;
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.card-main-text {
    font-size: 24px;
    margin: 0;
    color: white;
}
@media   (max-width: 550px) {
    .card-main-text {
        font-size: 20px;
        margin: 0;
        color: white;
    }
}

.card-description {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    color: white;
    display: flex;
    text-align: start;
}
.card-documents  {
    padding: 10px;
    border-radius: 13px;
    background-color: #5979FC;
}
.card-documents p {
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    color: white;

}

.checkmark-small {
    font-weight: bold;
    font-size: 16px;
    margin-right: 10px;
    color: #ccffcc;
}

.how-it-works-section {
    font-family: Arial, sans-serif;
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}


.works-header {
    margin-bottom: 60px;
}

.works-header h2 {
    font-size: 30px;
    color: #333;
    margin-bottom: 16px;
    font-weight: 500;
}

.works-header p {
    font-size: 16px;
    color: #666;
}


.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}


.step {
    flex: 1;
    max-width: 25%;
    text-align: center;
    position: relative;
    padding-top: 65px;
}

.step-icon-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #584AFD;
    display: flex;
    align-items: center;
    justify-content: center;
}


.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #BEDBFF;
    color: #193CB8;
    font-size: 16px;
    font-weight: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}


.step-icon {
    font-size: 24px;
    color: white;
}


.step-content {
    margin-top: 15px;
    text-align: left;
}

.step-content h3 {
    font-size: 16px;
    color: #141414;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}

.step-content p {
    font-size: 16px;
    color: #212121;
    line-height: 1.4;
    font-weight: 100;
    text-align: center;
}

.step-line{
    height: 2px;
    background-color: #c9c9ff;

}
.line{
    transition: width 1.5s ease-out;
    position: absolute;
    height: 2px;
    border-bottom: 3px solid #BEDBFF;
    width: 0;
}
.line-animation{
    width: 305px;
}
.step-line-1{
    left: 163px;
    top: 26px;

}
.step-line-2{
    left: 452px;
    top: 26px;
}
.step-line-3{
    left: 752px;
    top: 26px;
}
.reviews{
    background-color: #F9FAFB;
    padding: 80px 0;
}

.reviews-title {
    text-align: center;
    font-weight: 200;
    margin-bottom: 16px;
}

.reviews-subtitle {
    text-align: center;
    font-size: 1em;
    color: #6c757d;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: #fff;
    padding: 24px;
    border-radius: 17px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}




.review-card-stars {
    margin-bottom: 15px;
    color: #ffc107;
    font-size: 2em;
}

.star {
    color: #ccc;
}

.star.filled {
    color: #ffc107;
}


.review-card-text {
    flex-grow: 1;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #495057;
}

.review-card-author {
    padding-top: 15px;
}

.review-card-name {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 200;
    text-align: center;
    font-family: sans-serif;
}

.review-card-location {
    font-size: 0.9em;
    font-family: sans-serif;
    color: #868e96;
}
.order-form-section {
    padding: 80px 0;
}
.order-form-section h2{
    text-align: center;
}

.form-title {
    text-align: center;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.form-subtitle {
    text-align: center;
    font-size: 1em;
    color: #6c757d;
    margin-bottom: 40px;
}
.mobile{
    display: none;
    background-color: #FCFDFF;
    padding: 8px 0;
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0);
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.mobile-cont{
    display: flex;
    justify-content: space-between;
}
.mobile-block{
    display: flex;
    align-items: center;
    padding: 0 10px;
}
.mobile-block img {
    width: 30px;
}


.toast {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: min(90vw, 420px);
    width: auto;
    box-sizing: border-box;
    z-index: 9999;

    padding: 12px 18px;
    border-radius: 10px;
    text-align: center;

    font-size: 15px;
    line-height: 1.4;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

/* Успех/ошибка — оставь свои цвета, если уже есть */
.toast.success {
    background: #e8f9f0;
    color: #1b5e20;
}

.toast.error {
    background: #ffeaea;
    color: #b71c1c;
}

.toast.show {
    opacity: 1;
    pointer-events: auto;
}

.order-form textarea {
    height: 240px;
}
@media (max-width:1140px) {
    .col1 .left .row .tag {
        margin-right: auto;
        margin-left: auto;
    }
    .col1 .left .row{
        width: 100%;
    }
    .col1 .left {
        width: 100%;
        text-align: center;
    }
    .col1 .right {
        margin-right: auto;
        margin-left: auto;
        margin-top: 30px;
    }
    .col1 .left .row .row-1 .item {
        justify-content: center;
        margin-right: 25px;
    }
    .col1 .left .row .row-1{
        display: flex;
        justify-content: center;
    }
    .col1 .left .row .row-2 {
        justify-content: center;
    }
    .col1 .left .row .row-3 {
        margin-right: auto;
        margin-left: auto;
    }
    .cards-container .video-card video {
        height: 500px;
    }
    .cards-container .video-card img {
        height: 500px;
    }


}

@media (max-width: 760px) {
    .container {
        width: 600px;
        flex-direction: column;
        align-items: center;
        padding: 0 ;
    }

    .about .container {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        padding: 4px;
    }

    .about .container .card{
        width: 41%;
        margin-bottom: 20px;
    }
    .col1 {
        padding:104px 10px;
    }

    .video-card .volume {
        right: 30px;
        top: 30px;
    }
    .col2 .top {
        width: 100%;
    }
    .col1 .left .row .row-3 {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .cards-container {
        width: 100%;
        justify-content: center;
    }

    .card {
        width: 100%;
        padding: 20px;
    }

    video {
        width: 100%;
        height: auto;
    }

    .guarantee-details-section {
        flex-direction: column;
        padding: 0px;
    }

    .details-content {
        padding: 20px;
    }

    .steps-container {
        flex-direction: column;
    }

    .step {
        max-width: 100%;
        padding-top: 80px;
    }

    .step-line-1 {
        display: none;
    }
    .step-line-2 {
        display: none;
    }
    .step-line-3 {
        display: none;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .col2 .container .service-card {
        width: 47%;
    }
    .col2 .bottom {
        width: 100%;
    }
    .steps-container{
        align-items: center;
    }
    .col1 .left .row .row-3 {
        flex-direction: row;
    }
    .part{
        width: 41%;
    }
    .mobile{
        display: block;
    }
}



@media   (max-width: 550px) {
    .container {
        padding: 0;
        width: 100%;
    }

    .col1 .left .row .row-1 {
        display: block;
    }
    .col1 .left .row h2 {
        font-size: 14px;
    }

    .col1 .left .row p {
        line-height: 24px;
    }
    .col1 .left .row .row-2 {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .col1 .left .row .row-2 button {
        font-size: 14px;
        flex-direction: row;
        margin-right: 10px;
    }

    .col1 .left .row .row-2 .phone {
        margin-left: 0;
        padding: 0 15px;
    }

    .card {
        width: 79%;
        margin-bottom: 30px;
        padding: 15px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-text {
        font-size: 13px;
    }

    .review-card {
        padding: 16px;
    }

    .review-card-name {
        font-size: 14px;
    }
    .step-line-1 {
        display: none;
    }
    .step-line-2 {
        display: none;
    }
    .step-line-3 {
        display: none;
    }
    .how-it-works-section{
        padding: 40px 10px;
    }
    .guarantees-section{
        padding: 40px 10px;
    }
    .col1{
        padding: 40px 10px;
    }
    .col2{
        padding: 40px 10px;
    }
    .reviews{
        padding: 40px 10px;
    }
    .order-form-section{
        padding: 40px 10px;
    }
    .form-subtitle {
        padding: 0 4px;
    }
    .footer-col {
        width: 100%;
    }
    .footer-columns {
        flex-wrap: wrap;
        padding: 10px;
    }
    .col2 .container .service-card {
        width: 100%;
    }
    .col2 .top {
        width: 100%;
    }
    .details-content {
        flex: 1;
        min-width: 100%;
        text-align: start;
    }
    .col2 .bottom {
        width: 100%;
    }
    .cards-container .video-card video {
        height: 400px;
    }
    .cards-container .video-card img{
        height: 400px;
    }
    .video-card .volume  {
        right: 13px;
        top: 13px;
    }
    .video-card .volume .vol {
        width: 30px;
        height: 30px;
    }
    .cards-container .part{
        width: 79%;
    }
    .cards-container .card{
        padding: 10px;
    }
    .icon-circle {
        width: 63px;
        height: 37px;
    }
    .col1 .left .row .row-3 {
        flex-direction: row !important;
        padding-bottom: 20px;
    }
    .col1 .left .row .row-2 button {
        margin-bottom: 15px;
    }
    .mobile{
        display: block;
    }
    .main-footer{
        padding-bottom: 107px;
    }
    .pop-up{
        width: 100%;
    }

    .about .container .card{
        width: 80%;
    }
    .about .container{
        justify-content: center;
    }
}
