:root {
    --primary: #1a5f2a;
    --primary-dark: #0d4a1a;
    --secondary: #2d7d3e;
    --accent: #4caf50;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --text-muted: #6b6b6b;
    --bg-light: #ffffff;
    --bg-soft: #f8faf8;
    --bg-dark: #1a2e1d;
    --border: #d4e5d7;
    --shadow: rgba(26, 95, 42, 0.12);
    --fallback-img: #c8d9cb;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

a:hover {
    color: var(--primary-dark);
}

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

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

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

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

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

p {
    margin-bottom: 1rem;
}

.ad-disclosure {
    background: var(--bg-soft);
    padding: 8px 0;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.top-nav {
    background: var(--bg-light);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px var(--shadow);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

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

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

.nav-links a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--fallback-img);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 46, 29, 0.88) 0%, rgba(26, 95, 42, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    max-width: 680px;
    padding: 60px 0;
}

.hero-content h1 {
    color: var(--text-light);
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.92;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--secondary);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
}

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

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

.section {
    padding: 90px 0;
}

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

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

.section-dark h2,
.section-dark h3 {
    color: var(--text-light);
}

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

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

.problem-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-visual {
    flex: 1;
    background-color: var(--fallback-img);
    border-radius: 12px;
    overflow: hidden;
}

.problem-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.insight-block {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.insight-main {
    flex: 2;
}

.insight-side {
    flex: 1;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 24px var(--shadow);
}

.insight-stat {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
}

.benefits-flow {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px;
    background: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 2px 12px var(--shadow);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--text-light);
}

.benefit-content h3 {
    margin-bottom: 8px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    display: flex;
    gap: 28px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-img {
    width: 280px;
    flex-shrink: 0;
    background-color: var(--fallback-img);
}

.service-img img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.service-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

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

.testimonial-section {
    padding: 80px 0;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-card {
    display: flex;
    gap: 32px;
    padding: 36px;
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: 0 4px 24px var(--shadow);
}

.testimonial-card:nth-child(even) {
    flex-direction: row-reverse;
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--fallback-img);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.cta-block {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 60px 48px;
    border-radius: 16px;
    text-align: center;
    color: var(--text-light);
    margin: 40px 0;
}

.cta-block h2 {
    color: var(--text-light);
    margin-bottom: 16px;
}

.cta-block p {
    opacity: 0.92;
    margin-bottom: 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-block .btn-primary {
    background: var(--text-light);
    color: var(--primary);
}

.cta-block .btn-primary:hover {
    background: var(--bg-soft);
    transform: translateY(-2px);
}

.form-section {
    background: var(--bg-soft);
    padding: 80px 0;
}

.form-wrapper {
    max-width: 580px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 40px var(--shadow);
}

.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;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.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(26, 95, 42, 0.15);
}

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

.form-submit {
    width: 100%;
    margin-top: 16px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 48px 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.trust-badge svg {
    width: 48px;
    height: 48px;
    fill: var(--primary);
}

.trust-badge span {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
}

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

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

.footer-col {
    flex: 1;
}

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

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

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

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

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

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

.disclaimer {
    background: #f0f4f1;
    padding: 24px;
    border-radius: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 40px;
}

.references-section {
    padding: 40px 0;
    background: var(--bg-soft);
}

.references-list {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.references-list a {
    color: var(--primary);
    word-break: break-all;
}

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

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
}

.cookie-text a {
    color: var(--accent);
}

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.cookie-accept {
    background: var(--accent);
    color: var(--text-light);
}

.cookie-accept:hover {
    background: var(--secondary);
}

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

.cookie-reject:hover {
    border-color: var(--text-light);
}

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

.page-header h1 {
    color: var(--text-light);
    margin-bottom: 12px;
}

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

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

.content-page h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.content-page h3 {
    margin-top: 28px;
    margin-bottom: 12px;
}

.content-page ul,
.content-page ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

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

.about-intro {
    display: flex;
    gap: 48px;
    align-items: center;
}

.about-intro-text {
    flex: 1;
}

.about-intro-img {
    flex: 1;
    background-color: var(--fallback-img);
    border-radius: 12px;
    overflow: hidden;
}

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

.values-grid {
    display: flex;
    gap: 32px;
    margin-top: 40px;
}

.value-card {
    flex: 1;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
}

.value-card svg {
    width: 48px;
    height: 48px;
    fill: var(--primary);
    margin-bottom: 16px;
}

.contact-grid {
    display: flex;
    gap: 48px;
}

.contact-info {
    flex: 1;
}

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

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

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

.contact-map {
    flex: 1;
    background-color: var(--fallback-img);
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

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

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

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--text-light);
}

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

.thanks-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.sticky-cta {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 99;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta .btn {
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-light);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: 0 8px 24px var(--shadow);
    }

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

    .nav-links li {
        border-bottom: 1px solid var(--border);
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
    }

    .hamburger {
        display: flex;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .problem-grid,
    .insight-block,
    .about-intro,
    .contact-grid {
        flex-direction: column;
    }

    .problem-visual,
    .insight-side,
    .about-intro-img {
        width: 100%;
    }

    .service-card {
        flex-direction: column;
    }

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

    .testimonial-card,
    .testimonial-card:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-avatar {
        margin: 0 auto;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

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

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

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

    .form-wrapper {
        padding: 32px 24px;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 60px 0;
    }

    .hero-section {
        min-height: 70vh;
    }

    .btn {
        padding: 14px 28px;
    }

    .trust-badges {
        gap: 24px;
    }

    .cta-block {
        padding: 40px 24px;
    }
}
