@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap");

:root {
    --green-dark: #12372a;
    --green: #2f7d4a;
    --green-light: #70b77e;
    --lime: #dff2c2;
    --cream: #f7f8f2;
    --soft: #eef4eb;
    --white: #ffffff;
    --text: #17201b;
    --muted: #647068;
    --border: #dce5da;
    --shadow: 0 20px 50px rgba(18, 55, 42, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.demo-banner {
    padding: 8px 20px;
    text-align: center;
    background: var(--green-dark);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.navbar {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    font-family: "Manrope", sans-serif;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -1.2px;
    color: var(--green-dark);
}

.logo span {
    color: var(--green);
}

.nav-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--green);
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.nav-cta {
    padding: 13px 19px;
    background: var(--green);
    color: var(--white);
}

.nav-cta:hover,
.button:hover {
    transform: translateY(-2px);
}

.mobile-menu-button {
    display: none;
    border: 0;
    background: transparent;
    font-size: 27px;
    color: var(--green-dark);
}

.hero {
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(112, 183, 126, 0.25), transparent 25%),
        linear-gradient(135deg, #f9fbf5, #edf5e9);
}

.hero-grid {
    min-height: 670px;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 70px;
    padding-top: 75px;
    padding-bottom: 75px;
}

.eyebrow {
    margin-bottom: 15px;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 700px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.98;
    letter-spacing: -4px;
    color: var(--green-dark);
}

.hero-description {
    max-width: 640px;
    margin-top: 25px;
    color: var(--muted);
    font-size: 19px;
}

.hero-buttons {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    padding: 15px 22px;
    border: 0;
}

.button-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 12px 25px rgba(47, 125, 74, 0.2);
}

.button-primary:hover {
    background: var(--green-dark);
}

.button-secondary {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--green-dark);
}

.hero-benefits {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 700;
}

.hero-image-card {
    position: relative;
    min-height: 490px;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.72);
    border-radius: 32px;
    background: #cde6ba;
    box-shadow: var(--shadow);
}

.landscape-scene {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: linear-gradient(#cce9f2 0 58%, #a7cf83 58%);
}

.sun {
    position: absolute;
    top: 55px;
    right: 60px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #f6cf65;
}

.cloud {
    position: absolute;
    width: 105px;
    height: 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.85);
}

.cloud::before,
.cloud::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: inherit;
}

.cloud::before {
    width: 45px;
    height: 45px;
    left: 18px;
    bottom: 0;
}

.cloud::after {
    width: 55px;
    height: 55px;
    right: 12px;
    bottom: 0;
}

.cloud-one {
    top: 75px;
    left: 45px;
}

.cloud-two {
    top: 155px;
    right: 55px;
    transform: scale(0.75);
}

.hill {
    position: absolute;
    border-radius: 50% 50% 0 0;
}

.hill-back {
    width: 600px;
    height: 240px;
    left: -100px;
    bottom: 75px;
    background: #79ae69;
    transform: rotate(6deg);
}

.hill-front {
    width: 650px;
    height: 220px;
    right: -240px;
    bottom: 40px;
    background: #4f8f58;
    transform: rotate(-7deg);
}

.tree {
    position: absolute;
    z-index: 3;
}

.tree-one {
    left: 55px;
    bottom: 75px;
}

.tree-two {
    right: 45px;
    bottom: 85px;
    transform: scale(0.8);
}

.tree-top {
    width: 110px;
    height: 135px;
    border-radius: 50%;
    background: var(--green-dark);
}

.tree-trunk {
    width: 20px;
    height: 70px;
    margin: -15px auto 0;
    background: #765638;
}

.house {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 70px;
    width: 220px;
    transform: translateX(-50%);
}

.roof {
    width: 0;
    height: 0;
    margin: 0 auto;
    border-left: 125px solid transparent;
    border-right: 125px solid transparent;
    border-bottom: 105px solid #66503c;
}

.house-body {
    position: relative;
    width: 210px;
    height: 145px;
    margin: 0 auto;
    background: #f4ead8;
}

.window {
    position: absolute;
    top: 38px;
    left: 32px;
    width: 52px;
    height: 48px;
    border: 7px solid #fdfdfd;
    background: #8bc4d8;
}

.door {
    position: absolute;
    right: 30px;
    bottom: 0;
    width: 52px;
    height: 92px;
    background: #315e45;
}

.lawn {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    left: 0;
    height: 82px;
    background: #3f7c49;
}

.hero-badge {
    position: absolute;
    z-index: 10;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    padding: 17px 20px;
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.hero-badge strong {
    color: var(--green-dark);
}

.hero-badge span {
    color: var(--muted);
    font-size: 13px;
}

.trust-bar {
    background: var(--green-dark);
    color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
    padding: 28px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid div:last-child {
    border-right: 0;
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    font-family: "Manrope", sans-serif;
    font-size: 22px;
}

.trust-grid span {
    margin-top: 3px;
    color: #c7d8ce;
    font-size: 13px;
}

.section {
    padding: 105px 0;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading h2,
.about-content h2,
.contact-content h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -2.5px;
    color: var(--green-dark);
}

.section-heading > p:last-child,
.about-content > p,
.contact-content > p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 17px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.service-number {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--green-dark);
    font-weight: 800;
}

.service-card h3,
.project-card h3,
.process-card h3 {
    font-family: "Manrope", sans-serif;
    color: var(--green-dark);
}

.service-card p {
    margin: 12px 0 22px;
    color: var(--muted);
}

.service-card a {
    color: var(--green);
    font-weight: 800;
}

.section-green {
    overflow: hidden;
    background: var(--green-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    align-items: center;
    gap: 75px;
}

.about-visual {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 30px;
    background: #91bd73;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
}

.about-shape-one {
    width: 430px;
    height: 430px;
    top: -110px;
    right: -120px;
    background: #cfe7a8;
}

.about-shape-two {
    width: 470px;
    height: 470px;
    left: -150px;
    bottom: -260px;
    background: #356b45;
}

.about-content-card {
    position: absolute;
    z-index: 3;
    right: 35px;
    bottom: 35px;
    left: 35px;
    padding: 30px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
}

.about-card-label {
    display: block;
    margin-bottom: 7px;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-content-card strong {
    font-family: "Manrope", sans-serif;
    font-size: 25px;
    line-height: 1.2;
    color: var(--green-dark);
}

.about-content h2,
.section-green .eyebrow {
    color: var(--white);
}

.about-content > p {
    color: #c5d7cc;
}

.check-list {
    margin: 28px 0;
    display: grid;
    gap: 13px;
    color: var(--white);
    font-weight: 600;
}

.button-light {
    background: var(--white);
    color: var(--green-dark);
}

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

.project-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
}

.project-preview {
    height: 245px;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.project-preview span {
    padding: 8px 13px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
}

.project-preview-one {
    background:
        radial-gradient(circle at 20% 20%, #dceeb9 0 10%, transparent 11%),
        linear-gradient(145deg, #8cc274, #315e45);
}

.project-preview-two {
    background:
        radial-gradient(circle at 75% 25%, #f2d28c 0 12%, transparent 13%),
        linear-gradient(145deg, #6da96d, #173e2e);
}

.project-preview-three {
    background:
        linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px),
        linear-gradient(#a4c988, #315e45);
    background-size: 35px 35px, auto;
}

.project-content {
    padding: 25px;
}

.project-content p {
    margin-top: 10px;
    color: var(--muted);
}

.section-soft {
    background: var(--cream);
}

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

.process-card {
    padding: 35px;
    border-radius: 20px;
    background: var(--white);
}

.process-card > span {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--green);
    font-family: "Manrope", sans-serif;
    font-size: 36px;
    font-weight: 800;
}

.process-card p {
    margin-top: 12px;
    color: var(--muted);
}

.reviews-section {
    background: #173e2e;
}

.section-heading-light h2,
.section-heading-light .eyebrow {
    color: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    padding: 32px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.stars {
    margin-bottom: 20px;
    color: #f3ce63;
    letter-spacing: 3px;
}

.review-card p {
    margin-bottom: 24px;
    color: #d3dfd8;
    font-size: 17px;
}

.contact-section {
    background:
        radial-gradient(circle at 15% 50%, rgba(112, 183, 126, 0.18), transparent 22%),
        var(--soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
    gap: 70px;
}

.contact-details {
    margin-top: 35px;
    display: grid;
    gap: 24px;
}

.contact-details div {
    display: flex;
    flex-direction: column;
}

.contact-details strong {
    color: var(--green-dark);
}

.contact-details a,
.contact-details span {
    margin-top: 4px;
    color: var(--muted);
}

.contact-form {
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--green-dark);
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #ccd8cb;
    border-radius: 10px;
    outline: none;
    background: var(--white);
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(47, 125, 74, 0.12);
}

.form-group textarea {
    resize: vertical;
}

.button-full {
    width: 100%;
}

.form-message {
    min-height: 24px;
    margin-top: 14px;
    text-align: center;
    color: var(--green);
    font-weight: 700;
}

.site-footer {
    padding-top: 70px;
    background: #0e2a20;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 50px;
}

.footer-logo {
    color: var(--white);
}

.footer-grid p {
    max-width: 340px;
    margin-top: 18px;
    color: #aebfb5;
}

.footer-grid h3 {
    margin-bottom: 18px;
    font-size: 16px;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
}

.footer-grid a:not(.logo) {
    margin-bottom: 10px;
    color: #aebfb5;
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 55px;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #8fa39a;
    font-size: 13px;
}

@media (max-width: 1000px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-button {
        margin-left: auto;
        display: block;
    }

    .nav-links.active {
        position: absolute;
        top: 78px;
        right: 20px;
        left: 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .nav-links.active a {
        padding: 13px;
    }

    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 45px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid,
    .process-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .hero-grid {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 52px;
        letter-spacing: -3px;
    }

    .hero-image-card {
        min-height: 400px;
    }

    .trust-grid,
    .services-grid,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .trust-grid div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .section {
        padding: 75px 0;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}