/* Reset и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: "Arial", sans-serif;
    line-height: 1.5;
}

.container {
    width: min(90%, 1200px);
    margin: 0 auto;
}

/* Header */
.header {
    border-bottom: 1px solid #222;
    padding: 20px 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
}

.header__nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.header__nav a:hover {
    color: #ccc;
}

/* Hero section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
    gap: 40px;
}

.hero__text {
    max-width: 600px;
}

.hero__text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero__text p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 15px;
}

.hero__text strong {
    color: #eee;
    font-weight: 600;
}

.btn {
    padding: 10px 25px;
    border: 1px solid #fff;
    background: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #222;
}

.hero__image img {
    width: 400px;
    border-radius: 12px;
}

/* Industries */
.industries {
    padding: 40px 0 80px 0;
}

.industries h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.industries p {
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #ccc;
    text-align: center;
}

.industries__content {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.industries__image img {
    width: 400px;
    border-radius: 12px;
}

.industries__list {
    max-width: 500px;
    color: #ccc;
    font-size: 0.9rem;
}

.industries__list p {
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.industries__list ul {
    list-style: none;
    margin-bottom: 20px;
}

.industries__list li {
    margin-bottom: 15px;
}

.industries__list strong {
    color: #fff;
    font-weight: 600;
}

/* About */
.about {
    padding-bottom: 80px;
}

.about h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: left;
}

.about__content {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.about__text {
    max-width: 600px;
    font-size: 0.9rem;
    color: #ccc;
}

.about__text ul {
    list-style: none;
    margin-bottom: 20px;
}

.about__text li {
    margin-bottom: 15px;
    line-height: 1.5;
}

.about__text strong {
    color: #fff;
}

.about__image img {
    width: 400px;
    border-radius: 12px;
}

/* Blog */
.blog {
    padding-bottom: 60px;
}

.blog h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: left;
}

.blog__cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.blog__card {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    width: calc(25% - 22.5px);
    box-sizing: border-box;
}

.blog__card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.blog__card p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
}

/* Contact */
.contact {
    padding-bottom: 80px;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact__form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact__form input {
    background: transparent;
    border: 1px solid #fff;
    padding: 12px 15px;
    font-size: 1rem;
    color: #fff;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.contact__form input::placeholder {
    color: #aaa;
}

.contact__form input:focus {
    border-color: #ccc;
}

.contact__form button {
    background: #fff;
    color: #000;
    border: none;
    padding: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.contact__form button:hover {
    background-color: #ddd;
}

/* Footer */
.footer {
    border-top: 1px solid #222;
    padding: 20px 0 10px 0;
    color: #aaa;
    font-size: 0.9rem;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer__nav a {
    margin-left: 25px;
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer__nav a:hover {
    color: #fff;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer__policy-nav {
    display: flex;
    gap: 20px;
}

.footer__policy-link {
    color: #555;
    text-decoration: none;
    font-size: 0.8rem;
}

.footer__policy-link:hover {
    color: #ccc;
}

.footer__copyright {
    font-size: 0.8rem;
    color: #555;
}

/* Адаптив */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero__image img {
        width: 100%;
        max-width: 400px;
        margin-top: 25px;
    }

    .industries__content {
        flex-direction: column;
        align-items: center;
    }

    .industries__image img,
    .about__image img {
        width: 100%;
        max-width: 400px;
    }

    .industries__list {
        max-width: 100%;
    }

    .about__content {
        flex-direction: column;
        align-items: center;
    }

    .blog__cards {
        flex-direction: column;
    }

    .blog__card {
        width: 100%;
    }

    .footer__container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .header__nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero__text h1 {
        font-size: 1.8rem;
    }

    .hero__text p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 8px 18px;
        font-size: 0.9rem;
    }

    .contact__form input {
        font-size: 0.9rem;
        padding: 10px 12px;
    }

    .contact__form button {
        font-size: 1rem;
        padding: 12px;
    }
}
