:root {
    --color-primary: #2d5a3d;
    --color-secondary: #8b6914;
    --color-accent: #d4a84b;
    --color-dark: #1a2e1f;
    --color-light: #f5f7f4;
    --color-white: #ffffff;
    --color-gray: #6b7b6e;
    --color-gray-light: #e8ebe7;
    --color-overlay: rgba(26, 46, 31, 0.85);
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-white);
}

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

ul {
    list-style: none;
}

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

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

.ad-disclosure {
    background-color: var(--color-gray-light);
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    color: var(--color-gray);
}

.top-nav {
    background-color: var(--color-white);
    padding: 16px 0;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

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

.nav-menu a {
    font-size: 15px;
    color: var(--color-dark);
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    transition: var(--transition);
}

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

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

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

.split-image {
    flex: 1;
    position: relative;
    background-color: var(--color-gray-light);
}

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

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

.hero-section .split-content {
    background-color: var(--color-dark);
}

.hero-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: inherit;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

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

.service-card-image {
    height: 200px;
    background-color: var(--color-gray-light);
    position: relative;
}

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

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

.service-card h3 {
    margin-bottom: 12px;
    color: var(--color-dark);
}

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

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-gray-light);
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
}

.price-unit {
    font-size: 14px;
    color: var(--color-gray);
}

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

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

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

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

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

.feature-text p {
    color: var(--color-gray);
    font-size: 15px;
}

.testimonial-section {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content {
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
    color: var(--color-dark);
}

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

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-gray-light);
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 4px;
}

.author-info span {
    color: var(--color-gray);
    font-size: 14px;
}

.contact-form-wrapper {
    background-color: var(--color-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid var(--color-gray-light);
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--color-white);
}

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

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

.form-consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.form-consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.form-consent label {
    font-size: 14px;
    color: var(--color-gray);
    cursor: pointer;
}

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

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

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

.footer-col h4 {
    color: var(--color-accent);
    margin-bottom: 24px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    font-size: 15px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    font-size: 15px;
}

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

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

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

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

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: var(--transition);
}

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

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

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

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

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

.cookie-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background-color: var(--color-accent);
    color: var(--color-dark);
}

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

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

.cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.page-header {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.content-wrapper h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.content-wrapper h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.content-wrapper p {
    margin-bottom: 16px;
    color: var(--color-gray);
}

.content-wrapper ul {
    margin: 16px 0;
    padding-left: 24px;
}

.content-wrapper li {
    margin-bottom: 8px;
    color: var(--color-gray);
    list-style: disc;
}

.contact-info-block {
    background-color: var(--color-light);
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
}

.contact-info-block h3 {
    margin-bottom: 24px;
    color: var(--color-primary);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item p {
    margin: 0;
    color: var(--color-dark);
}

.contact-item span {
    display: block;
    font-size: 13px;
    color: var(--color-gray);
    margin-top: 4px;
}

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

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

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

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

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.disclaimer-block {
    background-color: var(--color-light);
    padding: 24px;
    border-radius: 8px;
    margin-top: 60px;
    border-left: 4px solid var(--color-secondary);
}

.disclaimer-block p {
    font-size: 13px;
    color: var(--color-gray);
    margin: 0;
}

.about-team {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    background-color: var(--color-gray-light);
    overflow: hidden;
    flex-shrink: 0;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h4 {
    margin-bottom: 4px;
}

.team-info span {
    font-size: 14px;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 12px;
}

.team-info p {
    font-size: 14px;
    color: var(--color-gray);
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--color-gray-light);
}

.stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

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

.stat-label {
    font-size: 14px;
    color: var(--color-gray);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 48px;
}

.process-step {
    display: flex;
    gap: 32px;
    position: relative;
    padding-bottom: 48px;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step:last-child::before {
    display: none;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 56px;
    width: 2px;
    height: calc(100% - 56px);
    background-color: var(--color-gray-light);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content h4 {
    margin-bottom: 8px;
}

.step-content p {
    color: var(--color-gray);
}

.cta-sticky {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cta-sticky.show {
    opacity: 1;
    visibility: visible;
}

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

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

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

    .split-content {
        padding: 48px 32px;
    }

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

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        box-shadow: var(--shadow-medium);
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

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

    .footer-grid {
        gap: 40px;
    }

    .footer-col {
        flex: 1 1 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .team-member {
        flex: 1 1 100%;
    }

    .stats-row {
        gap: 24px;
    }

    .stat-item {
        flex: 1 1 calc(50% - 12px);
    }
}

@media (max-width: 480px) {
    .split-content {
        padding: 36px 20px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }

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

    .process-step {
        gap: 20px;
    }
}
