:root {
    --primary: #2d5a27;
    --primary-light: #4a8f42;
    --primary-dark: #1e3d1a;
    --secondary: #f4a259;
    --accent: #bc6c25;
    --bg-light: #f8f9f5;
    --bg-cream: #fefef9;
    --bg-sage: #e8efe5;
    --text-dark: #1a1a1a;
    --text-muted: #5c5c5c;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(45,90,39,0.12);
    --shadow-lg: 0 12px 48px rgba(45,90,39,0.18);
    --radius: 12px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button, .btn {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 16px 36px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo svg {
    width: 38px;
    height: 38px;
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    padding: 10px 18px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 8px;
}

nav a:hover, nav a.active {
    background: var(--bg-sage);
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    font-size: 1.6rem;
    color: var(--primary);
}

.split-section {
    display: flex;
    min-height: 100vh;
}

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

.split-content, .split-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content {
    padding: 80px 60px;
}

.split-image {
    position: relative;
    overflow: hidden;
}

.split-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,90,39,0.3) 0%, transparent 60%);
}

.hero-section {
    padding-top: 80px;
}

.hero-badge {
    display: inline-block;
    background: var(--bg-sage);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--primary);
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(45,90,39,0.15);
}

.stat-item h4 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.services-split {
    display: flex;
    gap: 0;
}

.services-list {
    flex: 1;
    padding: 60px;
    background: var(--white);
}

.services-visual {
    flex: 1;
    background: var(--bg-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.service-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.service-card.active {
    background: var(--primary);
    color: var(--white);
}

.service-card.active .service-price {
    color: var(--secondary);
}

.service-info h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.service-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.services-visual-content {
    text-align: center;
}

.services-visual-content svg {
    width: 200px;
    height: 200px;
    margin-bottom: 32px;
}

.services-visual-content h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.services-visual-content p {
    color: var(--text-muted);
    max-width: 320px;
}

.about-split {
    display: flex;
    background: var(--white);
}

.about-image {
    flex: 0 0 45%;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 2.4rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-sage);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.feature-text h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.process-section {
    background: var(--primary-dark);
    color: var(--white);
}

.process-steps {
    display: flex;
    gap: 0;
}

.process-step {
    flex: 1;
    padding: 48px 36px;
    border-right: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.process-step:last-child {
    border-right: none;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.1);
    position: absolute;
    top: 20px;
    right: 20px;
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    position: relative;
}

.process-step p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.testimonials-grid {
    display: flex;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 28px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
}

.author-info h5 {
    font-weight: 600;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.cta-split {
    display: flex;
    align-items: center;
    min-height: 400px;
}

.cta-content {
    flex: 1;
    padding: 60px;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 450px;
}

.cta-visual {
    flex: 0 0 40%;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-visual svg {
    width: 280px;
    height: 280px;
    opacity: 0.2;
}

.contact-split {
    display: flex;
    min-height: calc(100vh - 80px);
}

.contact-info {
    flex: 0 0 40%;
    background: var(--primary);
    color: var(--white);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2.4rem;
    margin-bottom: 24px;
}

.contact-info > p {
    opacity: 0.9;
    margin-bottom: 48px;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item-text h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item-text p {
    opacity: 0.85;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.contact-form-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 36px;
}

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

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e5e5;
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--bg-light);
}

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

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-row .form-group {
    flex: 1;
}

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: flex;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    flex: 0 0 320px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.8;
}

.footer-links {
    flex: 1;
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--white);
}

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

.footer-column li {
    margin-bottom: 14px;
}

.footer-column a {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 32px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    font-weight: 600;
    margin-bottom: 6px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-actions button {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-reject {
    background: var(--bg-light);
    color: var(--text-dark);
}

.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 998;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary);
    color: var(--text-dark);
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.sticky-cta a:hover {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.05);
}

.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--bg-sage) 0%, var(--bg-cream) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-muted);
}

.content-section {
    padding: 80px 0;
    background: var(--white);
}

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

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

.content-wrapper h3 {
    font-size: 1.4rem;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

.content-wrapper p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-wrapper ul {
    margin: 16px 0 24px 24px;
    color: var(--text-muted);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-card-full {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.service-card-image {
    height: 200px;
    background: var(--bg-sage);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-image svg {
    width: 80px;
    height: 80px;
    color: var(--primary);
}

.service-card-body {
    padding: 32px;
}

.service-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-card-body p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.service-card-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-sage) 0%, var(--bg-cream) 100%);
}

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

.thanks-icon {
    width: 120px;
    height: 120px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.thanks-icon svg {
    width: 60px;
    height: 60px;
    color: var(--white);
}

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

.thanks-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.about-team {
    display: flex;
    gap: 32px;
    margin-top: 60px;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--bg-sage);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
}

.team-member h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.team-member span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.inline-cta {
    background: var(--bg-sage);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin: 48px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.inline-cta h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    margin-top: 0;
}

.inline-cta p {
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 1024px) {
    .split-section {
        flex-direction: column;
    }

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

    .split-image {
        min-height: 400px;
    }

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

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

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

    .about-image {
        min-height: 350px;
    }

    .process-steps {
        flex-direction: column;
    }

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

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

    .cta-split {
        flex-direction: column;
        text-align: center;
    }

    .cta-visual {
        display: none;
    }

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

    .contact-info {
        padding: 60px 32px;
    }

    .contact-form-wrapper {
        padding: 60px 32px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
    }

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

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

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow);
    }

    nav.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .split-content {
        padding: 60px 24px;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

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

    .services-list {
        padding: 40px 24px;
    }

    .services-visual {
        padding: 40px 24px;
    }

    .about-content {
        padding: 48px 24px;
    }

    .cta-content {
        padding: 48px 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .about-team {
        flex-direction: column;
    }

    .inline-cta {
        flex-direction: column;
        text-align: center;
    }
}
