:root {
    --green: #17ae35;
    --green-dark: #0d8c28;
    --green-soft: #bfeccb;
    --ink: #101312;
    --muted: #4f5654;
    --soft: #eef5f1;
    --panel: rgba(40, 43, 42, .72);
    --shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.wrap {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
}

.green-ribbon {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: var(--green);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
}

.hero {
    position: relative;
    min-height: 645px;
    padding: 48px 0 0;
    background:
        linear-gradient(rgba(0, 0, 0, .62), rgba(0, 0, 0, .68)),
        url("hero-parking.png") center center / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .22);
    pointer-events: none;
}

.hero-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
    max-width: 1260px;
    min-height: 430px;
    padding: 46px 42px;
    border-radius: 20px;
    background: var(--panel);
    color: #fff;
    box-shadow: var(--shadow);
    backdrop-filter: blur(4px);
}

.micro {
    margin: 0 0 14px;
    color: #d9f6df;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

h1,
h2,
h3,
p,
li,
span,
strong {
    overflow-wrap: anywhere;
}

h1 {
    max-width: 610px;
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 4.8vw, 52px);
    line-height: 1.05;
    letter-spacing: 0;
}

.hero-list {
    display: grid;
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, .92);
    font-size: 18px;
    line-height: 1.35;
}

.hero-list li::before {
    content: "•";
    margin-right: 9px;
    color: #fff;
}

.lead-form {
    display: grid;
    gap: 15px;
}

.lead-form h2 {
    max-width: 420px;
    margin: 0 auto 2px;
    color: #fff;
    font-size: 22px;
    line-height: 1.15;
    text-align: center;
}

.lead-form p {
    margin: 0 0 2px;
    color: rgba(255, 255, 255, .82);
    text-align: center;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

input,
select {
    width: 100%;
    min-height: 42px;
    border: 0;
    border-radius: 4px;
    padding: 0 15px;
    background: #f7f7f7;
    color: #222;
    font: inherit;
    outline: none;
}

input:focus,
select:focus {
    box-shadow: 0 0 0 3px rgba(23, 174, 53, .35);
}

.cta_contact {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 5px;
    padding: 0 18px;
    background: var(--green);
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.cta_contact.disabled {
    background: #e9ecea;
    color: #6b7370;
    cursor: not-allowed;
}

.privacy {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    text-align: center;
}

.kpi-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 1240px;
    margin-top: 70px;
    padding: 36px 42px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .14);
}

.kpi-card article {
    display: grid;
    gap: 8px;
    text-align: center;
}

.kpi-card strong {
    color: var(--green);
    font-size: clamp(34px, 3.4vw, 44px);
    line-height: 1;
}

.kpi-card span {
    color: #171717;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
}

.section {
    padding: 86px 0;
}

.why {
    padding-top: 140px;
    background: #fff;
}

.why h2,
.yield-section h2 {
    margin: 0 0 44px;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.08;
    text-align: center;
    letter-spacing: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    max-width: 1220px;
    margin: 0 auto;
}

.why-grid article {
    min-height: 252px;
    padding: 28px 32px;
    border-radius: 18px;
    background: var(--green-soft);
    text-align: center;
}

.card-icon {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
    border-radius: 50%;
    background: #fff;
    color: var(--green-dark);
    font-weight: 900;
}

.why-grid h3 {
    margin: 0 0 22px;
    font-size: 21px;
    line-height: 1.3;
}

.why-grid p {
    margin: 0;
    color: #151515;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
}

.investor-band {
    background: var(--soft);
}

.investor-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: center;
    max-width: 1060px;
}

.investor-copy h2 {
    max-width: 560px;
    margin: 0 0 34px;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.08;
}

.investor-copy article {
    margin-bottom: 24px;
}

.investor-copy strong {
    display: block;
    margin-bottom: 10px;
    color: var(--green);
    font-size: 24px;
    line-height: 1.2;
}

.investor-copy p {
    margin: 0;
    color: #252b29;
    font-size: 17px;
    line-height: 1.5;
}

.photo-card,
.yield-photo {
    overflow: hidden;
    border-radius: 18px;
    background: #dce7e1;
}

.photo-card {
    height: 490px;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 76% 54%;
}

.partner-section {
    background: #fff;
    text-align: center;
}

.partners-logo-band {
    width: min(100%, 980px);
    margin: 0 auto;
    object-fit: contain;
}

.yield-section {
    padding-top: 46px;
}

.yield-section h2 {
    margin-bottom: 20px;
}

.yield-grid {
    display: grid;
    grid-template-columns: 470px 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1120px;
}

.yield-photo {
    height: 450px;
}

.yield-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 22% 66%;
}

.yield-grid p {
    margin: 0 0 18px;
    color: #2a302e;
    font-size: 17px;
    line-height: 1.62;
}

.bottom-cta {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

footer {
    padding: 28px 0;
    background: #f5f5f5;
    color: #5d6562;
    font-size: 14px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 980px) {
    .hero-panel,
    .kpi-card,
    .why-grid,
    .investor-grid,
    .yield-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-bottom: 54px;
    }

    .kpi-card {
        margin-top: 38px;
    }

    .why {
        padding-top: 86px;
    }

    .investor-grid,
    .yield-grid {
        max-width: 720px;
    }
}

@media (max-width: 640px) {
    .wrap {
        width: min(100% - 22px, 1220px);
    }

    .green-ribbon {
        font-size: 15px;
    }

    .hero {
        padding-top: 26px;
        background-position: center top;
    }

    .hero-panel {
        gap: 26px;
        min-height: auto;
        padding: 24px 16px;
        border-radius: 14px;
    }

    h1 {
        font-size: 34px;
    }

    .hero-list {
        font-size: 16px;
    }

    .field-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .kpi-card {
        padding: 24px 16px;
        border-radius: 14px;
    }

    .section {
        padding: 58px 0;
    }

    .why {
        padding-top: 62px;
    }

    .why h2,
    .yield-section h2 {
        margin-bottom: 28px;
    }

    .why-grid {
        gap: 18px;
    }

    .why-grid article {
        min-height: 0;
        padding: 22px 18px;
    }

    .photo-card,
    .yield-photo {
        height: 310px;
    }

    .partners-logo-band {
        width: 100%;
    }
}
