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

:root {
    --primary-color: #1a5f3f;
    --secondary-color: #2d8659;
    --accent-color: #48a86f;
    --dark-bg: #0f1f16;
    --light-bg: #f8faf9;
    --text-dark: #1a1a1a;
    --text-light: #4a5555;
    --text-white: #ffffff;
    --border-color: #d4ddd8;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--text-white);
    overflow-x: hidden;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: var(--text-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

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

.hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-lead {
    font-size: 21px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 38px;
    max-width: 520px;
}

.hero-visual {
    flex: 1;
    min-height: 500px;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 16px 38px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary:hover {
    background: var(--secondary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cta-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 16px 38px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-secondary:hover {
    background: var(--accent-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cta-inline {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 12px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    border-bottom-color: var(--secondary-color);
    color: var(--secondary-color);
}

.trust-strip {
    background: var(--light-bg);
    padding: 45px 0;
}

.trust-text {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.split-content {
    display: flex;
    align-items: center;
    padding: 90px 0;
    gap: 70px;
}

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

.content-text {
    flex: 1;
    padding: 0 40px;
}

.content-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.content-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.content-visual {
    flex: 1;
    max-width: 550px;
}

.content-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.insight-block {
    background: var(--dark-bg);
    color: var(--text-white);
    padding: 80px 0;
    margin: 60px 0;
}

.insight-content h3 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 700;
}

.insight-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #d4ddd8;
    margin-bottom: 18px;
}

.benefit-list {
    list-style: none;
    margin-top: 28px;
}

.benefit-list li {
    font-size: 17px;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-light);
}

.benefit-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.testimonial-inline {
    background: var(--light-bg);
    padding: 60px 0;
    margin: 60px 0;
}

.testimonial-inline blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 32px;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 21px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.testimonial-inline footer {
    font-style: normal;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
}

.services-grid {
    padding: 90px 0;
    background: var(--light-bg);
}

.section-title {
    font-size: 46px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: var(--text-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    flex: 1 1 350px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 24px;
    flex-grow: 1;
}

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

.btn-service {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-service.selected {
    background: var(--accent-color);
}

.cta-block {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 70px 0;
    text-align: center;
}

.cta-block h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-block p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

.form-section h2 {
    font-size: 42px;
    margin-bottom: 18px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.final-trust {
    background: var(--light-bg);
    padding: 50px 0;
    text-align: center;
}

.final-trust p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #d4ddd8;
}

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

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

.footer-col ul li a {
    color: #d4ddd8;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #d4ddd8;
}

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

.sticky-cta-btn {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--accent-color);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 24px;
    z-index: 10000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: var(--text-dark);
}

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

.btn-cookie,
.btn-cookie-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.btn-cookie-secondary:hover {
    border-color: var(--text-dark);
}

.page-hero {
    background: var(--light-bg);
    padding: 100px 0 70px;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.page-lead {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.values-section {
    padding: 90px 0;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1 1 320px;
    max-width: 360px;
    padding: 35px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.stats-section {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 80px 0;
}

.stats-section .section-title {
    color: var(--text-white);
}

.stats-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.team-section {
    padding: 70px 0;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.team-section p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-detail {
    padding: 70px 0;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1.2;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    font-size: 16px;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
}

.service-detail-content ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 24px;
}

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

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-cta {
    background: var(--light-bg);
    padding: 70px 0;
    text-align: center;
}

.service-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-section {
    padding: 70px 0;
}

.contact-grid {
    display: flex;
    gap: 70px;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.response-info,
.location-section {
    padding: 60px 0;
}

.response-info h2,
.location-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.response-info p,
.location-section p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 18px;
}

.thanks-section {
    padding: 100px 0;
    min-height: 70vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.selected-service-box {
    background: var(--light-bg);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color);
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-color);
    color: var(--text-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.thanks-extra p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-content {
    padding: 70px 0;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-content h2 {
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 14px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 24px;
    margin-left: 24px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--text-white);
    box-shadow: var(--shadow);
}

.cookies-table thead {
    background: var(--light-bg);
}

.cookies-table th {
    padding: 14px;
    text-align: left;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
    border-bottom: 2px solid var(--border-color);
}

.cookies-table td {
    padding: 14px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-light);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text {
        padding: 50px 30px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 40px;
        padding: 60px 0;
    }

    .content-text {
        padding: 0 20px;
    }

    .content-text h2 {
        font-size: 34px;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .stats-grid {
        gap: 30px;
    }

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

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

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

    .nav-toggle {
        display: flex;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .section-title {
        font-size: 36px;
    }

    .content-text h2 {
        font-size: 30px;
    }

    .service-cards {
        gap: 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie,
    .btn-cookie-secondary {
        width: 100%;
    }

    .page-hero h1 {
        font-size: 38px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .section-title {
        font-size: 30px;
    }

    .service-card {
        padding: 30px 20px;
    }

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

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