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

:root {
    --primary: #2d5016;
    --primary-dark: #1a3009;
    --accent: #7a9b57;
    --text: #2c2c2c;
    --text-light: #666;
    --bg: #fafaf8;
    --white: #ffffff;
    --border: #e0e0de;
}

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand a {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    text-transform: lowercase;
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

.hero-offset-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px 80px 100px;
    background: var(--white);
}

.hero-text-block {
    max-width: 520px;
}

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

.hero-text-block p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-visual-right {
    flex: 1;
    position: relative;
    margin-top: 60px;
}

.hero-visual-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
}

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

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

.intro-overlap {
    padding: 0 100px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.intro-card-offset {
    background: var(--accent);
    color: var(--white);
    padding: 60px 70px;
    border-radius: 12px;
    display: flex;
    gap: 80px;
    align-items: center;
    margin-left: 120px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-stat h3 {
    font-size: 48px;
    margin-bottom: 8px;
}

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

.intro-text {
    flex: 1;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.7;
}

.philosophy-split {
    display: flex;
    margin: 120px 0;
    gap: 0;
}

.philosophy-image-left {
    flex: 0.9;
    margin-right: -40px;
    z-index: 1;
}

.philosophy-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 12px 12px 0;
}

.philosophy-content-right {
    flex: 1.1;
    background: var(--white);
    padding: 80px 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.06);
}

.philosophy-content-right h2 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 28px;
    line-height: 1.2;
}

.philosophy-content-right p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-text {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    margin-top: 16px;
    display: inline-block;
    transition: transform 0.3s;
}

.cta-text:hover {
    transform: translateX(8px);
}

.services-asymmetric {
    padding: 100px 80px;
    background: var(--bg);
}

.section-header-offset {
    margin-left: 180px;
    margin-bottom: 60px;
}

.section-header-offset h2 {
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.section-header-offset p {
    font-size: 18px;
    color: var(--text-light);
}

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

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

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

.service-card-wide {
    flex: 1 1 calc(66.666% - 20px);
}

.service-card-elevated {
    margin-top: -40px;
}

.service-icon {
    color: var(--primary);
    margin-bottom: 24px;
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 15px;
}

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

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

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

.testimonial-overlay {
    padding: 100px 80px;
    background: var(--primary-dark);
    margin: 80px 0;
    position: relative;
}

.testimonial-block {
    max-width: 800px;
    margin: 0 auto 0 120px;
    color: var(--white);
}

.testimonial-block blockquote {
    font-size: 26px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
    font-weight: 300;
}

.testimonial-block cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

.form-section-irregular {
    display: flex;
    gap: 0;
    margin: 120px 0;
    align-items: stretch;
}

.form-container-offset {
    flex: 1.2;
    background: var(--white);
    padding: 80px 90px;
    margin-right: -60px;
    z-index: 10;
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.08);
}

.form-header h2 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.form-header p {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 40px;
}

.form-visual {
    flex: 0.8;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
}

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

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

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

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

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

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

.values-stacked {
    padding: 100px 80px;
    background: var(--bg);
}

.values-intro {
    margin-bottom: 60px;
    margin-left: 100px;
}

.values-intro h2 {
    font-size: 48px;
    color: var(--primary-dark);
}

.values-grid-offset {
    display: flex;
    gap: 40px;
    margin-left: 40px;
}

.value-card {
    flex: 1;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.value-card-elevated {
    margin-top: -60px;
}

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

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

.process-irregular {
    padding: 100px 80px;
    background: var(--white);
}

.process-header-offset {
    margin-bottom: 70px;
    margin-left: 200px;
}

.process-header-offset h2 {
    font-size: 48px;
    color: var(--primary-dark);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-left: 60px;
}

.process-step {
    flex: 1 1 calc(50% - 25px);
    min-width: 300px;
}

.process-step-offset {
    margin-top: 60px;
    margin-left: 80px;
}

.step-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

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

.cta-sticky-trigger {
    padding: 120px 80px;
    background: var(--accent);
    margin: 100px 0;
}

.cta-content-offset {
    max-width: 700px;
    margin-left: 160px;
    color: var(--white);
}

.cta-content-offset h2 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.cta-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 18px 42px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.3s;
}

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 60px;
}

.footer-brand {
    flex: 1;
    max-width: 350px;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 12px;
    text-transform: lowercase;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 16px;
}

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

.footer-column h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    opacity: 0.7;
}

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

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

.footer-column a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 20px;
    text-align: center;
    z-index: 999;
    transition: bottom 0.3s;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.sticky-cta.visible {
    bottom: 0;
}

.sticky-cta-btn {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: var(--white);
    padding: 24px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

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

    .hero-offset-left {
        padding: 60px 40px;
    }

    .hero-visual-right {
        margin-top: 0;
        height: 400px;
    }

    .intro-card-offset {
        flex-direction: column;
        margin-left: 0;
        gap: 30px;
    }

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

    .philosophy-image-left {
        margin-right: 0;
        height: 400px;
    }

    .philosophy-content-right {
        padding: 60px 40px;
    }

    .section-header-offset,
    .values-intro,
    .process-header-offset,
    .cta-content-offset,
    .testimonial-block {
        margin-left: 0;
    }

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

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

    .form-section-irregular {
        flex-direction: column-reverse;
    }

    .form-container-offset {
        margin-right: 0;
        padding: 60px 40px;
    }

    .form-visual {
        height: 300px;
    }

    .values-grid-offset {
        flex-direction: column;
        margin-left: 0;
    }

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

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

@media (max-width: 768px) {
    .nav-floating {
        width: calc(100% - 40px);
        left: 20px;
        transform: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        margin-top: 10px;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

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

    .services-asymmetric,
    .values-stacked,
    .process-irregular,
    .cta-sticky-trigger {
        padding: 60px 24px;
    }

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

    .process-step-offset {
        margin-left: 0;
    }
}