:root {
    --primary: #1a5f4a;
    --primary-light: #2d8a6e;
    --primary-dark: #0d3d2f;
    --accent: #c9a227;
    --accent-light: #e0c040;
    --text: #1a1a2e;
    --text-light: #4a4a5a;
    --text-muted: #7a7a8a;
    --bg: #ffffff;
    --bg-warm: #f7f5f1;
    --bg-green: #eef6f2;
    --border: #e4e2dc;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    background: var(--bg);
}

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

a {
    color: inherit;
}

/* Навигация */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.5vw, 1.55rem);
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Не растягиваем и не схлопываем в 0 — бренд остаётся читаемым */
    flex: 0 1 auto;
    min-width: min(11rem, 48%);
    max-width: calc(100% - 9rem);
}

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

.logo.light {
    color: #fff;
    /* В футере имя бренда показываем целиком */
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
    flex: none;
    min-width: 0;
    max-width: none;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.92rem;
    transition: color 0.25s ease;
}

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

.nav-cta {
    flex-shrink: 0;
    background: var(--primary);
    color: white;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Hero — один цельный блок */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7.5rem 1.5rem 5rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(201, 162, 39, 0.18), transparent 55%),
        radial-gradient(ellipse 70% 70% at 10% 80%, rgba(45, 138, 110, 0.35), transparent 50%),
        linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 52%, #1f6b55 100%);
}

.hero-atmosphere {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.04) 50%, transparent 60%);
    background-size: 200% 100%;
    animation: shimmer 14s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { background-position: 100% 0; opacity: 0.4; }
    50% { background-position: 0% 0; opacity: 0.9; }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.35rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.hero-cta-group {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero-cta-group.center {
    justify-content: center;
}

.hero-trust {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    max-width: 560px;
    margin: 0 auto;
}

.btn-primary {
    background: var(--accent);
    color: var(--text);
    padding: 1rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 162, 39, 0.35);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-secondary.dark {
    color: var(--primary);
    border-color: rgba(26, 95, 74, 0.35);
}

.btn-secondary.dark:hover {
    background: var(--bg-green);
    border-color: var(--primary);
}

/* Общие секции */
.section {
    padding: 5.5rem 0;
    background: var(--bg);
}

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

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

.section-dark {
    background: linear-gradient(145deg, var(--primary-dark), var(--primary));
    color: #fff;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container.narrow {
    max-width: 760px;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.75rem;
}

.section-header.left {
    text-align: left;
    margin-left: 0;
}

.section-header h2,
.section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1rem;
}

.section-dark .section-header h2,
.section-dark h2 {
    color: #fff;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.08rem;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.82);
}

.prose p {
    color: var(--text-light);
    margin-bottom: 1.15rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.prose.wide {
    max-width: 820px;
}

.prose p:last-child {
    margin-bottom: 0;
}

/* Списки с галочками */
.check-list {
    list-style: none;
    margin: 2rem 0;
    display: grid;
    gap: 0.9rem;
}

.check-list.two-col {
    grid-template-columns: 1fr 1fr;
}

.check-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text);
}

.check-list li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.4rem;
    height: 1.4rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
    background: var(--bg-green);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
}

.section-dark .check-list li,
.section-dark .benefits-list li {
    color: #fff;
}

.extra-text,
.closing-line {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-top: 1.5rem;
}

.closing-line {
    font-weight: 500;
    color: var(--primary-dark);
    max-width: 720px;
}

/* Двухколоночный блок Monicor */
.split {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 3rem;
    align-items: start;
}

.fact-box {
    background: var(--bg-green);
    border-left: 4px solid var(--primary);
    padding: 1.75rem 1.5rem;
    border-radius: 0 16px 16px 0;
    position: sticky;
    top: 100px;
    animation: fadeUp 1s ease 0.15s both;
}

.fact-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.fact-box p:last-child {
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.7;
}

/* Fördelar */
.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    max-width: 920px;
    margin: 0 auto;
}

.benefits-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.02rem;
}

.benefits-list li strong {
    color: var(--accent-light);
    font-weight: 600;
}

/* Process steps */
.steps {
    list-style: none;
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    counter-reset: none;
}

.steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.steps li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.step-num {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.steps h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.steps p {
    color: var(--text-light);
    font-size: 0.98rem;
}

.center-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Disclaimer */
.section-disclaimer {
    background:
        linear-gradient(180deg, rgba(26, 95, 74, 0.04), transparent),
        var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-disclaimer h2 {
    font-size: clamp(1.7rem, 3vw, 2.1rem);
    margin-bottom: 1rem;
}

.section-disclaimer p {
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.8;
}

/* FAQ */
.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0 1.25rem;
    transition: border-color 0.2s ease;
}

.faq-item[open] {
    border-color: var(--primary-light);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    padding: 1.15rem 0;
    color: var(--text);
    position: relative;
    padding-right: 2rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 500;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    color: var(--text-light);
    padding: 0 0 1.2rem;
    line-height: 1.75;
}

/* Omdömen */
.placeholder-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.quotes blockquote {
    background: var(--bg-warm);
    padding: 1.75rem;
    border-radius: 16px;
    border-top: 3px solid var(--accent);
}

.quotes p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.55;
    color: var(--text);
}

/* CTA */
.section-cta {
    text-align: center;
    background:
        radial-gradient(ellipse at top, rgba(201, 162, 39, 0.12), transparent 55%),
        var(--bg-warm);
}

.section-cta h2 {
    margin-bottom: 1rem;
}

.section-cta > .container > p {
    color: var(--text-light);
    font-size: 1.08rem;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.cta-note {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* Footer */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand p {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 320px;
}

.footer-contact h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-contact ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.footer-contact li {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.footer-contact li span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

.footer-contact a {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
}

/* Адаптив */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .fact-box {
        position: static;
    }

    .check-list.two-col,
    .benefits-list,
    .quotes {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-contact li {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0 1rem;
        gap: 0.75rem;
    }

    .logo {
        min-width: min(9.5rem, 52%);
        max-width: calc(100% - 7.5rem);
    }

    .nav-cta {
        padding: 0.55rem 1rem;
        font-size: 0.8rem;
    }

    .section {
        padding: 4rem 0;
    }

    .hero {
        min-height: auto;
        padding: 7rem 1.25rem 4rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
