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

:root {
    --primary-color: #2d5016;
    --secondary-color: #7cb342;
    --accent-color: #ff6f00;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.centered-block {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1100px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-overlay {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d5016 0%, #5a8f2f 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.story-intro {
    padding: 80px 20px;
    background: var(--white);
}

.opening-line {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-intro p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.problem-amplify {
    padding: 100px 20px;
    background: var(--bg-light);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 1.1rem;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-weight: bold;
    font-size: 1.3rem;
}

.emphasis-text {
    background: #fff3e0;
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    font-weight: 600;
    margin-top: 30px;
}

.split-image {
    flex: 1;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
}

.garden-fail {
    background: linear-gradient(135deg, #8b7355 0%, #d4a574 100%);
}

.insight-reveal {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--white);
}

.insight-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.big-text {
    font-size: 1.35rem;
    line-height: 1.8;
}

.trust-build {
    padding: 100px 20px;
    background: var(--white);
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s;
}

.trust-card:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.testimonial-inline {
    padding: 80px 20px;
    background: var(--secondary-color);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.8;
    padding: 0;
    border: none;
}

.testimonial-content cite {
    display: block;
    margin-top: 20px;
    font-size: 1.1rem;
    font-style: normal;
    color: rgba(255,255,255,0.9);
}

.benefit-cards {
    padding: 100px 20px;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
    text-align: center;
}

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.benefit-item {
    display: flex;
    gap: 50px;
    align-items: center;
}

.benefit-item.reverse {
    flex-direction: row-reverse;
}

.benefit-image {
    flex: 1;
    height: 320px;
    border-radius: 12px;
    min-width: 300px;
}

.greenhouse {
    background: linear-gradient(135deg, #4a7c59 0%, #7cb342 100%);
}

.tools {
    background: linear-gradient(135deg, #5d4037 0%, #8d6e63 100%);
}

.seasonal {
    background: linear-gradient(135deg, #0277bd 0%, #4fc3f7 100%);
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefit-text p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.social-proof {
    padding: 100px 20px;
    background: var(--bg-light);
}

.social-proof h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-box {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.testimonial-box p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.customer-name {
    font-weight: 600;
    color: var(--primary-color);
}

.scenario-story {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1b5e20 0%, #388e3c 100%);
    color: var(--white);
}

.scenario-story h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.scenario-text {
    font-size: 1.25rem;
    margin-bottom: 25px;
    line-height: 1.9;
}

.urgency-block {
    padding: 80px 20px;
    background: #fff3e0;
}

.urgency-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.urgency-content p {
    font-size: 1.2rem;
}

.services-preview {
    padding: 100px 20px;
    background: var(--white);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-image {
    height: 200px;
    border-radius: 8px;
    margin: 20px 0;
}

.plants-display {
    background: linear-gradient(135deg, #66bb6a 0%, #81c784 100%);
}

.tools-display {
    background: linear-gradient(135deg, #6d4c41 0%, #a1887f 100%);
}

.raised-bed {
    background: linear-gradient(135deg, #8d6e63 0%, #bcaaa4 100%);
}

.furniture-display {
    background: linear-gradient(135deg, #5d4037 0%, #795548 100%);
}

.irrigation {
    background: linear-gradient(135deg, #0288d1 0%, #4fc3f7 100%);
}

.consultation {
    background: linear-gradient(135deg, #388e3c 0%, #66bb6a 100%);
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.cta-link {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.cta-link:hover {
    color: var(--primary-color);
}

.guarantee-section {
    padding: 100px 20px;
    background: var(--secondary-color);
}

.guarantee-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
}

.guarantee-box h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.guarantee-box p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.guarantee-subtext {
    font-weight: 600;
    color: var(--accent-color);
}

.form-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-primary {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--secondary-color);
}

.form-privacy {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

.form-privacy a {
    color: var(--secondary-color);
    text-decoration: none;
}

.final-cta {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--white);
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-secondary {
    display: inline-block;
    padding: 18px 50px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.main-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 18px 35px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
}

.sticky-btn:hover {
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    padding: 25px;
    z-index: 1001;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-reject {
    background: #e0e0e0;
    color: var(--text-dark);
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        border-radius: 12px;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

    .split-layout {
        flex-direction: column;
    }

    .benefit-item,
    .benefit-item.reverse {
        flex-direction: column;
    }

    .testimonial-grid {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-btn {
        padding: 15px 25px;
        font-size: 0.95rem;
    }
}

.contact-page {
    padding: 120px 20px 80px;
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.legal-page {
    padding: 120px 20px 80px;
    background: var(--white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.about-page {
    padding: 120px 20px 80px;
}

.about-hero {
    text-align: center;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.services-page {
    padding: 120px 20px 80px;
}

.services-hero {
    text-align: center;
    margin-bottom: 60px;
}

.services-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

.service-detail h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-detail .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-detail p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-detail ul {
    margin: 20px 0 20px 30px;
}

.service-detail ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-page {
    padding: 120px 20px 80px;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.thanks-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 30px;
}