body {
    background:#fff9e8; /* м'який жовтий */
    color:#1a1a1a;
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
h1,h2,h3 {color:#6a5a00;}

.hero {
    background:#fff6d9;
    padding:80px 20px;
    border-bottom:1px solid #e8dfb8;
}

/* GREEN CTA BUTTON */
.cta-btn {
    background:#7ed957;
    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 #5aa93d;
    transition:0.2s ease;
}
.cta-btn:hover {
    background:#6acb46;
    box-shadow:0 3px 0 #4a8f33;
    transform:translateY(1px);
    color:#000;
}

.card {border:1px solid #e8dfb8; border-radius:12px;}
#toc a {text-decoration:none; color:#6a5a00;}
#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(126, 217, 87, 0.0); }
    50% { transform: scale(1.06); box-shadow: 0 0 18px rgba(126, 217, 87, 0.45); }
    100% { transform: scale(1); box-shadow: 0 0 0 rgba(126, 217, 87, 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:#6a5a00;
    opacity:0.9;
}
