@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* СБРОС И БАЗОВЫЕ СТИЛИ */
* {
    margin: 0;
    padding: 0;
    
    box-sizing: border-box;
}

  
html, body {
    font-family: 'Nunito', sans-serif;
    
    color: black;
    height: 100%;
}

/* --- Второй блок: товары --- */
.products {
    background-color: black;
    background-image: url('../images/pngtree-starry-sky-white-blue-stars-picture-image_985748.jpg'); /* Replace with your image path */
    background-size: cover; /* Ensures the image covers the entire area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    padding: 60px 0;
    color: #fff; /* Optional: better text contrast on dark background */
}


.products h2 {
    font-family: 'Nunito', sans-serif;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 700;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Карточка товара */
.product-card {
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.05);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    margin-left: 25px;
    margin-right: 25px;
    width: calc(25% - 10px); /* 4 карточки в ряд на больших экранах */
    max-width: 400px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-card img {
    width: calc(100% - 20px);
    height: 400px;
    object-fit: cover;
    display: block;
    margin: 10px auto 0 auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.product-info {
    font-family: 'Inter', 'Roboto', sans-serif;
    color: #333333;
    border-radius: 12px;


    padding: 15px;
    padding-bottom: 45px;
    
    text-align: center;
}


.product-info h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 650; /* умеренная жирность */
    color: white; /* тёмно-серый, а не чёрный */
    line-height: 1.4; /* более расслабленная строка */
    margin-bottom: 25px;
}


.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e60000;
    margin-bottom: 15px;
}

/* Кнопка "Узнать подробнее" */

.details-btn {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: white;

    border-radius: 8px;
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    background-color: black;

    border: 1px solid white;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
}

.details-btn:hover {
    background-color: white;
    color: black;
}






/* --- Адаптивность --- */
@media (max-width: 1024px) {
    .product-card {
        width: calc(33.333% - 20px); /* 3 карточки в ряд */
    }
}

@media (max-width: 768px) {
    .product-card {
        width: calc(50% - 20px); /* 2 карточки в ряд */
    }
}

@media (max-width: 480px) {
    .product-card {
        width: 100%; /* 1 карточка в ряд */
    }
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

.request-section {
    position: relative;
    background: url('../images/pngtree-starry-sky-white-blue-stars-picture-image_985748.jpg') center/cover no-repeat;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.request-section .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.request-section .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

/* Заголовок и описание */
.request-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.request-section .mini-text {
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Форма: в один ряд */
.request-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap; /* для адаптива на мобильных */
}

.request-form input[type="text"],
.request-form input[type="tel"] {
    font-family: 'Nunito', sans-serif;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 200px;
    max-width: 100%;
}

.request-form input:focus {
    border-color: #cca400;
    outline: none;
}

.request-form .details-btn {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background-color: black;
    border: 1px solid white;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.request-form .details-btn:hover {
    background-color: white;
    color: black;
}

/* Адаптивность */
@media (max-width: 600px) {
    .request-form {
        flex-direction: column;
        align-items: center;
    }

    .request-form input,
    .request-form .details-btn {
        width: 90%;
    }
}





body {
    margin: 0;
    padding: 0;
    background-color: #000;
    font-family: Arial, sans-serif;
    color: #fff;
}

.starlink-features-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 60px 20px;
    background: #000;
    background-image: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.95));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 0; /* убираем отступы между колонками */
}

.starlink-feature {
    text-align: center;
    padding: 30px 20px;
    flex: 1 1 33.333%;
    max-width: 33.333%;
    box-sizing: border-box;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.starlink-feature:last-child {
    border-right: none;
}

.starlink-icon svg {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.starlink-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
}

.starlink-description {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}

@media (max-width: 900px) {
    .starlink-feature {
        max-width: 100%;
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .starlink-feature:last-child {
        border-bottom: none;
    }

    .starlink-icon svg {
        width: 50px;
        height: 50px;
    }

    .starlink-title {
        font-size: 20px;
    }

    .starlink-description {
        font-size: 15px;
    }

    .starlink-features-section {
        padding: 40px 10px;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #fff;
    background-color: #000;
}

.setup-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    padding: 40px;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    width: 100%;
}

.video-placeholder {
    position: relative;
}

.video-placeholder img {
    width: 500px;
    max-width: 100%;
    border-radius: 8px;
}

.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    font-size: 24px;
    cursor: pointer;
}

.info-text {
    max-width: 450px;
}

.info-text h1 {
    font-size: 32px;
    margin-bottom: 16px;
}

.info-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.4;
}

.highlight {
    color: #a1a1a1;
}

.steps {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.steps li {
    font-size: 18px;
    margin-bottom: 10px;
}

.small-text {
    font-size: 14px;
    color: #b0b0b0;
}

.download-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    margin-right: 15px;
    transition: opacity 0.2s ease;
}

.download-links a:hover {
    opacity: 0.7;
}

@media (max-width: 900px) {
    .content {
        flex-direction: column;
        text-align: center;
    }

    .info-text {
        max-width: 100%;
    }

    .video-placeholder img {
        width: 100%;
    }
}


.highlight-block {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url('../images/home_feature_mini_d.webp') center/cover no-repeat;
    padding: 60px 20px;
    text-align: center;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.highlight-content {
    max-width: 800px;
    margin: 0 auto;
}

.highlight-content h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}




.skynet-logo-fixed {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1000;
}

.skynet-logo-fixed img {
    width: 180px;
    height: auto;
    opacity: 0.9;
}

/* Номер телефона справа */
.phone-fixed {
    margin-top:30px ;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.phone-fixed a {
    color: white;
    text-decoration: none;
}




.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* затемнение */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;

}

.modal-content {
    background: rgba(0, 0, 0, 0.6); /* полупрозрачный черный фон */
    padding: 0;
    border-radius: 8px; /* скругление краёв */
    max-width: 600px;
    width: 90%;
}



.request-section3 {
    background: none; /* убираем фон */
    padding: 40px;
    color: #fff;
    text-align: center;
}



.site-footer {
    background-color: #000;
    background-image: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.95));
    color: #fff;
    padding: 40px 0 20px;
    font-family: sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between; /* Вот ключ */
    align-items: flex-start;
    padding: 0 200px; /* Отступы по краям */
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left-block {
    display: flex;
    gap: 20px;
    flex: 1;
    min-width: 300px;
}

.footer-logo-block {
    flex-shrink: 0;
}

.footer-logo {
    max-width: 180px;
}

.footer-left-text {
    font-size: 14px;
    line-height: 1.6;
    max-width: 500px;
}

.footer-left-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-left-text ul li::before {
    content: "• ";
}

.footer-right-text {
    font-size: 14px;
    line-height: 1.6;
    text-align: right;
    max-width: 300px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #aaa;
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .footer-left-block {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-left-text {
        max-width: 100%;
    }

    .footer-right-text {
        text-align: center;
        margin-top: 20px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-bottom {
        padding: 0 10px;
        font-size: 12px;
        text-align: center;
    }

    .footer-logo {
        max-width: 120px;
    }
}








.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}





