@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@700;900&display=swap');

html, body {
    
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
            /* Убираем резиновый скролл */
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Cabin', sans-serif !important; 
            margin: 0;
            padding: 0;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            background-color: #f8f8f8;
        }

        p {
            margin: 0;
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -khtml-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        
        body::before {
            content: '';
            position: absolute;
            width: min(1000px, 90vw);
            height: min(600px, 50vh);
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, rgba(29, 78, 216, 0.18) 0%, rgba(192, 132, 252, 0.28) 100%);
            filter: blur(180px);
            opacity: 0.9;
            border-radius: 50%;
            z-index: -1;
        }

        body::after {
            content: '';
            position: absolute;
            width: min(1100px, 95vw);
            height: min(500px, 40vh);
            bottom: -100px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, rgba(34, 211, 238, 0.15) 0%, rgba(79, 70, 229, 0.25) 100%);
            filter: blur(150px);
            opacity: 0.8;
            border-radius: 50%;
            z-index: -1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        /* HEADER STYLES */
        .header {
            background-color: transparent;
            padding: 20px 0;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-left: 50px;
            padding-right: 50px;
            box-sizing: border-box;
        }

        .logo {
            font-family: 'Roboto Mono', monospace;
            font-size: clamp(20px, 4vw, 36px);
            font-weight: 900;
            color: #222;
            line-height: 0.9;
            text-transform: lowercase;
            position: relative;
            white-space: pre-line;
            z-index: 1001;
        }

        .header-right-nav {
            display: flex;
            align-items: center;
            gap: 20px;
            z-index: 1001;
        }

        .nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav ul li a {
            text-decoration: none;
            color: #555;
            font-weight: 700;
            font-size: 16px;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .nav ul li a:hover {
            color: #000;
        }

        .kickstart-button {
            background-color: #ff6b00;
            color: #fff;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s ease;
            white-space: nowrap;
            text-decoration: none;
            display: inline-block;
        }

        .kickstart-button:hover {
            background-color: #e05e00;
        }

        
        .main-content-area-with-gradient {
            position: relative;
            z-index: 1;
            padding-top: 80px;
            background: transparent;
            min-height: 100vh;
            overflow: hidden;
        }

        /*секция Launch Your Product*/
        .hero-section {
            padding-top: clamp(80px, 15vh, 120px);
            padding-bottom: 0px;
            text-align: center;
            position: relative;
            overflow: visible;
            background-color: transparent;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            min-height: 550px;
            z-index: 2;
        }

        .hero-content-area {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            max-width: 1400px;
            z-index: 3;
            margin: 0 auto;
            padding: 0 clamp(15px, 4vw, 40px);
            box-sizing: border-box;
        }

        .hero-content-area h1 {
            font-size: clamp(32px, 8vw, 100px);
            font-weight: 700;
            color: #222;
            margin: 0 0 10px 0;
            line-height: 1.1;
            text-align: center;
            width: 100%;
            box-sizing: border-box;
        }

        .hero-content-area h1 span {
            color: #ff6b00;
        }

        .hero-main-content {
            position: relative;
            width: 100%;
            max-width: 1000px;
            text-align: center;
            z-index: 3;
            padding: 0 20px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            box-sizing: border-box;
        }

        .founders-swear {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 5px;
            margin-bottom: 0px;
            font-size: clamp(16px, 3vw, 25px);
            color: #555;
            font-weight: 400;
            width: 100%;
            flex-wrap: wrap;
            gap: 8px;
        }

        .founders-swear .stars {
            color: #ffd700;
            font-size: 16px;
        }

        .testimonial {
            padding: 0;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            position: relative;
            z-index: 3;
            text-align: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .testimonial p {
            font-style: italic;
            font-size: clamp(18px, 3.5vw, 28px);
            color: #444;
            margin: 0;
            font-weight: bold;
        }

        .testimonial .author {
            display: flex;
            align-items: center;
            font-size: clamp(16px, 3vw, 24px);
            color: #666;
            font-weight: bold;
            gap: 8px;
        }

        .testimonial .author .avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            background-color: #ddd;
        }

        
        .rocket-image {
            position: absolute;
            width: clamp(60px, 15vw, 270px);
            height: clamp(60px, 15vw, 270px);
            top: clamp(20px, 8vh, 90px);
            right: clamp(20px, 8vw, 80px);
            z-index: 5;
            pointer-events: none;
            
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }


        /*СЕКЦИЯ С ЧАСАМИ И СКИДКОЙ*/
        
      .deal-section {
            margin-top: clamp(40px, 8vh, 60px);
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: 800px;
        }

        .deal-title {
            font-size: clamp(16px, 2.5vw, 20px);
            color: #666;
            margin-bottom: -5px;
            margin-top: 10px;
            font-weight: 700;
        }

        .deal-description {
            font-size: clamp(20px, 4vw, 30px);
            font-weight: 700;
            color: #222;
            margin-top: 0px;
            margin-bottom: 5px;
            text-align: center;
        }

        .countdown {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 12px;
            margin-top: 0;
            box-sizing: border-box;
            flex-wrap: wrap;
            gap: clamp(4px, 1vw, 12px);
        }

        .countdown-item {
            background-color: transparent;
            border: 1px solid #6633BD;
            border-radius: 8px;
            padding: 0;
            width: clamp(40px, 8vw, 65px);
            height: clamp(40px, 8vw, 65px);
            box-shadow: none;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            flex-shrink: 0;
        }

        .countdown-inner-gradient {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1D4ED8 0%, #C084FC 100%);
            opacity: 0.15;
            z-index: 0;
        }

        .countdown-value {
            font-size: clamp(16px, 4vw, 32px);
            font-weight: 700;
            color: #222;
            z-index: 1;
            position: relative;
        }

        .countdown-separator {
            font-size: clamp(16px, 4vw, 32px);
            font-weight: 700;
            color: #ff6b00;
        }

        .last-chance-button {
            background-color: #ff6b00;
            color: #fff;
            border: none;
            padding: clamp(10px, 2vw, 12px) clamp(25px, 4vw, 35px);
            border-radius: 50px;
            font-size: clamp(14px, 2.5vw, 16px);
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s ease;
            white-space: nowrap;
          
            box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
            box-sizing: border-box;
            text-decoration: none;
            display: inline-block;
        }

        .last-chance-button:hover {
            background-color: #e05e00;
        }

/* Якорная кнопка Book a Call */ .buttons-section {
            display: -webkit-flex !important;
            display: flex !important;
            -webkit-box-pack: center !important;
            -webkit-justify-content: center !important;
            justify-content: center !important;
            -webkit-box-align: center !important;
            -webkit-align-items: center !important;
            align-items: center !important;
            gap: 20px;
            margin-top: 30px;
            margin-bottom: 10px;
            -webkit-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
            width: 100%;
            max-width: 500px;
            -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
        }

        .feature-button {
            display: -webkit-flex !important;
            display: flex !important;
            -webkit-box-align: center !important;
            -webkit-align-items: center !important;
            align-items: center !important;
            gap: 10px;
            padding: 15px 25px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            -webkit-transition: all 0.3s ease !important;
            transition: all 0.3s ease !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            white-space: nowrap;
            width: 240px;
            -webkit-box-pack: center !important;
            -webkit-justify-content: center !important;
            justify-content: center !important;
            background-color: #ff6b00 !important;
            color: white !important;
            text-decoration: none !important;
            -webkit-flex-shrink: 0 !important;
            flex-shrink: 0 !important;
            -webkit-appearance: none !important;
            -webkit-tap-highlight-color: transparent !important;
            -webkit-user-select: none !important;
            -webkit-touch-callout: none !important;
            -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
            -webkit-font-smoothing: antialiased !important;
            -moz-osx-font-smoothing: grayscale !important;
        }

.feature-button:hover,
.feature-button:active {
    background-color: #ff6b00;
    opacity: 0.8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}

/* Фикс для iOS touch события */
.feature-button:active {
    transform: translateY(0);
    opacity: 0.9;
}

.button-icon {
    font-size: 18px;
    flex-shrink: 0;
    /* Фикс для эмодзи на iOS */
    -webkit-font-feature-settings: "liga" off;
    font-feature-settings: "liga" off;
}

 .button-content {
            display: -webkit-flex !important;
            display: flex !important;
            -webkit-flex-direction: column !important;
            flex-direction: column !important;
            -webkit-box-align: start !important;
            -webkit-align-items: flex-start !important;
            align-items: flex-start !important;
            text-align: left;
            -webkit-user-select: none !important;
            user-select: none !important;
        }

.button-title {
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 700;
    margin-bottom: 2px;
    /* Фикс для iOS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.button-subtitle {
    font-size: clamp(12px, 2vw, 14px);
    opacity: 0.9;
    font-weight: 400;
    /* Фикс для iOS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Стили для кнопки "Book A Call" */
.book-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px 12px;
    font-weight: 700;
    font-size: 11px;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    justify-content: center;
    animation: bookCallPulse 2s infinite;
    z-index: 999999;
    width: 70px;
    min-height: 85px;
    /* Фиксы для iOS */
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.book-call-button:hover,
.book-call-button:active {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.7);
    background: linear-gradient(135deg, #FF6B35, #E05A1F);
}

/* Фикс для iOS touch */
.book-call-button:active {
    transform: scale(1.05);
}

.book-call-icon {
    width: 36px;
    height: 36px;
    fill: white;
    animation: bookCallBounce 1.5s infinite alternate;
    /* Фикс для изображений на iOS */
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.book-call-text {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    width: 100%;
    /* Фикс для текста на iOS */
    -webkit-user-select: none;
    user-select: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Анимации */
@keyframes bookCallPulse {
    0% {
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    }
    50% {
        box-shadow: 0 6px 35px rgba(255, 107, 53, 0.8), 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    100% {
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5), 0 0 0 20px rgba(255, 107, 53, 0);
    }
}

@keyframes bookCallBounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-3px);
    }
}

/* Медиа-запросы для мобильных устройств */
@media screen and (max-width: 768px) {
    .buttons-section {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
        margin-bottom: 10px;
        padding: 0 10px;
    }

    .feature-button {
        width: 240px;
        padding: 14px 20px;
        min-width: 240px;
    }

    .button-content {
        align-items: center;
        text-align: center;
    }

    .button-icon {
        font-size: 16px;
    }
    
    .book-call-button {
        bottom: 25px;
        right: 25px;
        width: 60px;
        min-height: 75px;
        padding: 12px 10px;
        border-radius: 20px;
    }
    
    .book-call-icon {
        width: 24px;
        height: 24px;
    }
    
    .book-call-text {
        font-size: 9px;
    }
}

@media screen and (max-width: 480px) {
    .buttons-section {
        gap: 10px;
        margin-top: 15px;
        padding: 0 15px;
    }

    .feature-button {
        width: 200px;
        min-width: 200px;
        padding: 12px 18px;
    }

    .button-title {
        font-size: 13px;
    }

    .button-subtitle {
        font-size: 11px;
    }

    .button-icon {
        font-size: 14px;
    }
    
    .book-call-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        min-height: 65px;
        padding: 10px 8px;
        border-radius: 18px;
    }
    
    .book-call-icon {
        width: 20px;
        height: 20px;
    }
    
    .book-call-text {
        font-size: 8px;
        letter-spacing: 0.2px;
    }
}

@media screen and (max-width: 390px) {
    .feature-button {
        width: 180px;
        min-width: 180px;
        padding: 10px 15px;
    }

    .button-title {
        font-size: 12px;
    }

    .button-subtitle {
        font-size: 10px;
    }
}

@media screen and (max-width: 360px) {
    .book-call-button {
        bottom: 15px;
        right: 15px;
        width: 50px;
        min-height: 60px;
        padding: 8px 6px;
        border-radius: 15px;
    }
    
    .book-call-icon {
        width: 18px;
        height: 18px;
    }
    
    .book-call-text {
        font-size: 7px;
    }
}

/* Специальные фиксы для iPhone */
@media screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
    .feature-button {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .book-call-button {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* Альбомная ориентация */
@media screen and (max-width: 768px) and (orientation: landscape) and (max-height: 500px) {
    .buttons-section {
        margin-top: 10px;
        margin-bottom: 5px;
        gap: 8px;
    }

    .feature-button {
        padding: 10px 15px;
        width: 160px;
        min-width: 160px;
    }
}

/* Дополнительные стили */
.deal-section {
    margin-top: clamp(20px, 4vh, 30px) !important;
}

#countdown-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin: -10px 0;
}
        /*бургер кнопка на телефоне*/
        
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1002;
            transition: all 0.3s ease;
        }

        .burger-line {
            width: 25px;
            height: 3px;
            background-color: #333;
            margin: 2px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .mobile-only {
            display: none;
        }

        .desktop-only {
            display: block;
        }

        .menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .menu-overlay.active {
            display: block;
            opacity: 1;
        }

        
        @media screen and (max-width: 1024px) and (min-width: 769px) {
            .header {
                padding-left: 30px;
                padding-right: 30px;
            }
            
            .nav ul {
                gap: 20px;
            }
            
            .nav ul li a {
                font-size: 14px;
            }
            
            .kickstart-button {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .rocket-image {
                right: 20px;
            }
        }

        
        @media screen and (max-width: 768px) {
            .header {
                padding: 15px 20px;
                position: fixed;
                background-color: rgba(248, 248, 248, 0.95);
                backdrop-filter: blur(10px);
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }
            
            .header-right-nav {
                gap: 15px;
                position: relative;
            }
            
            .mobile-menu-toggle {
                display: flex;
                z-index: 1002;
            }
            
            .desktop-only {
                display: none;
            }
            
            .mobile-only {
                display: block;
            }
            
            .nav ul {
                display: none;
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 80px 30px 30px;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                z-index: 1001;
                gap: 20px;
                transition: right 0.3s ease;
                overflow-y: auto;
            }
            
            .nav ul.active {
                display: flex;
                right: 0;
            }
            
            .nav ul li {
                width: 100%;
                text-align: left;
            }
            
            .nav ul li a {
                display: block;
                padding: 15px 0;
                font-size: 18px;
                color: #333;
                border-bottom: 1px solid #eee;
                text-decoration: none;
                transition: color 0.3s ease;
                cursor: pointer;
                width: 100%;
            }
            
            .nav ul li a:hover {
                color: #ff6b00;
            }
            
            .mobile-kickstart {
                background-color: #ff6b00 !important;
                color: white !important;
                padding: 15px 25px !important;
                border-radius: 50px !important;
                font-weight: 700 !important;
                border: none !important;
                margin-top: 20px !important;
                cursor: pointer !important;
                text-decoration: none !important;
                display: inline-block !important;
                width: auto !important;
                text-align: center !important;
            }
            
            .mobile-kickstart:hover {
                background-color: #e05e00 !important;
            }
            
            .hero-section {
                min-height: auto;
                padding-bottom: 40px;
                padding-top: 120px;
            }
            
            .rocket-image {
                position: static;
                display: block;
                margin: 20px auto 0;
                width: clamp(50px, 12vw, 80px);
                height: clamp(50px, 12vw, 80px);
            }
            
            .testimonial {
                flex-direction: column;
                gap: 15px;
                margin-top: 20px;
            }
            
            .countdown {
                justify-content: center;
                gap: 8px;
            }
        }

        @media screen and (max-width: 480px) {
            .header {
                padding: 10px 15px;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .hero-content-area {
                padding: 0 15px;
            }
            
            .hero-section {
                padding-top: 100px;
            }
            
            .founders-swear {
                gap: 5px;
            }
            
            .countdown {
                gap: 6px;
            }
            
            .nav ul {
                width: 100vw;
                right: -100vw;
                padding: 80px 20px 30px;
            }
            
            .nav ul.active {
                right: 0;
            }
        }

        @media screen and (max-width: 768px) and (orientation: landscape) and (max-height: 500px) {
            .hero-section {
                padding-top: 80px;
                min-height: auto;
            }
            
            .rocket-image {
                width: 40px;
                height: 40px;
                margin: 10px auto 0;
            }
            
            .deal-section {
                margin-top: 20px;
            }
        }


  .buttons-section {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            margin-bottom: 10px;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            width: 100%;
            max-width: 500px;
        }

        .feature-button {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px 25px;
            border-radius: 50px;
            font-size: clamp(14px, 2.5vw, 16px);
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            white-space: nowrap;
            width: 240px;
            justify-content: center;
            background-color: #ff6b00;
            color: white;
            text-decoration: none;
            flex-shrink: 0;
        }

        .feature-button:hover {
            background-color: #ff6b00;
            opacity: 0.8;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
        }

        .button-icon {
            font-size: 18px;
            flex-shrink: 0;
        }

        .button-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }

        .button-title {
            font-size: clamp(14px, 2.5vw, 16px);
            font-weight: 700;
            margin-bottom: 2px;
        }

        .button-subtitle {
            font-size: clamp(12px, 2vw, 14px);
            opacity: 0.9;
            font-weight: 400;
        }

        @media screen and (max-width: 768px) {
            .buttons-section {
                flex-direction: column;
                gap: 12px;
                margin-top: 20px;
                margin-bottom: 10px;
            }

            .feature-button {
                width: 240px;
                padding: 14px 20px;
            }

            .button-content {
                align-items: center;
                text-align: center;
            }

            .button-icon {
                font-size: 16px;
            }
        }

        @media screen and (max-width: 480px) {
            .buttons-section {
                gap: 10px;
                margin-top: 15px;
            }

            .feature-button {
                width: 200px;
                padding: 12px 18px;
            }

            .button-title {
                font-size: 13px;
            }

            .button-subtitle {
                font-size: 11px;
            }

            .button-icon {
                font-size: 14px;
            }
        }

        @media screen and (max-width: 320px) {
            .feature-button {
                width: 180px;
                padding: 10px 15px;
            }

            .button-title {
                font-size: 12px;
            }

            .button-subtitle {
                font-size: 10px;
            }
        }

        @media screen and (max-width: 768px) and (orientation: landscape) and (max-height: 500px) {
            .buttons-section {
                margin-top: 10px;
                margin-bottom: 5px;
                gap: 8px;
            }

            .feature-button {
                padding: 10px 15px;
                width: 160px;
            }
        }
.deal-section {
    margin-top: clamp(20px, 4vh, 30px) !important;
}














/*секция карточек под часами  */
.services-section {
    padding: 80px 0 20px 0;
    background-color: transparent;
    position: relative;
    z-index: 2;
    margin-top: 50px;
    padding-top: 0px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-top: 0px;
    justify-items: center;
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;
    border: 1px solid #6633BD;
    width: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card .icon-circle {
    background-color: #FFEDD5;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
}

.service-card .icon-circle svg {
    width: 28px;
    height: 28px;
    fill: #ff6b00;
}

.service-card .icon-circle img {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 22px;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}


@media (max-width: 1024px) {
    .services-section {
        
        padding: 60px 20px 20px 20px !important;
        margin-top: 40px !important;
    }
    
    .service-grid {
        gap: 25px !important;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    }
    
    .service-card {
        max-width: 320px !important;
        padding: 25px !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px !important;
    }
    
    .services-section {
       
        padding: 50px 20px 20px 20px !important;
        margin-top: 30px !important;
    }
    
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 20px !important;
    }
    
    .service-card {
        max-width: 100% !important;
        padding: 20px !important;
    }
    
    .service-card h3 {
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }
    
    .service-card p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
    
    .service-card .icon-circle {
        width: 55px !important;
        height: 55px !important;
        margin-bottom: 18px !important;
    }
    
    .service-card .icon-circle img {
        width: 26px !important;
        height: 26px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px !important;
    }
    
    .services-section {
        
        padding: 40px 15px 15px 15px !important;
        margin-top: 25px !important;
    }
    
    .service-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
    
    .service-card {
        padding: 18px !important;
        border-radius: 10px !important;
    }
    
    .service-card h3 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }
    
    .service-card p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    .service-card .icon-circle {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 15px !important;
    }
    
    .service-card .icon-circle img {
        width: 24px !important;
        height: 24px !important;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px !important;
    }
    
    .services-section {
       
        padding: 40px 10px 15px 10px !important;
    }

    .service-card {
        padding: 15px !important;
        border-radius: 10px !important;
    }
    
    .service-card h3 {
        font-size: 17px !important;
    }
    
    .service-card p {
        font-size: 13px !important;
    }
}

/*секция what we offer */
 
.offer-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    margin-top: 0;
    background-color: transparent;
    margin-bottom: 80px; 
}

.offer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.offer-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 1px;
    color: #222; 
    margin-left: 0;
}

.offer-subtitle {
    font-size: 18px;
    color: #555; 
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: 0;
    margin-right: auto; 
}

.offer-cards {
    height: auto; 
    display: grid; 
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr; 
    gap: 0; 
    background-color: #1e293b; 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); 
    border: 1px solid #434959; 
    align-items: stretch; 
}

.offer-card {
    padding: 40px 25px;
    color: white;
    border-right: 1px solid #434959; 
    border-bottom: none;
    transition: background-color 0.3s ease;
    background-color: transparent;
    text-align: left; 
    border-radius: 0;
    display: flex;
    flex-direction: column; 
    justify-content: flex-start; 
    height: 100%; 
    box-sizing: border-box; 
}

.offer-card:nth-child(4n) {
    border-right: none;
}

.offer-card .icon {
    margin-bottom: 20px;
}

.offer-card .icon img {
    width: 40px;
    height: 40px;
}

.offer-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.offer-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #cbd5e1;
}

.offer-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
}


@media (max-width: 1024px) {
    .offer-section {
        padding: 60px 0 !important;
        margin-bottom: 60px !important;
    }
    
    .offer-container {
        padding: 0 15px !important;
    }
    
    .offer-title {
        font-size: 32px !important;
    }
    
    .offer-subtitle {
        font-size: 17px !important;
        margin-bottom: 40px !important;
    }
    
    .offer-cards {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .offer-card {
        padding: 35px 20px !important;
    }
    
    .offer-card:nth-child(2n) {
        border-right: none !important;
    }
    
    .offer-card:nth-child(4n) {
        border-right: 1px solid #434959 !important;
    }
    
    .offer-card:nth-child(-n+2) {
        border-bottom: 1px solid #434959 !important;
    }
}

@media (max-width: 768px) {
    .offer-section {
        padding: 50px 0 !important;
        margin-bottom: 50px !important;
    }
    
    .offer-container {
        padding: 0 12px !important;
    }
    
    .offer-title {
        font-size: 28px !important;
        text-align: center !important;
    }
    
    .offer-subtitle {
        font-size: 16px !important;
        margin-bottom: 35px !important;
        text-align: center !important;
        margin-left: auto !important;
    }
    
    .offer-cards {
        grid-template-columns: 1fr !important;
        border-radius: 15px !important;
    }
    
    .offer-card {
        padding: 30px 20px !important;
        border-right: none !important;
        border-bottom: 1px solid #434959 !important;
        text-align: center !important;
    }
    
    .offer-card:last-child {
        border-bottom: none !important;
    }
    
    .offer-card:nth-child(2n) {
        border-right: none !important;
    }
    
    .offer-card:nth-child(4n) {
        border-right: none !important;
    }
    
    .offer-card:nth-child(-n+2) {
        border-bottom: 1px solid #434959 !important;
    }
    
    .offer-card .icon {
        display: flex !important;
        justify-content: center !important;
        margin-bottom: 18px !important;
    }
    
    .offer-card h3 {
        font-size: 19px !important;
        margin-bottom: 12px !important;
    }
    
    .offer-card p {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 480px) {
    .offer-section {
        padding: 40px 0 !important;
        margin-bottom: 40px !important;
    }
    
    .offer-container {
        padding: 0 10px !important;
    }
    
    .offer-title {
        font-size: 24px !important;
    }
    
    .offer-subtitle {
        font-size: 15px !important;
        margin-bottom: 30px !important;
    }
    
    .offer-cards {
        border-radius: 12px !important;
    }
    
    .offer-card {
        padding: 25px 15px !important;
    }
    
    .offer-card .icon img {
        width: 35px !important;
        height: 35px !important;
    }
    
    .offer-card h3 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }
    
    .offer-card p {
        font-size: 14px !important;
    }
}

@media (max-width: 360px) {
    .offer-section {
        padding: 35px 0 !important;
        margin-bottom: 35px !important;
    }
    
    .offer-title {
        font-size: 22px !important;
    }
    
    .offer-subtitle {
        font-size: 14px !important;
        margin-bottom: 25px !important;
    }
    
    .offer-card {
        padding: 20px 12px !important;
    }
    
    .offer-card .icon img {
        width: 32px !important;
        height: 32px !important;
    }
    
    .offer-card h3 {
        font-size: 17px !important;
    }
    
    .offer-card p {
        font-size: 13px !important;
    }
}

.offer-section::before{
  content: '';
            position: absolute;
            width: min(1000px, 90vw);
            height: min(600px, 50vh);
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, rgba(29, 78, 216, 0.18) 0%, rgba(192, 132, 252, 0.28) 100%);
            filter: blur(180px);
            opacity: 0.9;
            border-radius: 50%;
            z-index: -1;
}
.offer-section::after{
content: '';
            position: absolute;
            width: min(1100px, 95vw);
            height: min(500px, 40vh);
            bottom: -100px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, rgba(34, 211, 238, 0.15) 0%, rgba(79, 70, 229, 0.25) 100%);
            filter: blur(150px);
            opacity: 0.8;
            border-radius: 50%;
            z-index: -1;

}

/*секция why choose us */

.why-choose-mvp-section::before{
    content: '';
            position: absolute;
            width: min(1000px, 90vw);
            height: min(600px, 50vh);
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, rgba(29, 78, 216, 0.18) 0%, rgba(192, 132, 252, 0.28) 100%);
            filter: blur(180px);
            opacity: 0.9;
            border-radius: 50%;
            z-index: -1;
}
.why-choose-mvp-section::after{
    content: '';
            position: absolute;
            width: min(1100px, 95vw);
            height: min(500px, 40vh);
            bottom: -100px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, rgba(34, 211, 238, 0.15) 0%, rgba(79, 70, 229, 0.25) 100%);
            filter: blur(150px);
            opacity: 0.8;
            border-radius: 50%;
            z-index: -1;
}.why-choose-mvp-section {
    padding: 20px 0;
    position: relative;
    z-index: 2;
    background-color: transparent; 
    margin-top: -80px; 
    padding-bottom: 100px;
}

.why-choose-mvp-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header-wrapper {
    text-align: left; 
    margin-bottom: 35px;
    position: relative; 
    z-index: 3; 
}

.section-header-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222; 
    margin-bottom: 15px;
}

.section-header-wrapper p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0; 
    line-height: 1.7;
}

.cards-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0; 
    background-color: #1e293b; 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); 
    border: 1px solid #434959;
    
    align-items: stretch;
}

.why-choose-card {
    background-color: transparent; 
    border-radius: 0; 
    padding: 30px 25px;
    box-shadow: none; 
    transition: background-color 0.3s ease;
    border-right: 1px solid #434959; 
    border-bottom: none; 
    text-align: left; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-start; 
    box-sizing: border-box;
    min-height: 350px;
}

.why-choose-card:nth-child(4n) {
    border-right: none;
}

.why-choose-card:hover {
    background-color: rgba(255, 255, 255, 0.05); 
}

.why-choose-icon {
    margin-bottom: 25px;
    flex-shrink: 0;
}

.why-choose-card .why-choose-icon img {
    width: 48px;
    height: 48px;
}

.why-choose-card h3 {
    font-family: 'Cabin', sans-serif;
    font-size: 22px;
    font-weight: 700; 
    margin-bottom: 15px;
    color: #fff; 
    text-align: left;
    white-space: normal; 
    overflow-wrap: break-word;
    flex-shrink: 0;
}

.why-choose-card p {
    font-size: 16px;
    line-height: 2.2; 
    color: #d1d5db; 
    font-weight: 600;
    text-align: left;
    white-space: normal;
    overflow-wrap: break-word;
    margin: 0;
}


@media (max-width: 1024px) {
    .why-choose-mvp-section {
        padding: 15px 0 !important;
        margin-top: -60px !important;
        padding-bottom: 40px !important;
    }

    .section-header-wrapper {
        margin-bottom: 30px !important;
    }

    .section-header-wrapper h2 {
        font-size: 32px !important;
    }

    .section-header-wrapper p {
        font-size: 17px !important;
    }

    .cards-grid-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .why-choose-card {
        padding: 30px 20px !important;
        /* max-height: 150PX; */
    }

    .why-choose-card:nth-child(2n) {
        border-right: none !important;
    }

    .why-choose-card:nth-child(4n) {
        border-right: 1px solid #434959 !important;
    }

    .why-choose-card:nth-child(-n+2) {
        border-bottom: 1px solid #434959 !important;
    }
}

@media (max-width: 768px) {
    .why-choose-mvp-section {
        padding: 10px 0 !important;
        margin-top: -40px !important;
        padding-bottom: 30px !important;
    }

    .why-choose-mvp-section .container {
        padding: 0 15px !important;
    }

    .section-header-wrapper {
        margin-bottom: 25px !important;
        text-align: center !important;
    }

    .section-header-wrapper h2 {
        font-size: 28px !important;
    }

    .section-header-wrapper p {
        font-size: 16px !important;
        margin: 0 auto !important;
    }

    .cards-grid-wrapper {
        grid-template-columns: 1fr !important;
        border-radius: 15px !important;
    }

    .why-choose-card {
        padding: 25px 20px !important;
        border-right: none !important;
        border-bottom: 1px solid #434959 !important;
        text-align: center !important;
    }

    .why-choose-card:last-child {
        border-bottom: none !important;
    }

    .why-choose-card:nth-child(2n) {
        border-right: none !important;
    }

    .why-choose-card:nth-child(4n) {
        border-right: none !important;
    }

    .why-choose-card:nth-child(-n+2) {
        border-bottom: 1px solid #434959 !important;
    }

    .why-choose-icon {
        display: flex !important;
        justify-content: center !important;
        margin-bottom: 18px !important;
    }

    .why-choose-card h3 {
        font-size: 20px !important;
        text-align: center !important;
        margin-bottom: 12px !important;
    }

    .why-choose-card p {
        font-size: 14px !important;
        text-align: center !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 480px) {
    .why-choose-mvp-section {
        padding: 5px 0 !important;
        margin-top: -30px !important;
        padding-bottom: 25px !important; 
    }

    .why-choose-mvp-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 12px !important;
    }

    .section-header-wrapper {
        margin-bottom: 20px !important;
    }

    .section-header-wrapper h2 {
        font-size: 24px !important;
    }

    .section-header-wrapper p {
        font-size: 15px !important;
    }

    .cards-grid-wrapper {
        border-radius: 12px !important;
    }

    .why-choose-card {
        padding: 25px 15px !important;
    }

    .why-choose-card .why-choose-icon img {
        width: 42px !important;
        height: 42px !important;
    }

    .why-choose-card h3 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }

    .why-choose-card p {
        font-size: 13px !important;
    }
}

@media (max-width: 360px) {
    .why-choose-mvp-section {
        padding: 0 !important;
        margin-top: -25px !important;
        padding-bottom: 20px !important;
    }

    .why-choose-mvp-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 10px !important;
    }

    .section-header-wrapper {
        margin-bottom: 18px !important;
    }

    .section-header-wrapper h2 {
        font-size: 22px !important;
    }

    .section-header-wrapper p {
        font-size: 14px !important;
    }

    .why-choose-card {
        padding: 20px 12px !important;
    }

    .why-choose-card .why-choose-icon img {
        width: 38px !important;
        height: 38px !important;
    }

    .why-choose-card h3 {
        font-size: 17px !important;
    }

    .why-choose-card p {
        font-size: 12px !important;
    }
}
/* примеры работ секция */
.our-work-section {
            padding: 0px 0 100px 0;
            position: relative;
            z-index: 2;
            background-color: transparent;
        }

        .our-work-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            position: relative;
            z-index: 3;
        }

        .our-work-title {
            font-family: 'Cabin', sans-serif;
            font-size: clamp(28px, 4vw, 36px);
            font-weight: bold;
            margin-bottom: 15px;
            text-align: center;
        }

        .our-work-subtitle {
            font-size: clamp(20px, 2vw, 18px);
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            line-height: 1.7;
        }

        .our-work-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            align-items: stretch;
        }

        .bottom-row-cards {
            grid-column: 1 / -1;
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .bottom-row-cards .work-card {
            flex: 0 0 280px;
            max-width: 280px;
        }

        .work-card {
            background-color: #FFFFFF;
            border: 1px solid #E9E9EC;
            border-radius: 12px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            text-align: left;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            min-height: 320px;
            position: relative;
        }

        .work-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

        .app-header {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 16px;
        }

        .app-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            object-fit: cover;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            background: #f0f0f0;
        }

         .work-card h4 {
            font-family: 'Cabin', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: #222;
            margin: 0;
            line-height: 1.3;
        }

        .work-card p {
            font-family: 'Cabin', sans-serif;
            font-size: 15px;
            color: #666;
            line-height: 1.6;
            flex-grow: 1;
            margin-bottom: 8px;
        }

        .app-store-image-link,
        .coming-soon-button {
            margin-top: auto;
            align-self: center;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 160px;
            height: 48px;
            border-radius: 8px;
            text-decoration: none;
            font-family: 'Cabin', sans-serif;
            font-weight: 600;
        }

        .app-store-image-link {
            background: transparent;
            border: none;
        }

        .app-store-image-link img {
            width: 160px;
            height: auto;
            display: block;
        }

        
        .app-store-image-link:hover {
            transform: scale(1.05);
        }

        .coming-soon-button {
            background-color: #f8f9fa;
            color: #222;
            border: 2px solid #222;
            font-size: 14px;
            cursor: not-allowed;
        }

         @media (max-width: 1024px) {
            .our-work-section::before {
                width: 85%;
                height: 65%;
            }

            .our-work-section {
                padding: 32px 0 80px 0;
            }

            .our-work-container {
                padding: 0 16px;
            }

            .our-work-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .bottom-row-cards {
                flex-wrap: wrap;
                gap: 16px;
                margin-top: 16px;
            }

            .bottom-row-cards .work-card {
                flex: 0 0 calc(50% - 8px);
                max-width: calc(50% - 8px);
            }

            .work-card {
                padding: 20px;
                min-height: 220px;
            }

            .work-card p {
                margin-bottom: 4px;
            }

            .app-store-image-link,
            .coming-soon-button {
                width: 140px;
                height: 44px;
            }

            .app-store-image-link img {
                width: 140px;
            }
        }

        
        @media (max-width: 768px) {
            .our-work-section::before {
                width: 90%;
                height: 70%;
                top: 10px;
            }

            .our-work-section {
                padding: 24px 0 60px 0;
            }

            .our-work-subtitle {
                margin-bottom: 32px;
                text-align: left;
            }

            .our-work-title {
                text-align: left;
            }

            .our-work-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .bottom-row-cards {
                flex-direction: column;
                align-items: center;
                gap: 16px;
                margin-top: 16px;
            }

            .bottom-row-cards .work-card {
                flex: none;
                width: 100%;
                max-width: none;
            }

            .work-card {
                padding: 20px;
                min-height: 200px;
                border-radius: 8px;
            }

            .work-card p {
                font-size: 14px;
                margin-bottom: 3px;
            }

            .app-header {
                gap: 12px;
                margin-bottom: 12px;
            }

            .app-icon {
                width: 56px;
                height: 56px;
                border-radius: 12px;
            }

            .work-card h4 {
                font-size: 18px;
            }

            .app-store-image-link,
            .coming-soon-button {
                width: 140px;
                height: 42px;
            }

            .app-store-image-link img {
                width: 140px;
            }

            .coming-soon-button {
                font-size: 13px;
            }
        }

        
        @media (max-width: 480px) {
            .our-work-section::before {
                width: 95%;
            }

            .our-work-container {
                padding: 0 12px;
            }

            .work-card {
                padding: 16px;
                min-height: 180px;
            }

            .work-card p {
                font-size: 13px;
                margin-bottom: 2px;
            }

            .app-icon {
                width: 48px;
                height: 48px;
                border-radius: 10px;
            }

            .work-card h4 {
                font-size: 16px;
            }

            .app-store-image-link,
            .coming-soon-button {
                width: 130px;
                height: 40px;
            }

            .app-store-image-link img {
                width: 130px;
            }
        }
        
        
        @media (max-width: 360px) {
            .work-card p {
                margin-bottom: 1px;
            }
        }


        .our-work-section::before{
            content: '';
            position: absolute;
            width: min(1000px, 90vw);
            height: min(600px, 50vh);
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, rgba(29, 78, 216, 0.18) 0%, rgba(192, 132, 252, 0.28) 100%);
            filter: blur(180px);
            opacity: 0.9;
            border-radius: 50%;
            z-index: -1;
        }
        .our-work-section::after{
              content: '';
            position: absolute;
            width: min(1100px, 95vw);
            height: min(500px, 40vh);
            bottom: -100px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, rgba(34, 211, 238, 0.15) 0%, rgba(79, 70, 229, 0.25) 100%);
            filter: blur(150px);
            opacity: 0.8;
            border-radius: 50%;
            z-index: -1;
        }

/*техстек  */

 .tech-toolkit-section {
    margin-top: -40px;
              padding: 0px 0 10px 0;
            background-color: transparent;
            position: relative;
            z-index: 2;
        }

        
        .tech-toolkit-section::before {
            content: '';
            position: absolute;
            width: min(1000px, 90vw);
            height: min(600px, 50vh);
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, rgba(29, 78, 216, 0.18) 0%, rgba(192, 132, 252, 0.28) 100%);
            filter: blur(180px);
            opacity: 0.9;
            border-radius: 50%;
            z-index: -1;
        }

        .tech-toolkit-section::after {
            content: '';
            position: absolute;
            width: min(1100px, 95vw);
            height: min(500px, 40vh);
            bottom: -100px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, rgba(34, 211, 238, 0.15) 0%, rgba(79, 70, 229, 0.25) 100%);
            filter: blur(150px);
            opacity: 0.8;
            border-radius: 50%;
            z-index: -1;
        }

        .tech-toolkit-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .tech-toolkit-title {
            font-family: 'Cabin', sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: #222;
            margin-bottom: 15px;
            text-align: left;
        }

        .tech-toolkit-description {
            font-size: 18px;
            color: #555;
            margin-bottom: 50px;
            max-width: 800px;
            line-height: 1.7;
            text-align: left;
        }

        .tech-toolkit-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            align-items: stretch;
        }

        .tech-toolkit-card {
            background-color: #1e293b;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: auto;
            box-sizing: border-box;
            border: 1px solid #434959;
        }

        .tech-toolkit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .toolkit-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
            object-fit: contain;
        }

        .tech-toolkit-card h3 {
            font-family: 'Cabin', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .tech-toolkit-card p {
            font-family: 'Cabin', sans-serif;
            font-size: 15px;
            color: #d1d5db;
            line-height: 1.6;
            margin-bottom: 0;
            flex-grow: 1;
        }

        
        @media (max-width: 1200px) {
            .tech-toolkit-section .container {
                padding: 0 30px;
            }

            .tech-toolkit-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 18px;
            }

            .tech-toolkit-card {
                padding: 25px;
            }
        }

        @media (max-width: 992px) {
            .tech-toolkit-title {
                font-size: 32px;
            }

            .tech-toolkit-description {
                font-size: 17px;
                margin-bottom: 40px;
            }

            .tech-toolkit-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }

        @media (max-width: 768px) {
            .tech-toolkit-section {
                padding: 60px 0;
            }

            .tech-toolkit-section .container {
                padding: 0 20px;
            }

            .tech-toolkit-title {
                font-size: 28px;
                margin-bottom: 12px;
            }

            .tech-toolkit-description {
                font-size: 16px;
                margin-bottom: 35px;
                line-height: 1.6;
            }

            .tech-toolkit-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .tech-toolkit-card {
                padding: 20px;
            }

            .tech-toolkit-card h3 {
                font-size: 18px;
            }

            .tech-toolkit-card p {
                font-size: 14px;
            }

            .toolkit-icon {
                width: 50px;
                height: 50px;
                margin-bottom: 15px;
            }
        }

        @media (max-width: 480px) {
            .tech-toolkit-section {
                padding: 50px 0;
            }

            .tech-toolkit-section .container {
                padding: 0 15px;
            }

            .tech-toolkit-title {
                font-size: 24px;
                text-align: center;
            }

            .tech-toolkit-description {
                font-size: 15px;
                text-align: center;
                margin-bottom: 30px;
            }

            .tech-toolkit-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .tech-toolkit-card {
                padding: 25px 20px;
            }

            .tech-toolkit-card h3 {
                font-size: 18px;
                margin-bottom: 8px;
            }

            .tech-toolkit-card p {
                font-size: 14px;
                line-height: 1.5;
            }

            .toolkit-icon {
                width: 45px;
                height: 45px;
                margin-bottom: 12px;
            }

            
            .tech-toolkit-section::before {
                width: min(800px, 95vw);
                height: min(400px, 40vh);
                filter: blur(120px);
            }

            .tech-toolkit-section::after {
                width: min(900px, 95vw);
                height: min(350px, 35vh);
                filter: blur(100px);
            }
        }

        

/* СЕКЦИЯ цен на услуги*/

.pricing-section {
    background-color: #2D364C; 
    padding: 100px 0; 
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.pricing-header-background {
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
}

.pricing-header-background::before { 
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    background: url('/svg/Container (1).png') no-repeat left center;
    background-size: contain;
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

.pricing-header-background::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    background: url('/svg/Container.png') no-repeat right center;
    background-size: contain;
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

.pricing-title {
    font-family: 'Cabin', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.pricing-subtitle {
    font-family: 'Cabin', sans-serif;
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* --- Сетка карточек --- */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.1fr) minmax(340px, 1.2fr);
    gap: 80px;
    align-items: flex-start;
}

.pricing-card {
    background-color: #FAFAFC;
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    border: 1px solid #C6C8CD;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: auto;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-card-pro {
    position: relative;
    overflow: visible;
    border: 2px solid #F97316 !important;
}

.pricing-card-pro:hover {
    border-color: #F97316 !important; 
}

.pricing-card:not(.pricing-card-pro):hover {
    border-color: #9ea1a6;
}

.most-popular-tag {
    position: absolute;
    top: -5px; 
    right: -20px; 
    background-color: #F97316;
    color: #fff;
    font-family: 'Cabin', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 50px; 
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    white-space: nowrap; 
    transform: translateY(-50%); 
}

.plan-name {
    font-family: 'Cabin', sans-serif; 
    font-size: 26px;
    font-weight: 700;
    color: #2D364C;
    margin-bottom: 8px;
}

.plan-name-top {
    font-family: 'Cabin', sans-serif;
    font-size: 25px; 
    font-weight: 500;
    color: #293041;
    margin-bottom: 0px;
}

.plan-name-elite { 
    margin-top: 3px;
}

.plan-price {
    font-family: 'Cabin', sans-serif; 
    font-size: 44px;
    font-weight: 700;
    color: #2D364C;
    margin-bottom: 8px;
}

.plan-price p {
    margin: 0px;
}

.plan-price .starting-at {
    font-family: 'Cabin', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #5C6274;
}

.plan-price-custom {
    font-family: 'Cabin', sans-serif; 
    font-size: 30px;
    color: #2D364C;
    margin-bottom: 15px;
}

.plan-description {
    font-family: 'Cabin', sans-serif;
    font-size: 15px;
    color: #5C6274;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 45px;
}

.plan-features {
    list-style: none;
    padding: 0;
    flex-grow: 1;
    margin-bottom: 30px;
}

.plan-features li {
    font-family: 'Cabin', sans-serif;
    font-size: 15px;
    color: #5C6274;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 18px;
    height: 18px;
    stroke: #197f14;
    stroke-width: 2.5;
    fill: none;
    margin-right: 10px;
    min-width: 18px;
}

.btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 9999px;
    font-family: 'Cabin', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-launch-now,
.btn-go-elite {
    background: #FED7AA !important; 
    color: #EA580C !important; 
    border: 1px solid #EA580C !important; 
}

.btn-top-choice {
    background: #F97316 !important; 
    color: #fff !important; 
    border: 1px solid #F97316 !important;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    opacity: 0.95;
}

.btn-launch-now:hover,
.btn-go-elite:hover {
    background-color: #fce8c7 !important; 
    border-color: #d84a0b !important; 
}

.btn-top-choice:hover {
    background-color: #FF8C3F !important; 
    border-color: #FF8C3F !important; 
}




@media (max-width: 1200px) {
    .pricing-cards-grid {
        gap: 50px;
        grid-template-columns: repeat(3, minmax(240px, 1fr));
    }
}


@media (max-width: 1024px) {
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .pricing-card {
        padding: 28px 22px;
    }
    
    .plan-name {
        font-size: 24px;
    }
    
    .plan-name-top {
        font-size: 23px;
    }
    
    .plan-price {
        font-size: 38px;
    }
    
    .plan-price-custom {
        font-size: 26px;
    }
    
    .btn {
        padding: 11px 18px;
        font-size: 15px;
    }
    
    .most-popular-tag {
        top: -8px;
        right: -15px;
        font-size: 13px;
        padding: 6px 12px;
    }
    
    
    .pricing-header-background::before,
    .pricing-header-background::after {
        width: 45%;
        height: 90%;
        opacity: 0.25;
        background-size: contain;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-section .container {
        padding: 0 15px;
    }
    
    .pricing-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .pricing-subtitle {
        font-size: 16px;
        max-width: 90%;
        line-height: 1.5;
    }
    
    .pricing-header-background {
        padding-bottom: 40px;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card {
        max-width: 100%;
        padding: 25px 20px;
        margin: 0;
    }
    
    .plan-name {
        font-size: 22px;
    }
    
    .plan-name-top {
        font-size: 20px;
    }
    
    .plan-price {
        font-size: 34px;
    }
    
    .plan-price-custom {
        font-size: 24px;
    }
    
    .plan-description {
        font-size: 14px;
        min-height: auto;
        margin-bottom: 20px;
    }
    
    .plan-features li {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .check-icon {
        width: 16px;
        height: 16px;
        min-width: 16px;
    }
    
    .btn {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .most-popular-tag {
        top: -8px;
        right: 8px;
        padding: 5px 10px;
        font-size: 12px;
    }
    
    
    .pricing-header-background::before,
    .pricing-header-background::after {
        width: 40%;
        height: 70%;
        opacity: 0.15;
        background-size: cover;
    }
    
    .pricing-header-background::before {
        left: -5%;
    }
    
    .pricing-header-background::after {
        right: -5%;
    }
}


@media (max-width: 480px) {
    .pricing-section {
        padding: 50px 0;
    }
    
    .pricing-section .container {
        padding: 0 12px;
    }
    
    .pricing-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .pricing-subtitle {
        font-size: 14px;
        max-width: 95%;
    }
    
    .pricing-header-background {
        padding-bottom: 35px;
    }
    
    .pricing-cards-grid {
        gap: 20px;
        max-width: 340px;
    }
    
    .pricing-card {
        padding: 20px 16px;
        border-radius: 12px;
    }
    
    .plan-name {
        font-size: 20px;
    }
    
    .plan-name-top {
        font-size: 18px;
    }
    
    .plan-price {
        font-size: 30px;
    }
    
    .plan-price-custom {
        font-size: 22px;
    }
    
    .plan-price .starting-at {
        font-size: 14px;
    }
    
    .plan-description {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .plan-features li {
        font-size: 13px;
        margin-bottom: 7px;
    }
    
    .check-icon {
        width: 14px;
        height: 14px;
        min-width: 14px;
        margin-right: 8px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 25px;
    }
    
    .most-popular-tag {
        top: -6px;
        right: 6px;
        font-size: 11px;
        padding: 4px 8px;
        border-radius: 20px;
    }
    
    
    .pricing-header-background::before,
    .pricing-header-background::after {
        width: 35%;
        height: 60%;
        opacity: 0.1;
    }
    
    .pricing-header-background::before {
        left: -8%;
    }
    
    .pricing-header-background::after {
        right: -8%;
    }
}

@media (max-width: 360px) {
    .pricing-title {
        font-size: 24px;
    }
    
    .pricing-subtitle {
        font-size: 13px;
    }
    
    .pricing-cards-grid {
        max-width: 300px;
    }
    
    .pricing-card {
        padding: 18px 14px;
    }
    
    .plan-price {
        font-size: 28px;
    }
    
    .btn {
        padding: 9px 14px;
        font-size: 12px;
    }
    
    
    .pricing-header-background::before,
    .pricing-header-background::after {
        display: none;
    }
}


/* СЕКЦИЯ с ракетой + кнопкой перед футером*/

.launch-mvp-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background-color: #2D364C; 
    color: #FFFFFF;
    position: relative; 
    overflow: hidden; 
    z-index: 1;
    min-height: 400px;
}


.launch-mvp-section::before {
    content: '';
    position: absolute;
    top: 25%; 
    left: 50%;
    transform: translateX(-50%);
    width: 250px; 
    height: 180px; 
    background: url('/svg/Container.png') no-repeat center center; 
    background-size: contain;
    opacity: 0.4; 
    z-index: -2;
    pointer-events: none;
}


.launch-mvp-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%; 
    height: 100%; 
    background:
        url('/svg/Container (1).png') no-repeat left center,
        url('/svg/Container.png') no-repeat right center; 
    background-size: 50% 100%; 
    opacity: 0.3;
    z-index: -1; 
    pointer-events: none;
}

.launch-mvp-section .launch-mvp-icon {
    width: 60px;
    height: auto;
    margin-bottom: 20px;
    z-index: 2; 
    position: relative;
    transition: transform 0.3s ease;
}

.launch-mvp-section .launch-mvp-icon:hover {
    transform: scale(1.1);
}

.launch-mvp-section h2 {
    font-family: 'Cabin', sans-serif;
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 15px;
    z-index: 2; 
    position: relative;
    line-height: 1.2;
    max-width: 800px;
}

.launch-mvp-section p {
    font-family: 'Cabin', sans-serif;
    font-size: 1.5em;
    color: #ACAEB6;
    margin-bottom: 30px;
    max-width: 800px; 
    line-height: 1.6;
    z-index: 2; 
    position: relative;
}


.kickstart-button-link {
    z-index: 2;
    position: relative;
    text-decoration: none;
}

.kickstart-button {
    background: #F97316;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Cabin', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    min-width: 200px;
}

.kickstart-button:hover {
    background: #EA580C;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.kickstart-button:active {
    transform: translateY(-1px) scale(1.02);
}



@media (max-width: 1024px) {
    .launch-mvp-section {
        padding: 70px 20px;
    }
    
    .launch-mvp-section h2 {
        font-size: 2.5em;
        max-width: 700px;
    }
    
    .launch-mvp-section p {
        font-size: 1.3em;
        max-width: 700px;
    }
    
    .launch-mvp-section::before {
        width: 220px;
        height: 160px;
        opacity: 0.35;
    }
    
    .launch-mvp-section::after {
        background-size: 45% 90%;
        opacity: 0.25;
    }
}


@media (max-width: 768px) {
    .launch-mvp-section {
        padding: 60px 15px;
        min-height: 350px;
    }
    
    .launch-mvp-section .launch-mvp-icon {
        width: 50px;
        margin-bottom: 18px;
    }
    
    .launch-mvp-section h2 {
        font-size: 2.2em;
        margin-bottom: 12px;
        max-width: 600px;
    }
    
    .launch-mvp-section p {
        font-size: 1.2em;
        margin-bottom: 25px;
        max-width: 600px;
    }
    
    .kickstart-button {
        padding: 14px 28px;
        font-size: 16px;
        min-width: 180px;
    }
    
    .launch-mvp-section::before {
        width: 200px;
        height: 150px;
        top: 28%;
        opacity: 0.3;
    }
    
    .launch-mvp-section::after {
        background-size: 40% 80%;
        opacity: 0.2;
    }
}


@media (max-width: 480px) {
    .launch-mvp-section {
        padding: 50px 12px;
        min-height: 300px;
    }
    
    .launch-mvp-section .launch-mvp-icon {
        width: 45px;
        margin-bottom: 15px;
    }
    
    .launch-mvp-section h2 {
        font-size: 1.8em;
        margin-bottom: 10px;
        line-height: 1.3;
        max-width: 90%;
    }
    
    .launch-mvp-section p {
        font-size: 1em;
        margin-bottom: 20px;
        max-width: 90%;
        line-height: 1.5;
    }
    
    .kickstart-button {
        padding: 12px 24px;
        font-size: 15px;
        min-width: 160px;
        border-radius: 40px;
    }
    
    .launch-mvp-section::before {
        width: 150px;
        height: 100px;
        top: 30%;
        opacity: 0.25;
    }
    
    .launch-mvp-section::after {
        background-size: 35% 70%;
        opacity: 0.15;
    }
}


@media (max-width: 360px) {
    .launch-mvp-section {
        padding: 40px 10px;
        min-height: 280px;
    }
    
    .launch-mvp-section .launch-mvp-icon {
        width: 40px;
        margin-bottom: 12px;
    }
    
    .launch-mvp-section h2 {
        font-size: 1.6em;
        margin-bottom: 8px;
        max-width: 95%;
    }
    
    .launch-mvp-section p {
        font-size: 0.9em;
        margin-bottom: 18px;
        max-width: 95%;
        line-height: 1.4;
    }
    
    .kickstart-button {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 140px;
        border-radius: 35px;
    }
    
    .launch-mvp-section::before {
        width: 120px;
        height: 80px;
        top: 32%;
        opacity: 0.2;
    }
    
    .launch-mvp-section::after {
        background-size: 30% 60%;
        opacity: 0.1;
    }
}


@media (max-width: 320px) {
    .launch-mvp-section {
        padding: 35px 8px;
    }
    
    .launch-mvp-section h2 {
        font-size: 1.4em;
    }
    
    .launch-mvp-section p {
        font-size: 0.85em;
    }
    
    .kickstart-button {
        padding: 9px 18px;
        font-size: 13px;
        min-width: 120px;
    }
    
    .launch-mvp-section::before {
        display: none;
    }
    
    .launch-mvp-section::after {
        display: none;
    }
}

@media (hover: hover) {
    .launch-mvp-section .launch-mvp-icon:hover {
        transform: scale(1.1);
    }
    
    .kickstart-button:hover {
        background: #EA580C;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    }
}


/* footer стилизация*/
.footer {
            background-color: #f8f9fa;
            padding: 60px 0 30px;
            border-top: 1px solid #e9ecef;
            margin-top: auto;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
        }

        .footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.9rem;
    font-weight: 600;
    color: #333;
    
}

        .rocket-container {
    position: relative; 
    width: 90px; 
    height: 90px;
    margin-right: -15px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

        .rocket-icon {
    width: 70px; 
    height: 85px; 
    transform: rotate(-3.23deg) translateY(-5px); 
}

        .footer-links {
            display: flex;
            gap: 120px;
        }

        .footer-column h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #666;
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column li {
            margin-bottom: 12px;
        }

        .footer-column a {
            color: #888;
            text-decoration: none;
            font-size: 1.2rem;
            transition: color 0.3s ease;
            display: inline-block;
        }

        .footer-column a:hover {
            color: #333;
        }

        .footer-bottom {
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .footer-bottom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background-color: #e9ecef;
        }

        .footer-bottom p {
            color: #888;
            font-size: 1.1rem;
            margin: 0;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            color: #888;
            transition: all 0.3s ease;
            text-decoration: none;
            border-radius: 8px;
        }

        .social-icon:hover {
            color: #333;
            background-color: rgba(0, 0, 0, 0.05);
        }

        .social-icon svg {
            width: 22px;
            height: 22px;
        }

        
        @media (max-width: 1024px) {
            .footer-container {
                padding: 0 40px;
            }
            
            .footer-links {
                gap: 80px;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 20px;
            }

            .footer-container {
                padding: 0 20px;
            }

            .footer-content {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .footer-logo {
                justify-content: center;
                font-size: 1.7rem;
            }

            .footer-links {
                justify-content: center;
                gap: 60px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
                padding-top: 25px;
            }

            .footer-social {
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .footer {
                padding: 30px 0 15px;
            }

            .footer-container {
                padding: 0 15px;
            }

            .footer-content {
                gap: 25px;
            }

            .footer-logo {
                font-size: 1.5rem;
            }
            
            .rocket-container {
        width: 80px; 
        height: 80px; 
        margin-right: 3px; 
    }
            
            .rocket-icon {
        width: 60px;
        height: 75px; 
        transform: rotate(-3.23deg) translateY(-3px);
    }

            .footer-links {
                flex-direction: column;
                gap: 25px;
                width: 100%;
            }
            
            .footer-column {
                text-align: center;
            }

            .footer-column h4 {
                font-size: 1rem;
                margin-bottom: 15px;
            }

            .footer-column a {
                font-size: 1.1rem;
            }

            .footer-bottom {
                gap: 15px;
                padding-top: 20px;
            }

            .footer-bottom p {
                font-size: 1rem;
            }

            .social-icon {
                width: 40px;
                height: 40px;
            }
            
            .social-icon svg {
                width: 20px;
                height: 20px;
            }
        }

        @media (max-width: 360px) {
            .footer-container {
                padding: 0 10px;
            }
            
            .footer-logo {
                font-size: 1.3rem;
            }
            
            .footer-column a {
                font-size: 1rem;
            }
            
            .footer-bottom p {
                font-size: 0.9rem;
            }
        }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}





@media (max-width: 768px) { 
    
    .services-section
  {
        padding-left: 20px; 
        padding-right: 20px; 
        
    }

    

    
    p, h1, h2, h3, h4, h5, h6 {
        margin-left: 0; 
        margin-right: 0;
        
    }


    
}

@media (max-width: 480px) { 
    
    
     .services-section
  {
        padding-left: 30px;  
        padding-right: 30px; 
        
    }

    
}