@font-face {
    font-family: 'text';
    src: url(Inter-VariableFont_opsz.ttf);
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'text', sans-serif;
            background: url(../img/bg.png);
            background-size: cover;
            background-position: top;
            background-repeat: no-repeat;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;

        }



        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 20px 40px;
            background: rgba(255, 255, 255, 0.9);
            
            border: 1px solid #7590A170;
            border-radius: 30px;
            padding-right: 20px;
            padding-left: 20px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #2196f3;
        }

        .download-btn {
      background: none;
            color: #000;
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
        }

        .download-btn:hover {
            transform: translateY(-2px);
        }

        .hero-section {
            text-align: center;
            padding: 80px 40px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 350px;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            color: #2196f3;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        .get-started-btn {
            background: #2196f3;
            color: white;
    width: 240px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(33, 150, 243, 0.3);
        }

        .get-started-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(33, 150, 243, 0.4);
        }
.bg_hero{
    background-color: #fff;
    border: 2px solid #7590A170;
    border-radius: 23px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    padding: 15px;
}
        .emoji-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 60px 0;
        }

        .emoji {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            animation: float 3s ease-in-out infinite;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .emoji:nth-child(1) {
            background: #2196f3;
            animation-delay: 0s;
        }

        .emoji:nth-child(2) {
            background: #ffc107;
            animation-delay: 0.5s;
        }

        .emoji:nth-child(3) {
            background: #ffc107;
            animation-delay: 1s;
        }

        .emoji:nth-child(4) {
            background: #e91e63;
            animation-delay: 1.5s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin: 40px auto;
            max-width: 400px;
            border: 2px solid #e3f2fd;
            margin-left: 100px;
        }
.long_card{
    margin-left: 0;
    margin: 0;
    margin-bottom: 20px;
}
        .feature-title {
            color: #2196f3;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .feature-text {
            color: #666;
            line-height: 1.6;
            text-align: left;
        }

        .steps-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            padding: 80px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .step {
            text-align: center;
        }

        .step-number {
            color: #2196f3;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .step-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
                   text-align: left;
        }

        .step-text {
            color: #666;
            line-height: 1.6;
            text-align: left;
        }

        .features-section {
            padding: 80px 40px;
            display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
            gap: 80px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }
        .features-section img{
            width: 60%;
        }
        .phone-mockup {
            position: relative;
        }

        .phone-frame {
            width: 300px;
            height: 600px;
            background: #333;
            border-radius: 40px;
            padding: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            position: relative;
        }

        .feature-list {
            list-style: none;
        }

        .feature-item {
            margin-bottom: 30px;
            padding-left: 40px;
            position: relative;
        }

        .feature-item::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: #2196f3;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .feature-item h3 {
            color: #333;
            font-size: 1.2rem;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .feature-item p {
            color: #666;
            line-height: 1.5;
        }

        .testimonials-section {
            padding: 80px 40px;
            background: rgba(255, 255, 255, 0.5);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial {
    
            padding: 30px;
            border-radius: 20px;
            text-align: center;
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #2196f3;
            margin: 0 auto 20px;
        }

        .testimonial-text {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            color: #333;
            font-weight: 600;
            text-align: right;
        }

        .final-cta {
            text-align: center;
            padding: 80px 40px;
         
            color: white;
        }

        .text_cta h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-transform: uppercase;
            color: #04A0FD;
        }

        .final-cta p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
            color: #000;
        }

        .final-cta-btn {
            background: #2196f3;
            color: #fff;
            padding: 15px 40px;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .final-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        .footer {
            color: white;
            padding: 40px;
            text-align: center;
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 20px;
        }

        .footer-nav a {
            color: #000;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-nav a:hover {
            color: #2196f3;
        }
.cta_block{
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: end;
    backdrop-filter: blur(17.700000762939453px);
    border: 4px solid #04A0FD;
    background: #FFFFFFA6;
    border-radius: 23px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.text_cta{
    display: flex;
    flex-direction: column;
    align-items: start;
}
        @media (max-width: 900px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .features-section {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .emoji-container {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .emoji {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
            .nav-links{
                flex-direction: column;
                align-items: center;
            }
            header{
                display: flex;
                       flex-direction: column;
                align-items: center;
            }
            .download-btn{
                margin-top: 20px;
            }
            body{
                     background: url(../img/bg_mob.png);
            background-size: cover;
            background-position: top;
            background-repeat: no-repeat;
            }
            .features-section{
                flex-direction: column;
                align-items: center;
            }
               .features-section img{
                width: 90%;
               }
               .cta_block{
                flex-direction: column;
                align-items: center;
               }
               .feature-card{
                margin-left: 0;
                margin: 0;
               }
               .footer-nav{
                flex-direction: column;
                align-items: center;
               }
        }