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

:root {
    --primary-green: #2d5016;
    --accent-lime: #7fb800;
    --dark-earth: #1a1a1a;
    --light-sand: #f4f1ea;
    --mid-grey: #6b6b6b;
    --white: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark-earth);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-earth);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.split-hero {
    display: flex;
    min-height: 100vh;
    margin-top: 80px;
}

.split-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
    background: var(--light-sand);
}

.split-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.split-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.2), rgba(127, 184, 0, 0.1));
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--mid-grey);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-lime);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.section-split {
    display: flex;
    min-height: 600px;
}

.section-split.reverse {
    flex-direction: row-reverse;
}

.content-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
}

.image-half {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-lime);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-text {
    font-size: 1.1rem;
    color: var(--mid-grey);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 5rem 5%;
    background: var(--white);
}

.service-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
    background: var(--light-sand);
    padding: 3rem;
    border-radius: 12px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 1rem;
    color: var(--mid-grey);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-lime);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--dark-earth);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-lime);
    font-weight: bold;
}

.form-section {
    background: var(--primary-green);
    padding: 6rem 5%;
    color: var(--white);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.form-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    text-align: center;
    opacity: 0.9;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input,
.form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-lime);
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background: var(--primary-green);
    color: var(--white);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-lime);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--white);
    color: var(--primary-green);
}

.stats-section {
    display: flex;
    background: var(--dark-earth);
    color: var(--white);
}

.stat-block {
    flex: 1;
    padding: 4rem 3rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-block:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-lime);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.footer-main {
    background: var(--dark-earth);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-grid {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-lime);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-earth);
    color: var(--white);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    margin-right: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--accent-lime);
    color: var(--white);
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--accent-lime);
    margin-bottom: 2rem;
}

.thanks-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.thanks-text {
    font-size: 1.2rem;
    color: var(--mid-grey);
    margin-bottom: 2.5rem;
}

.content-page {
    max-width: 900px;
    margin: 120px auto 5rem;
    padding: 0 5%;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.page-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 2.5rem 0 1rem;
}

.page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--mid-grey);
}

.page-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.8rem;
    color: var(--mid-grey);
}

.contact-split {
    display: flex;
    min-height: 80vh;
    margin-top: 80px;
}

.contact-info {
    flex: 1;
    background: var(--primary-green);
    color: var(--white);
    padding: 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map {
    flex: 1;
    background: var(--light-sand);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item {
    margin-bottom: 3rem;
}

.info-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.info-value {
    font-size: 1.3rem;
    font-weight: 600;
}

.cta-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--accent-lime);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--accent-lime);
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--accent-lime);
    color: var(--white);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    background: var(--accent-lime);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s;
}

.sticky-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

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

    .split-hero,
    .section-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .stats-section {
        flex-direction: column;
    }

    .stat-block {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-text {
        margin-right: 0;
    }

    .sticky-cta {
        display: none;
    }
}
