﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Helvetica Neue', Helvetica, Arial, 'Poppins', sans-serif;
    color: #fff;
    scroll-behavior: smooth;
    
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333;
}



.hero-mask {
    height: 100vh;
    width: 100%;
    /* position: relative;
    overflow: hidden;*/
    background: #fff; /* на всякий случай */
    color: white;
 
}

.hero-image {
    background: url('imageIQ.png') no-repeat center center/cover;
    height: 100vh;
    width: 100%;
    -webkit-mask-image: url('imageIQ2.png');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: cover;
    mask-image: url('imageIQ2.png');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: cover;
   /* background-attachment:fixed;*/
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.05);
    z-index: 1;
    
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
   
    
}
.hero-shed {
    padding:40px;
    backdrop-filter: blur(30px);
    box-shadow: 0px 0px 30px rgba(227,228,237,0.37);
    border-radius:15px;
    position:center;
    /*border: 2px solid rgba(255,255,255, 0.18)*/
    
}

.logo-fiq {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    text-align: center;
   
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color:white;
}

.hero a {
    padding: 0.8rem 1.5rem;
    background: #3f80ff;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.hero a:hover {
    background: #1f5fe0;
}



.features-section {
    padding: 80px 20px;
    background: #f8f8f8;
    text-align: center;
    background-color: white; /* или нужный тебе фон */
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    margin-top: -20px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2em;
    margin-bottom: 40px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fffaed;
    color: #333;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1.2em;
    line-height: 1.4;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

.feature-card img {
    width: 80px;
    height: 80px;
}


.features-section p {
    padding: 0 40px 40px 40px;
    font-size: 1.2rem;
    position: center;
    margin-bottom: 2rem;
}

.step-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}



.how-it {
    background-color: #E8F5E9;
    padding: 40px;
    position: center;
}
   
    .how-it-works {
    max-width: 700px;
    background-color: #E8F5E9;
    padding: 40px;
    margin: 0 auto;
    padding: 40px 20px;
    position:center
}

.step {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;

    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .step.visible {
        opacity: 1;
        transform: translateY(0);
    }

.step:last-child {
    margin-bottom: 0;
}

.step-icon {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    border: 2px solid #3f80ff;
    color: #0077ff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.step-icon::after {
    content: "";
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 15px);
    background-image: repeating-linear-gradient( to bottom, #0077ff, #3f80ff 3px, transparent 4px, transparent 6px );
    z-index: 0;
}

.step:last-child .step-icon::after {
    display: none;
}

.step-content h3 {
    padding-left: 20px;
    margin: 0 0 5px;
    color: #333;
}

.step-content p {
    margin: 0;
    color: #666;
    font-size: 1.0rem;
    padding-left: 20px;
}

.privacy-section {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    background-color: #fffefa;
}

.privacy-contener {
    width: 700px;
    text-align: left;
    color: #333;
    line-height: 1.6;
}
    .privacy-contener p {
        font-size: 1.2rem;
        color: #666;
        line-height: 1.6;
    }

.cta-section {
    background: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 30px;
    margin: 40px auto;
    max-width: 700px;
    color: #333;
}

.cta-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}


.cta-button {
    background: #3f80ff;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 rgba(63, 128, 255, 0.6);
    animation: pulse 3s infinite;
    display: inline-block;
}

    .cta-button:hover {
        background: #1f5fe0;
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(63, 128, 255, 0.4);
    }

    .cta-button:active {
        transform: scale(0.97);
        box-shadow: 0 4px 10px rgba(31, 95, 224, 0.4);
    }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(63, 128, 255, 0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(63, 128, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(63, 128, 255, 0);
    }
}
.site-footer {
    background-color: #101820;
    color: #ffffffcc;
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 60px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-links {
    margin: 10px 0;
}

.footer-links a {
    color: #ffffffaa;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s;
}

 .footer-links a:hover {
     color: #ffffff;
 }

.footer-socials {
    margin-top: 10px;
}

.footer-socials a {
    color: #3f80ff;
    text-decoration: none;
    font-weight: bold;
}

.footer-socials a:hover {
    text-decoration: underline;
}

.footer-content p {
    color: white;
}