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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --dark-bg: #1a2f1a;
    --light-bg: #f8f9f7;
    --text-dark: #2d3c2e;
    --text-light: #f8f9f7;
    --accent: #ff8c42;
    --border-color: #d4dfd2;
}

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

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.floating-nav {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s;
}

.hero-block {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #f8f9f7 0%, #e8ede6 100%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #5a6b5a;
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1;
    padding-left: 3rem;
}

.hero-visual img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.cta-primary:hover {
    background: #234a24;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #e67a35;
    transform: translateY(-2px);
}

.cta-text {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.3s;
}

.cta-text:hover {
    color: var(--accent);
}

.trust-indicator {
    padding: 3rem 2rem;
    background: white;
}

.trust-text {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6b5a;
    font-style: italic;
}

section {
    padding: 5rem 2rem;
}

.dark-bg {
    background: var(--dark-bg);
    color: var(--text-light);
}

.problem-section {
    padding: 6rem 2rem;
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
}

.insight-block {
    background: var(--light-bg);
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #5a6b5a;
}

.insight-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.insight-card {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.insight-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial-inline {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.testimonial-inline blockquote {
    border-left: 4px solid white;
    padding-left: 2rem;
    color: white;
}

.testimonial-inline p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-style: normal;
    opacity: 0.9;
}

.services-reveal {
    background: white;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6b5a;
    margin-bottom: 3rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.service-item:hover {
    border-color: var(--secondary-color);
    transform: translateX(8px);
}

.service-item.featured {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    border-color: var(--primary-color);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-content {
    flex: 1;
    padding-right: 2rem;
}

.service-details {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.service-duration {
    color: #5a6b5a;
    font-size: 0.95rem;
}

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

.btn-select {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-select:hover {
    background: #234a24;
    transform: scale(1.05);
}

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

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

.form-intro {
    text-align: center;
    color: #5a6b5a;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: #e8f5e8;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #234a24;
    transform: translateY(-2px);
}

.approach-visual {
    background: white;
}

.approach-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    border-radius: 8px;
}

.approach-text {
    flex: 1;
}

.case-study-compact {
    padding: 4rem 2rem;
}

.case-outcome {
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 1rem;
}

.urgency-block {
    background: var(--light-bg);
    text-align: center;
}

.values-section {
    background: white;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.value-item h3 {
    color: var(--primary-color);
}

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

.final-cta h2 {
    color: white;
}

.site-footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--text-light);
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.sticky-cta a {
    display: block;
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 140, 66, 0.4);
    font-weight: 500;
    transition: all 0.3s;
}

.sticky-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 140, 66, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 47, 26, 0.98);
    padding: 1.5rem;
    z-index: 2000;
    backdrop-filter: blur(10px);
    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: 2rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-cookie.accept {
    background: var(--secondary-color);
    color: var(--dark-bg);
}

.btn-cookie.accept:hover {
    background: #a8c973;
}

.btn-cookie.reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

@media (max-width: 968px) {
    .floating-nav {
        top: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        margin-top: 1rem;
        min-width: 200px;
    }

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

    .hamburger {
        display: flex;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-block {
        flex-direction: column;
        padding: 6rem 1.5rem 3rem;
    }

    .hero-visual {
        padding-left: 0;
        margin-top: 2rem;
        width: 100%;
    }

    .split-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .services-list {
        gap: 1.5rem;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }

    .service-content {
        padding-right: 0;
        margin-bottom: 1.5rem;
    }

    .btn-select {
        width: 100%;
    }

    .approach-content {
        flex-direction: column-reverse;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .btn-cookie {
        width: 100%;
    }

    section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 580px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .service-details {
        flex-direction: column;
        gap: 0.5rem;
    }
}