/* Сброс и базовые настройки */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #000000;
    color: #d6d676;
    line-height: 1.5;
    font-weight: 400;
    font-size: 16px;
}

.header {
    background-color: #8aaf41;
    border-radius: 20px;
    margin: 20px auto;
    max-width: 1200px;
    padding: 10px 30px;
}

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

.logo {
    font-weight: 700;
    color: #f7f9af;
    font-size: 18px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.menu li a {
    text-decoration: none;
    color: #f7f9af;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.06em;
}

.menu li a:hover {
    text-decoration: underline;
}

.hero {
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.hero-title {
    font-weight: 700;
    font-size: 48px;
    color: #b6bf67;
    text-shadow:
        1px 1px 0 #8aaf41,
        2px 2px 0 #6a7b2a;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-desc {
    font-weight: 400;
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #fff;
}

.hero-btn {
    background-color: #f7f96f;
    border: none;
    border-radius: 20px;
    padding: 15px 40px;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 40px;
}

.hero-btn:hover {
    background-color: #d6d676;
}

.hero-img {
    position: absolute;
    right: 30px;
    bottom: 0;
    max-width: 450px;
    user-select: none;
    pointer-events: none;
}

.about {
    max-width: 1200px;
    margin: 40px auto;
    background: linear-gradient(180deg, #a4bc5a 0%, #ebe682 100%);
    border-radius: 20px;
    display: flex;
    gap: 40px;
    padding: 40px;
    color: #000;
}

.about-img-wrap img {
    width: 400px;
    height: auto;
    object-fit: contain;
}

.about-text {
    max-width: 800px;
}

.about-text h2 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
}

.about-text p {
    margin-bottom: 20px;
    font-weight: 400;
    color: #000;
    font-size: 16px;
}

/* уже описанные стили из первой части остаются */

.stats {
    max-width: 1200px;
    margin: 60px auto 40px;
    display: flex;
    justify-content: space-between;
    color: #b6bf67;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0 20px;
    gap: 15px;
    flex-wrap: wrap;
}

.stats-item {
    flex: 1 1 220px;
    text-align: center;
    line-height: 1.3;
}

.investment-thought {
    max-width: 1200px;
    margin: 40px auto;
    background: linear-gradient(180deg, #a4bc5a 0%, #ebe682 100%);
    border-radius: 20px;
    padding: 40px 30px;
    color: #000;
    text-align: left;
}

.investment-thought h2 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #fff;
}

.investment-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.investment-content p {
    flex: 1 1 400px;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}

.investment-content img {
    flex: 1 1 300px;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}

.market-trends {
    max-width: 900px;
    margin: 60px auto 40px;
    padding: 0 20px;
    color: #fff;
    text-align: center;
}

.market-trends h2 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.market-trends p {
    margin-bottom: 25px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact {
    max-width: 900px;
    margin: 60px auto 60px;
    text-align: center;
    padding: 0 20px;
    color: #fff;
}

.contact h2 {
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact p {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border-radius: 8px;
    border: none;
    background-color: #222;
    color: #fff;
    font-size: 16px;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

.contact-form button {
    background-color: #f7f96f;
    border: none;
    border-radius: 20px;
    padding: 15px;
    font-size: 18px;
    color: #000;
    cursor: pointer;
    font-weight: 400;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #d6d676;
}

.footer {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #8aaf41;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    font-size: 12px;
    color: #f7f9af;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;

    justify-content: flex-end;
}

.footer-links a {
    color: #f7f9af;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Адаптивность */

@media (max-width: 900px) {
    .hero-title {
        font-size: 36px;
    }

    .about {
        flex-direction: column;
        text-align: center;
    }

    .about-img-wrap {
        margin-bottom: 20px;
    }

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

    .investment-content p,
    .investment-content img {
        flex: unset;
        max-width: 100%;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
    }

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

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

@media (max-width: 500px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 12px 15px;
    }

    .contact-form button {
        font-size: 16px;
        padding: 12px;
    }
}

@media (max-width: 600px) {
    .menu {
        display: none;
    }
    .about-img-wrap img {
        width: 100%;
    }
}