/* Hero секция */
.hero {
    background-color: #f8fafc;
    padding: 60px 0 80px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.hero__content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hero__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #111827;
    margin-bottom: 16px;
}

.production-badge {
    display: inline-block;
    background-color: #40a941;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 4px;
    margin-bottom: 24px;
    border: none;
    line-height: 1.3;
    width: fit-content;
}

.hero__subtitle {
    font-size: 18px;
    color: #334155;
    margin-bottom: 24px;
    max-width: 90%;
}

.hero__subtitle .highlight-green {
    color: #40a941;
    font-weight: 700;
}

.hero__subtitle .highlight-bold {
    font-weight: 700;
    color: #111827;
}

.hero__facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fact-item__icon {
    width: 40px;
    height: 40px;
    background-color: rgba(64, 169, 65, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fact-item__icon svg {
    width: 24px;
    height: 24px;
    fill: #40a941;
}

.fact-item__text {
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    line-height: 1.4;
}

.fact-item__text span {
    font-size: 13px;
    font-weight: 400;
    color: #64748b;
    display: block;
}

.product-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.product-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: border-color 0.2s, background-color 0.2s;
    text-decoration: none;
    color: #111827;
}

.product-card:hover {
    border-color: #40a941;
    background-color: #f1f5f9;
}

.product-card__icon {
    width: 48px;
    height: 48px;
    background-color: rgba(64, 169, 65, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-card__icon svg {
    width: 28px;
    height: 28px;
    fill: #40a941;
}

.product-card__content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #111827;
}

.product-card__content p {
    font-size: 14px;
    color: #64748b;
}

.hero__visual {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.product-image {
    line-height: 0;
    margin-bottom: 28px;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.request-form {
    background-color: #f8fafc;
    border-radius: 16px;
    padding: 28px;
}

.request-form h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #40a941;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin: 0;
}

.form-select,
.form-input {
    width: 100%;
    padding: 16px 20px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #111827;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2340a941' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
}

.form-select:focus,
.form-input:focus {
    outline: none;
    border-color: #40a941;
}

.form-input::placeholder {
    color: #a0aec0;
    opacity: 1;
}

.form-checkboxes {
    margin: 20px 0 16px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.checkbox-item:last-child {
    margin-bottom: 0;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: #40a941;
    cursor: pointer;
    margin: 0;
}

.checkbox-item label {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-item a {
    color: #40a941;
    text-decoration: none;
    border-bottom: 1px dotted #40a941;
}

.checkbox-item a:hover {
    border-bottom: 1px solid #40a941;
}

.form-button {
    width: 100%;
    padding: 16px 20px;
    background-color: #40a941;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 8px;
}

.form-button:hover {
    background-color: #2d8a2e;
}

.form-hint {
    font-size: 12px;
    color: #64748b;
    text-align: center;
    margin-top: 16px;
}

/* Адаптивность */
@media (max-width: 900px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .hero__facts {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-card {
        padding: 16px;
    }

    .request-form {
        padding: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

<!-- Стили для каталога -->
.catalog {
    background-color: #ffffff;
    padding: 80px 0;
}
.catalog__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #111827;
    text-align: center;
    margin-bottom: 32px;
}
.catalog__filter {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    background-color: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    align-items: flex-end;
}
.filter-group {
    flex: 1 1 200px;
    min-width: 180px;
}
.filter-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 6px;
}
.filter-select {
    width: 100%;
    padding: 12px 16px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #111827;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2340a941' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}
.catalog__table-wrapper {
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}
.catalog__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
    font-size: 15px;
}
.catalog__table th {
    background-color: #eaf6ea;
    font-weight: 600;
    color: #111827;
    padding: 16px 12px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    white-space: nowrap;
}
.catalog__table td {
    padding: 16px 12px;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
}
.catalog__table tbody tr:nth-child(even) {
    background-color: #f9fafb;
}
.catalog__table tbody tr:hover {
    background-color: #f1f5f9;
}
.catalog__btn {
    background-color: transparent;
    border: 1px solid #40a941;
    color: #40a941;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.catalog__btn:hover {
    background-color: #40a941;
    color: #ffffff;
}
@media (max-width: 900px) {
    .catalog__title {
        font-size: 28px;
    }
}
@media (max-width: 600px) {
    .catalog__filter {
        flex-direction: column;
        align-items: stretch;
    }
    .catalog__table th,
    .catalog__table td {
        padding: 12px 8px;
        font-size: 14px;
    }
    .catalog__btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}