.sd-project-picker {
    padding: 58px 0 42px;
    background: #f5f8f5;
    color: #1b2025;
}

.sd-project-picker__inner {
    max-width: 1440px;
}

.sd-section-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: #07872c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sd-project-picker__heading h2 {
    margin: 0;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.12;
    font-weight: 750;
    letter-spacing: -.025em;
}

.sd-project-picker__heading p {
    margin: 10px 0 0;
    color: #69717a;
    font-size: 17px;
}

.sd-project-picker__form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(230px, .92fr);
    gap: 14px;
    margin-top: 28px;
    padding: 20px;
    border: 1px solid #e0e7e1;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(31, 55, 38, .07);
}

.sd-project-picker__form label {
    margin: 0;
}

.sd-project-picker__form label > span {
    display: block;
    margin: 0 0 7px;
    color: #454d55;
    font-size: 12px;
    font-weight: 700;
}

.sd-project-picker__form select {
    width: 100%;
    height: 50px;
    padding: 0 38px 0 13px;
    border: 1px solid #d5dce0;
    border-radius: 9px;
    background-color: #fff;
    color: #252b31;
    font-size: 14px;
    outline: none;
}

.sd-project-picker__form select:focus {
    border-color: #07962f;
    box-shadow: 0 0 0 3px rgba(7, 150, 47, .12);
}

.sd-project-picker__form button {
    align-self: end;
    min-height: 50px;
    border: 0;
    border-radius: 9px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #079b31, #078527);
    color: #fff;
    font-size: 15px;
    font-weight: 750;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(7, 133, 39, .18);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.sd-project-picker__form button:hover {
    transform: translateY(-1px);
    background: #057d28;
    box-shadow: 0 13px 26px rgba(7, 133, 39, .23);
}

.sd-project-picker__form button span {
    font-size: 22px;
    line-height: 1;
}

.sd-project-picker__trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 16px 0 28px;
    padding: 14px 18px;
    border: 1px solid #e0e7e1;
    border-radius: 14px;
    background: rgba(255,255,255,.78);
}

.sd-project-picker__trust > div {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
    padding: 2px 18px;
    color: #4c555d;
    font-size: 13px;
    line-height: 1.3;
}

.sd-project-picker__trust > div:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 0;
    width: 1px;
    height: 38px;
    background: #dde4df;
}

.sd-project-picker__trust .sd-ui-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
}

.sd-project-picker__trust strong {
    display: block;
    color: #20262b;
    font-size: 14px;
}

.sd-project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.sd-project-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e0e5e2;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 9px 28px rgba(29, 47, 35, .07);
    transition: transform .22s ease, box-shadow .22s ease;
}

.sd-project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(29, 47, 35, .12);
}

.sd-project-card__image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e9eee9;
}

.sd-project-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.sd-project-card:hover .sd-project-card__image img {
    transform: scale(1.035);
}

.sd-project-card__placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e9f3eb, #dce8df);
}

.sd-project-card__body {
    padding: 20px 20px 18px;
}

.sd-project-card h3 {
    min-height: 50px;
    margin: 0;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 750;
}

.sd-project-card h3 a {
    color: #1d2429;
    text-decoration: none;
}

.sd-project-card h3 a:hover {
    color: #07872c;
}

.sd-project-card__floor {
    min-height: 20px;
    margin: 6px 0 12px;
    color: #727a82;
    font-size: 13px;
}

.sd-project-card__params {
    display: flex;
    gap: 10px;
    margin-bottom: 17px;
}

.sd-project-card__params span {
    flex: 1 1 0;
    padding: 9px 10px;
    border-radius: 8px;
    background: #f4f7f4;
    color: #5b646c;
    font-size: 13px;
    text-align: center;
}

.sd-project-card__params strong {
    color: #1e2822;
    font-size: 15px;
}

.sd-project-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 15px;
    border-top: 1px solid #e5e9e6;
}

.sd-project-card__price {
    color: #20272c;
    font-size: 18px;
    font-weight: 800;
    white-space: nowrap;
}

.sd-project-card__button {
    min-height: 42px;
    padding: 9px 13px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #07962f;
    color: #fff;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
}

.sd-project-card__button:hover {
    background: #057d28;
    color: #fff;
    text-decoration: none;
}

.sd-project-picker__all {
    margin-top: 28px;
    text-align: center;
}

.sd-project-picker__all a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #087f2c;
    font-size: 16px;
    font-weight: 750;
    text-decoration: none;
}

.sd-project-picker__all a:hover {
    color: #055f21;
    text-decoration: underline;
}

@media (max-width: 1199.98px) {
    .sd-project-picker__form {
        grid-template-columns: repeat(2, 1fr);
    }
    .sd-project-picker__form button {
        grid-column: span 2;
    }
    .sd-project-picker__trust {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 0;
    }
    .sd-project-picker__trust > div:nth-child(2)::after { display: none; }
    .sd-project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
    .sd-project-picker { padding: 40px 0 34px; }
    .sd-project-picker__heading h2 { font-size: 30px; }
    .sd-project-picker__heading p { font-size: 15px; }
    .sd-project-picker__form { grid-template-columns: 1fr; padding: 16px; }
    .sd-project-picker__form button { grid-column: auto; }
    .sd-project-picker__trust { grid-template-columns: 1fr; padding: 12px 16px; }
    .sd-project-picker__trust > div { justify-content: flex-start; padding: 7px 0; }
    .sd-project-picker__trust > div::after { display: none !important; }
    .sd-project-grid { grid-template-columns: 1fr; gap: 16px; }
    .sd-project-card h3 { min-height: 0; }
}

@media (max-width: 420px) {
    .sd-project-card__bottom { align-items: stretch; flex-direction: column; }
    .sd-project-card__button { width: 100%; }
}
