body {
    background:#f4f7f3; /* мягкий светло‑зелёный, почти сероватый */
    color:#1a1a1a;
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

h1,h2,h3 {
    color:#3f4f3c; /* спокойный тёмно‑оливковый */
}

.hero {
    background:#eef3ea; /* мягкий зелёно‑серый */
    padding:80px 20px;
    border-bottom:1px solid #d9e2d4;
}

/* YELLOW CTA BUTTON — мягкая, но заметная */
.cta-btn {
    background:#f6d85a; /* мягкий жёлтый */
    color:#000;
    padding:20px 48px;
    border-radius:14px;
    font-weight:900;
    font-size:1.35rem;
    text-decoration:none;
    display:inline-block;
    box-shadow:0 4px 0 #c9b04a; /* тёплая тень */
    transition:0.2s ease;
}
.cta-btn:hover {
    background:#edcb47; /* чуть темнее при наведении */
    box-shadow:0 3px 0 #b39c3f;
    transform:translateY(1px);
    color:#000;
}

.card {
    border:1px solid #d9e2d4;
    border-radius:12px;
}

#toc a {
    text-decoration:none;
    color:#3f4f3c;
}
#toc a:hover {
    text-decoration:underline;
}

.equal-card {
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    height:100%;
}

/* CTA animations — адаптированы под жёлтый */
@keyframes ctaPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 rgba(246, 216, 90, 0.0); }
    50% { transform: scale(1.06); box-shadow: 0 0 18px rgba(246, 216, 90, 0.45); }
    100% { transform: scale(1); box-shadow: 0 0 0 rgba(246, 216, 90, 0.0); }
}
.cta-pulse { animation: ctaPulse 6s ease-in-out infinite; }

@keyframes ctaShake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
    75% { transform: translateX(-1px); }
    100% { transform: translateX(0); }
}
.cta-btn-hover:hover { animation: ctaShake 0.25s ease; }

.cta-animated {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.cta-animated.show {
    opacity: 1;
    transform: translateY(0);
}

/* SVG icons */
.benefit-icon {
    width:42px;
    height:42px;
    margin-bottom:12px;
    fill:#4f5f4a; /* тёмный оливковый */
    opacity:0.9;
}
