:root {
    --primary: #1a5f4a;
    --primary-dark: #134438;
    --secondary: #e8a54b;
    --accent: #d35d3a;
    --bg-light: #faf8f5;
    --bg-warm: #f5efe8;
    --bg-dark: #1c2a26;
    --text-dark: #2d3a36;
    --text-muted: #5c6b66;
    --text-light: #f5f5f5;
    --border: #d8d2c8;
    --shadow: rgba(26,95,74,0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
}

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

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

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

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

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

header {
    background: var(--bg-dark);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

nav a {
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: background 0.25s, color 0.25s;
}

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

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    margin: 5px 0;
    transition: 0.3s;
}

.hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(232,165,75,0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 700px;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.25s, background 0.25s;
    border: none;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: #d49a3e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,165,75,0.35);
    color: var(--text-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

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

.btn-accent {
    background: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    background: #c04f2d;
    transform: translateY(-2px);
    color: #fff;
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.section {
    padding: 70px 0;
}

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

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

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.section-dark .section-title {
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.editorial-block {
    margin-bottom: 48px;
}

.editorial-block h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.editorial-block p {
    margin-bottom: 16px;
}

.editorial-block ul {
    margin: 20px 0 20px 24px;
}

.editorial-block li {
    margin-bottom: 10px;
}

.inline-image {
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px var(--shadow);
}

.inline-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.inline-image figcaption {
    padding: 12px 16px;
    background: var(--bg-warm);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.split-section {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.split-section > * {
    flex: 1 1 400px;
}

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

.split-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px var(--shadow);
}

.split-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.card {
    flex: 1 1 320px;
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px var(--shadow);
}

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

.card-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.card p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    margin: 16px 0;
}

.service-card .price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.testimonial {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 24px;
    border-left: 4px solid var(--secondary);
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

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

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author span {
    font-weight: 600;
    color: var(--primary-dark);
}

.testimonial-author small {
    display: block;
    color: var(--text-muted);
    font-weight: 400;
}

.form-container {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.25s, box-shadow 0.25s;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26,95,74,0.1);
}

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

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    margin: 48px 0;
}

.cta-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.cta-banner p {
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    animation: pulse 2s infinite;
}

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

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

.stat-item {
    flex: 1 1 180px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.section-dark .stat-label {
    color: rgba(255,255,255,0.7);
}

.icon-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.icon-list .icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-list .icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

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

.contact-item .icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--primary-dark);
}

.contact-item p {
    color: var(--text-muted);
}

footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 24px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color 0.25s;
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 20px 24px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

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

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

.cookie-inner p {
    flex: 1 1 500px;
    font-size: 0.95rem;
}

.cookie-inner a {
    color: var(--secondary);
}

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.25s;
}

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

.cookie-accept:hover {
    background: #d49a3e;
}

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--text-light);
}

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

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

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

.thanks-container h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.thanks-container p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 32px;
}

.page-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.page-header p {
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin: 32px 0 16px;
    color: var(--primary-dark);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
}

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

.highlight-box {
    background: var(--bg-warm);
    border-left: 4px solid var(--secondary);
    padding: 24px;
    margin: 32px 0;
    border-radius: 0 12px 12px 0;
}

.highlight-box p {
    margin: 0;
    font-size: 1.05rem;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-popular {
    background: var(--accent);
    color: #fff;
}

.badge-new {
    background: var(--secondary);
    color: var(--text-dark);
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.faq-item h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
    cursor: pointer;
}

.faq-item p {
    color: var(--text-muted);
}

.map-placeholder {
    background: var(--bg-warm);
    height: 300px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav {
        display: none;
        width: 100%;
        flex-direction: column;
        padding-top: 16px;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 12px 16px;
    }

    .hero {
        padding: 50px 0 70px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section {
        padding: 50px 0;
    }

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

    .split-section {
        gap: 32px;
    }

    .split-image img {
        height: 260px;
    }

    .form-container {
        padding: 24px;
    }

    .cta-banner {
        padding: 32px 24px;
    }

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

    .footer-grid {
        gap: 32px;
    }

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

    .stats-row {
        gap: 24px;
    }

    .stat-number {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .card {
        padding: 24px;
    }
}
