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

:root {
    --primary: #2d7a3e;
    --primary-dark: #1f5a2c;
    --secondary: #f4a900;
    --dark: #1a1a1a;
    --gray: #6b6b6b;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --border: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

.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-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 36px;
}

.nav-right a {
    color: var(--dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

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

.hero-content h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--dark);
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-visual {
    flex: 1;
    height: 85vh;
    overflow: hidden;
}

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

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

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

.intro-offset {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
    background: var(--light-gray);
}

.intro-text {
    flex: 1.2;
}

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

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--gray);
    margin-top: 8px;
}

.services-modern {
    padding: 100px 60px;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-header-center h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-header-center p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
}

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

.service-card {
    flex: 1 1 calc(50% - 18px);
    display: flex;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 12px 32px var(--shadow);
    transform: translateY(-4px);
}

.service-visual {
    flex: 0 0 40%;
}

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

.service-info {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--dark);
}

.service-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

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

.btn-service-select:hover {
    background: var(--primary-dark);
}

.btn-service-select.selected {
    background: var(--secondary);
}

.trust-split {
    display: flex;
    background: var(--dark);
    color: var(--white);
}

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

.trust-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 28px;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 36px;
    opacity: 0.9;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 18px;
    padding-left: 32px;
    position: relative;
}

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

.trust-visual {
    flex: 0 0 45%;
}

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

.process-asymmetric {
    padding: 100px 60px;
    background: var(--light-gray);
}

.process-asymmetric h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 240px;
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray);
}

.testimonials-modern {
    padding: 100px 60px;
}

.testimonials-modern h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.testimonial-grid {
    display: flex;
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}

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

.form-section-split {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    background: var(--light-gray);
}

.form-intro {
    flex: 0 0 40%;
}

.form-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray);
}

.form-container {
    flex: 1;
    background: var(--white);
    padding: 44px;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border);
    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);
}

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

.btn-submit:hover {
    background: var(--primary-dark);
}

.final-cta-overlay {
    padding: 120px 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-overlay-content h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-overlay-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 44px;
    background: var(--secondary);
    color: var(--dark);
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
}

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

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

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

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

.sticky-cta.show {
    display: block;
}

.btn-sticky {
    display: inline-block;
    padding: 16px 32px;
    background: var(--secondary);
    color: var(--dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .nav-split {
        padding: 20px 30px;
    }

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

    .hero-content {
        padding: 60px 30px;
    }

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

    .hero-visual {
        height: 50vh;
    }

    .intro-offset {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .services-modern {
        padding: 60px 30px;
    }

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

    .service-visual {
        flex: 0 0 250px;
    }

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

    .trust-content {
        padding: 60px 30px;
    }

    .trust-visual {
        flex: 0 0 400px;
    }

    .process-asymmetric {
        padding: 60px 30px;
    }

    .testimonials-modern {
        padding: 60px 30px;
    }

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

    .form-section-split {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-column {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .nav-right {
        gap: 20px;
    }

    .nav-right a {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .intro-text h2 {
        font-size: 32px;
    }

    .section-header-center h2 {
        font-size: 32px;
    }

    .trust-content h2 {
        font-size: 32px;
    }

    .process-asymmetric h2 {
        font-size: 32px;
    }

    .testimonials-modern h2 {
        font-size: 32px;
    }

    .form-intro h2 {
        font-size: 32px;
    }

    .cta-overlay-content h2 {
        font-size: 32px;
    }

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

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

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

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