:root {
    --primary: #2d5a3d;
    --primary-dark: #1e3d29;
    --secondary: #8b6914;
    --accent: #e8a832;
    --text: #2c2c2c;
    --text-light: #5a5a5a;
    --bg-light: #f9f7f3;
    --bg-cream: #fdfcf8;
    --bg-sage: #e8ede9;
    --white: #ffffff;
    --border: #d4d0c8;
    --shadow: rgba(45, 90, 61, 0.12);
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    line-height: 1.7;
    background: var(--bg-cream);
}

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

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

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

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

.ad-disclosure {
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 0.3px;
}

header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

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

nav a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    padding: 8px 0;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

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

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

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 60px 0;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.hero p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.8;
}

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

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow);
}

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

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

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

.btn-accent:hover {
    background: var(--secondary);
    color: var(--white);
}

.section {
    padding: 80px 0;
}

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

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

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

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
    line-height: 1.25;
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 48px;
}

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

.intro-block {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

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

.intro-image {
    flex: 1;
    background-color: var(--bg-sage);
    border-radius: 12px;
    overflow: hidden;
}

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

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

.problem-grid {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

.problem-card {
    flex: 1;
    background: var(--white);
    padding: 36px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.problem-card .icon {
    width: 56px;
    height: 56px;
    background: var(--bg-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.problem-card .icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

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

.problem-card p {
    color: var(--text-light);
    font-size: 15px;
}

.story-section {
    position: relative;
}

.story-content {
    display: flex;
    gap: 80px;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 28px;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 17px;
}

.story-text blockquote {
    background: var(--bg-sage);
    padding: 24px 28px;
    border-left: 4px solid var(--primary);
    margin: 28px 0;
    font-style: italic;
    color: var(--text-light);
}

.story-sidebar {
    flex: 0.8;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.story-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 32px var(--shadow);
}

.story-card h4 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-card ul {
    list-style: none;
}

.story-card li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.story-card li:last-child {
    border-bottom: none;
}

.story-card li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

.benefits-section {
    overflow: hidden;
}

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

.benefit-item {
    flex: 1 1 calc(50% - 12px);
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px var(--shadow);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-sage);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.benefit-content h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 15px;
    color: var(--text-light);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px var(--shadow);
}

.service-image {
    height: 200px;
    background-color: var(--bg-sage);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
    min-height: 66px;
}

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

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

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

.testimonials-section {
    position: relative;
}

.testimonials-wrapper {
    display: flex;
    gap: 32px;
}

.testimonial {
    flex: 1;
    background: var(--white);
    padding: 36px;
    border-radius: 12px;
    position: relative;
}

.testimonial::before {
    content: """;
    position: absolute;
    top: 20px;
    left: 28px;
    font-size: 72px;
    color: var(--bg-sage);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: var(--bg-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 14px;
    color: var(--text-light);
}

.cta-section {
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    background: linear-gradient(135deg, var(--bg-sage) 0%, var(--bg-light) 100%);
}

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

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.form-info p {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 17px;
}

.form-features {
    list-style: none;
}

.form-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
}

.form-features li::before {
    content: "";
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.form-wrapper {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 12px 48px var(--shadow);
}

.form-wrapper h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 28px;
    text-align: center;
}

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

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

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

.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(45, 90, 61, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 17px;
    margin-top: 8px;
}

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

.about-hero h1 {
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 16px;
}

.about-image {
    flex: 1;
    background-color: var(--bg-sage);
    border-radius: 12px;
    overflow: hidden;
}

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

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

.value-card {
    flex: 1;
    text-align: center;
    padding: 36px 24px;
}

.value-card .icon {
    width: 72px;
    height: 72px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px var(--shadow);
}

.value-card .icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

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

.value-card p {
    color: var(--text-light);
    font-size: 15px;
}

.contact-hero {
    background: var(--bg-sage);
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 44px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 18px;
    color: var(--text-light);
}

.contact-content {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

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

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-sage);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

.contact-item p {
    color: var(--text-light);
    font-size: 15px;
}

.contact-form-wrapper {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 32px var(--shadow);
}

.page-hero {
    background: var(--bg-sage);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 40px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-light);
    font-size: 17px;
}

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

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

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-light);
}

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

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-light);
}

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

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

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

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

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

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

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

.footer-main {
    display: flex;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-brand {
    flex: 1.5;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand .logo span {
    color: var(--accent);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.7;
}

.footer-links {
    flex: 1;
}

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

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: color 0.2s;
}

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

.footer-contact {
    flex: 1.2;
}

.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

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

.footer-legal a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color 0.2s;
}

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

.disclaimer {
    background: var(--bg-light);
    padding: 32px 0;
    border-top: 1px solid var(--border);
}

.disclaimer p {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.8;
}

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

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

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

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-light);
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

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

.cookie-buttons .btn {
    padding: 12px 24px;
    font-size: 14px;
}

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

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

.sticky-cta .btn {
    box-shadow: 0 8px 32px var(--shadow);
}

@media (max-width: 992px) {
    .intro-block,
    .about-content,
    .form-container,
    .contact-content,
    .story-content {
        flex-direction: column;
    }

    .story-sidebar {
        position: static;
    }

    .footer-main {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 1 1 100%;
        margin-bottom: 32px;
    }
}

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

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: 0 8px 24px var(--shadow);
        display: none;
    }

    nav ul.active {
        display: flex;
    }

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

    nav li:last-child {
        border-bottom: none;
    }

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

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 17px;
    }

    .section-title {
        font-size: 28px;
    }

    .problem-grid,
    .values-grid,
    .testimonials-wrapper {
        flex-direction: column;
    }

    .benefit-item {
        flex: 1 1 100%;
    }

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

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

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