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

:root {
    --forest: #2d5a3d;
    --moss: #6b8e6b;
    --earth: #8b7355;
    --sky: #a8c5d8;
    --cream: #f5f2eb;
    --stone: #4a4a4a;
    --leaf: #4a7c59;
    --sand: #e8dcc4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--stone);
    background: var(--cream);
}

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

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

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

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

.narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(255,255,255,0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo svg {
    width: 32px;
    height: 32px;
}

nav {
    display: flex;
    align-items: center;
}

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

nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--stone);
    padding: 8px 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--forest);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--forest);
    transition: 0.3s;
}

.hero-editorial {
    padding: 160px 20px 100px;
    background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-editorial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    background-size: 30px 30px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-editorial h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    max-width: 800px;
}

.hero-editorial .lead {
    font-size: 1.35rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 35px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: var(--forest);
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--forest);
}

.btn-secondary {
    display: inline-block;
    background: var(--forest);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-outline {
    display: inline-block;
    border: 2px solid var(--forest);
    color: var(--forest);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

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

.editorial-section {
    padding: 80px 20px;
}

.editorial-section.alt {
    background: white;
}

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

.editorial-section.sand {
    background: var(--sand);
}

.section-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--moss);
    margin-bottom: 15px;
    font-weight: 600;
}

.dark .section-label {
    color: var(--sky);
}

.editorial-title {
    font-size: 2.4rem;
    color: var(--forest);
    margin-bottom: 30px;
    line-height: 1.3;
}

.dark .editorial-title {
    color: white;
}

.editorial-text {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--stone);
}

.dark .editorial-text {
    color: rgba(255,255,255,0.9);
}

.inline-image {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.inline-image img {
    width: 100%;
    display: block;
}

.inline-image svg {
    width: 100%;
    height: 300px;
    display: block;
}

.image-caption {
    font-size: 0.9rem;
    color: var(--moss);
    padding: 15px 20px;
    background: white;
    font-style: italic;
}

.quote-block {
    border-left: 4px solid var(--forest);
    padding: 25px 30px;
    margin: 40px 0;
    background: white;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--forest);
    border-radius: 0 12px 12px 0;
}

.dark .quote-block {
    background: rgba(255,255,255,0.1);
    border-left-color: var(--sky);
    color: white;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--forest);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--forest);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--stone);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 15px;
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--moss);
}

.inline-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
    border-radius: 12px;
    color: white;
}

.inline-cta p {
    flex: 1;
    font-size: 1.1rem;
    margin: 0;
}

.inline-cta .btn-primary {
    flex-shrink: 0;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 0;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--forest);
    display: block;
}

.dark .stat-number {
    color: white;
}

.stat-label {
    font-size: 1rem;
    color: var(--moss);
    margin-top: 10px;
}

.dark .stat-label {
    color: var(--sky);
}

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

.team-member {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    background: var(--moss);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo svg {
    width: 80px;
    height: 80px;
    fill: white;
}

.team-member h4 {
    font-size: 1.2rem;
    color: var(--forest);
    margin-bottom: 5px;
}

.team-member .role {
    color: var(--moss);
    font-size: 0.95rem;
}

.testimonial {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: var(--moss);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--stone);
    margin-bottom: 20px;
    padding-left: 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 40px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--moss);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar svg {
    width: 25px;
    height: 25px;
    fill: white;
}

.testimonial-name {
    font-weight: 600;
    color: var(--forest);
}

.testimonial-company {
    font-size: 0.9rem;
    color: var(--moss);
}

.contact-form {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-top: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.contact-info {
    margin-top: 60px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--forest);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.contact-item h4 {
    color: var(--forest);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--stone);
    line-height: 1.6;
}

footer {
    background: var(--stone);
    color: white;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 25px;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-text h4 {
    color: var(--forest);
    margin-bottom: 8px;
}

.cookie-text p {
    color: var(--stone);
    font-size: 0.95rem;
}

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

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

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

.sticky-cta .btn-secondary {
    padding: 18px 30px;
    box-shadow: 0 10px 40px rgba(45, 90, 61, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.page-header {
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

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

.legal-content {
    padding: 60px 20px;
    background: white;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--forest);
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--forest);
    margin: 30px 0 15px;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
}

.thanks-box {
    background: white;
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.thanks-box h1 {
    font-size: 2.4rem;
    color: var(--forest);
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 1.15rem;
    color: var(--stone);
    line-height: 1.8;
    margin-bottom: 30px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    font-size: 1.1rem;
    color: var(--stone);
    display: block;
    padding: 10px 0;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-editorial h1 {
        font-size: 2.2rem;
    }

    .hero-editorial .lead {
        font-size: 1.1rem;
    }

    .editorial-title {
        font-size: 1.8rem;
    }

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

    .form-row {
        flex-direction: column;
    }

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

    .stats-row {
        flex-direction: column;
    }

    .stat-item {
        margin-bottom: 20px;
    }

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

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

    .inline-cta {
        flex-direction: column;
        text-align: center;
    }

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

    .thanks-box {
        padding: 40px 25px;
    }
}
