:root {
    --primary: #2d5a3d;
    --primary-dark: #1e3d29;
    --secondary: #7ba05b;
    --accent: #d4a857;
    --light: #f7f9f4;
    --dark: #1a2e1f;
    --gray: #6b7c6e;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(45, 90, 61, 0.12);
    --shadow-lg: 0 12px 40px rgba(45, 90, 61, 0.18);
}

* {
    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(--dark);
    background: var(--white);
}

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

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

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

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

header {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    max-width: 1180px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 20px;
}

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

.mobile-nav a {
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--light);
}

.hero {
    margin-top: 70px;
    min-height: 85vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><defs><linearGradient id="g1" x1="0%25" y1="0%25" x2="100%25" y2="100%25"><stop offset="0%25" style="stop-color:%237ba05b;stop-opacity:0.3"/><stop offset="100%25" style="stop-color:%232d5a3d;stop-opacity:0.1"/></linearGradient></defs><ellipse cx="500" cy="300" rx="350" ry="280" fill="url(%23g1)"/><circle cx="650" cy="150" r="120" fill="%237ba05b" opacity="0.15"/><circle cx="300" cy="450" r="80" fill="%23d4a857" opacity="0.1"/></svg>') no-repeat center;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 24px;
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    line-height: 1.8;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
}

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

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

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

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

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

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--light);
}

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

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

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.feature-card {
    flex: 1 1 300px;
    max-width: 360px;
    background: var(--white);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

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

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 80px;
}

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

.split-content {
    flex: 1;
}

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

.split-content p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.split-content ul {
    list-style: none;
    margin: 24px 0;
}

.split-content ul li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    color: var(--dark);
}

.split-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.3;
}

.split-content ul li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
}

.split-image {
    flex: 1;
    position: relative;
}

.split-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.split-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--secondary);
    opacity: 0.1;
    border-radius: 16px;
    z-index: -1;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateX(8px);
}

.service-image {
    width: 200px;
    min-height: 160px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image svg {
    width: 48px;
    height: 48px;
    stroke: var(--white);
}

.service-content {
    flex: 1;
    padding: 28px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.service-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.service-info p {
    color: var(--gray);
    font-size: 0.95rem;
}

.service-price {
    text-align: right;
}

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

.service-price .unit {
    font-size: 0.85rem;
    color: var(--gray);
}

.testimonials-section {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 340px;
    max-width: 400px;
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

.stats-section {
    padding: 80px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-section {
    text-align: center;
    padding: 100px 24px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-section p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.form-section {
    background: var(--light);
}

.form-container {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e9e6;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(123, 160, 91, 0.1);
}

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

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

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

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.form-submit .btn {
    min-width: 220px;
}

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 60px;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

.page-header {
    margin-top: 70px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

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

.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 16px;
    margin-top: 40px;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    color: var(--dark);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 24px;
}

.content-section ul li {
    margin-bottom: 10px;
    color: var(--dark);
}

.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-intro-content {
    flex: 1;
}

.about-intro-image {
    flex: 1;
}

.about-intro-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.team-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 48px;
}

.team-member {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

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

.team-member h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.team-member span {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 320px;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

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

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

.contact-item h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-form-wrap {
    flex: 1 1 400px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1 1 340px;
    max-width: 380px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card-image svg {
    width: 64px;
    height: 64px;
    stroke: var(--white);
}

.service-card-content {
    padding: 28px;
}

.service-card-content h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 12px;
}

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

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

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

.service-card-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray);
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

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

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

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

.thanks-content h1 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 16px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.cookie-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

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

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.cookie-reject:hover {
    border-color: var(--white);
}

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

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

.sticky-cta .btn {
    box-shadow: var(--shadow-lg);
}

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

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

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

    .about-intro {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 80px 0;
    }

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

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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

    .form-container {
        padding: 32px 24px;
    }

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

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

    .service-item {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
        min-height: 120px;
    }

    .service-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .service-price {
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

    .sticky-cta {
        right: 16px;
        bottom: 80px;
    }
}
