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

:root {
    --bg: #f6f1eb;
    --surface: #fff;
    --sage: #5a7a62;
    --teal: #2a8a7a;
    --text: #2c2a25;
    --text-light: #9e968a;
    --border: rgba(90, 122, 98, 0.15);
}

body {
    font-family: "Manrope", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

.lp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(246, 241, 235, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-header__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.lp-header__logo img {
    width: 34px;
    height: 40px;
    display: block;
    object-fit: contain;
}

.lp-header__logo-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.lp-header__back {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
}

.lp-header__back:hover { opacity: 0.75; }

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 56px 32px 80px;
}

.doc-title-block {
    margin-bottom: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.doc-title-block h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 8px;
}

.doc-title-block .doc-meta {
    font-size: 0.82rem;
    color: var(--text-light);
}

.doc-content p {
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 14px;
}

.doc-content p > strong:only-child {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--teal);
    margin-top: 36px;
    margin-bottom: 4px;
    line-height: 1.35;
}

.doc-content > p:first-child > strong:only-child,
.doc-content > p:nth-child(2) > strong:only-child {
    font-size: 1.25rem;
    color: var(--text);
    margin-top: 0;
}

.doc-content ul {
    margin: 6px 0 16px;
    padding-left: 0;
    list-style: none;
}

.doc-content ul li {
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--text);
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.doc-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
}

.doc-content ul li p { margin-bottom: 0; }

.doc-content em {
    font-style: italic;
    color: var(--text-light);
}

.lp-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 28px 32px;
    text-align: center;
}

.lp-footer__copy {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.lp-footer__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.lp-footer__links a {
    font-size: 0.78rem;
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

.lp-footer__links a:hover { text-decoration: underline; }

.lp-footer__links span {
    font-size: 0.78rem;
    color: var(--text-light);
}

@media (max-width: 600px) {
    main { padding: 36px 20px 60px; }
    .lp-header { padding: 12px 20px; }
    .doc-title-block h1 { font-size: 1.5rem; }
    .lp-header__logo-text { font-size: 0.95rem; }
}
