:root {
    --primary: #2d5a3d;
    --primary-light: #4a7c59;
    --primary-dark: #1e3d2a;
    --accent: #c4a35a;
    --accent-light: #d4b86a;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f7f4;
    --bg-cream: #faf9f6;
    --bg-white: #ffffff;
    --bg-dark: #1e3d2a;
    --border-light: #e8e6e1;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-accent {
    background: var(--accent);
    color: var(--text-dark);
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

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

.btn-white:hover {
    background: var(--bg-cream);
    transform: translateY(-2px);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
}

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

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

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

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-desktop a {
    font-weight: 500;
    color: var(--text-medium);
    position: relative;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--primary);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 24px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-medium);
}

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

.mobile-nav a {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.split-section {
    display: flex;
    min-height: 100vh;
}

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

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

.split-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-visual img,
.split-visual svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section {
    padding-top: 73px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-title span {
    color: var(--accent);
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.section {
    padding: 100px 0;
}

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

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--bg-white);
}

.section-dark p {
    color: rgba(255,255,255,0.85);
}

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

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

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

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img svg {
    width: 100%;
    height: 100%;
}

.service-body {
    padding: 28px;
}

.service-body h3 {
    margin-bottom: 12px;
}

.service-body p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

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

.price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
}

.features-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.features-content {
    flex: 1;
}

.features-visual {
    flex: 1;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.feature-text h4 {
    margin-bottom: 4px;
}

.feature-text p {
    color: var(--text-light);
    margin-bottom: 0;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
}

.testimonials-wrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 6rem;
    color: var(--bg-light);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.25rem;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.cta-section {
    text-align: center;
    padding: 80px 24px;
}

.cta-section h2 {
    color: var(--bg-white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.1rem;
}

.form-section {
    padding: 100px 0;
}

.form-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    margin-bottom: 16px;
}

.form-info > p {
    color: var(--text-medium);
    margin-bottom: 32px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.form-wrap {
    flex: 1;
    background: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45,90,61,0.1);
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.about-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.about-hero h1 {
    margin-bottom: 24px;
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
}

.team-wrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card {
    flex: 1 1 calc(25% - 23px);
    min-width: 220px;
    text-align: center;
}

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

.team-avatar svg {
    width: 80px;
    height: 80px;
    color: var(--primary);
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.team-card .role {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 8px;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border-light);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: 55%;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: 55%;
}

.timeline-content {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.timeline-year {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 8px;
}

.timeline-content h4 {
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--bg-white);
    box-shadow: var(--shadow-soft);
}

footer {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 80px 0 0;
}

.footer-main {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 2;
    min-width: 280px;
}

.footer-brand .logo {
    color: var(--bg-white);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    color: var(--bg-white);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--accent);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 20px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

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

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

.cookie-inner p {
    flex: 1;
    margin-bottom: 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.cookie-inner p a {
    text-decoration: underline;
}

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

.cookie-buttons button {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.sticky-cta .btn {
    box-shadow: var(--shadow-medium);
}

.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px;
}

.thanks-content {
    max-width: 600px;
}

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    color: var(--primary);
}

.thanks-content h1 {
    margin-bottom: 16px;
}

.thanks-content p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.legal-page {
    padding: 160px 0 100px;
}

.legal-page h1 {
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.5rem;
    margin: 40px 0 16px;
}

.legal-page p,
.legal-page li {
    color: var(--text-medium);
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-page li {
    margin-bottom: 8px;
}

.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-hero p {
    color: var(--text-medium);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

    .split-section.reverse {
        flex-direction: column;
    }

    .split-visual {
        min-height: 400px;
    }

    .split-content {
        padding: 60px 40px;
    }

    .hero-title {
        font-size: 2.75rem;
    }

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

    .features-split.reverse {
        flex-direction: column;
    }

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

    .stats-row {
        gap: 40px;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding: 0 0 0 40px;
        justify-content: flex-start;
    }

    .timeline-dot {
        left: 0;
    }
}

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

    .header-cta .btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }

    .hero-title {
        font-size: 2.25rem;
    }

    .section {
        padding: 60px 0;
    }

    .split-content {
        padding: 40px 24px;
    }

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

    .testimonial-card {
        flex: 1 1 100%;
        padding: 28px;
    }

    .form-wrap {
        padding: 28px;
    }

    .footer-main {
        gap: 40px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

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

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

    .hero-buttons .btn {
        width: 100%;
    }

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

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }
}
