:root {
    --primary-color: #1a4d2e;
    --secondary-color: #4f7942;
    --accent-color: #d4af37;
    --text-dark: #1f1f1f;
    --text-medium: #444;
    --text-light: #666;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --max-width-narrow: 720px;
    --max-width-medium: 960px;
    --max-width-wide: 1200px;
}

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

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

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

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

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

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

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

.cookie-content {
    max-width: var(--max-width-medium);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: #c49d2f;
}

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

.btn-cookie-reject:hover {
    border-color: rgba(255,255,255,0.6);
}

.nav-minimal {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: var(--max-width-medium);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-medium);
}

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

.editorial-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 60px 24px;
}

.article-header {
    margin-bottom: 48px;
    text-align: center;
}

.article-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.article-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    font-weight: 400;
    line-height: 1.4;
}

.story-flow {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.intro-story,
.problem-section,
.insight-deep,
.trust-section,
.solution-reveal,
.urgency-section,
.final-story {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
}

.intro-story p,
.problem-section p,
.insight-deep p,
.trust-section p,
.solution-reveal p,
.urgency-section p,
.final-story p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
}

h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 8px;
}

.inline-cta {
    margin: 32px 0;
    text-align: center;
}

.cta-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
    display: inline-block;
}

.cta-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.story-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
}

figcaption {
    padding: 12px 16px;
    background: var(--bg-light);
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

.insight-quote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 24px 28px;
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 32px 0;
}

.cta-block-inline {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 48px 32px;
    border-radius: 8px;
    margin: 48px 0;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: white;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.9);
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #c49d2f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.inline-image-small {
    margin: 32px 0;
    border-radius: 8px;
    overflow: hidden;
    max-width: 500px;
}

.data-highlight {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    margin: 32px 0;
}

.data-number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 12px;
}

.data-label {
    display: block;
    font-size: 18px;
    color: var(--text-medium);
}

.testimonial {
    background: white;
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 8px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    position: relative;
    margin: 32px 0;
}

.testimonial::before {
    content: '"';
    font-size: 64px;
    color: var(--accent-color);
    position: absolute;
    top: 16px;
    left: 20px;
    line-height: 1;
    opacity: 0.3;
}

cite {
    display: block;
    margin-top: 16px;
    font-size: 15px;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.services-preview {
    margin: 64px 0;
}

.services-editorial {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.service-card.featured {
    border: 2px solid var(--accent-color);
    background: linear-gradient(to bottom, #fffdf5, white);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.service-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

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

.btn-select-service {
    background: var(--primary-color);
    color: white;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select-service:hover {
    background: var(--secondary-color);
}

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

.cta-urgent {
    background: #f5f5f5;
    padding: 40px 32px;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed var(--accent-color);
    margin: 40px 0;
}

.cta-urgent h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.cta-urgent p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.btn-primary-large {
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-section {
    background: var(--bg-light);
    padding: 48px 32px;
    border-radius: 8px;
    margin: 64px 0;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.editorial-form {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-privacy {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-medium);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label a {
    text-decoration: underline;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    text-align: center;
    padding: 48px 0;
}

.final-cta h2 {
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 28px;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    padding: 16px 24px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 999;
    display: none;
}

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

.sticky-cta-content {
    max-width: var(--max-width-medium);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sticky-cta-text {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.btn-sticky {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    white-space: nowrap;
}

.btn-sticky:hover {
    background: #c49d2f;
}

.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 24px 24px;
    margin-top: 80px;
}

.footer-content {
    max-width: var(--max-width-medium);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-column h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: var(--max-width-medium);
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

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

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

.thanks-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-page p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin-bottom: 16px;
}

.service-selected {
    background: var(--bg-light);
    padding: 16px 24px;
    border-radius: 6px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    margin: 24px 0;
}

.page-content {
    max-width: var(--max-width-medium);
    margin: 0 auto;
    padding: 60px 24px;
}

.page-content h1 {
    font-size: 40px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

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

.page-content li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.contact-info {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info p {
    margin-bottom: 12px;
}

.contact-info strong {
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .article-title {
        font-size: 52px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .sticky-cta-content {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .article-title {
        font-size: 32px;
    }

    .article-subtitle {
        font-size: 18px;
    }

    h2 {
        font-size: 26px;
    }

    .lead-text {
        font-size: 19px;
    }

    .intro-story p,
    .problem-section p,
    .insight-deep p,
    .trust-section p,
    .solution-reveal p,
    .urgency-section p,
    .final-story p {
        font-size: 17px;
    }

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

    .btn-sticky {
        width: 100%;
    }
}