/** SEOX-2502 Prostabiotic — recolor stock multi-1 (green/orange) -> macet blue palette **/

:root {
    /* macet blue brand replaces stock green accents */
    --accent-green: #4E68A5;
    --accent-green-dark: #4E68A5;
    --accent-green-border: #4E68A5;
    --accent-green-soft: #EAEEF7;
    --start-accent: #4E68A5;
    /* hero stat "yellow" card -> white (macet has white/white/dark) */
    --primary-yellow: #FFFFFF;
    /* order CTA gradient (macet orange-peach) */
    --big-button-gradient: linear-gradient(90deg, #FFD9AF 0%, #FFAA5A 100%);
}

/* H1 + brand highlight = blue (via --accent-green-dark override above) */
#start h1 {
    color: var(--accent-green-dark);
}
#start .selected {
    -webkit-text-fill-color: var(--accent-green-dark);
}
.selected {
    background: var(--accent-green-dark);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* secondary / internal-link buttons = solid blue, white text (macet) */
.big-button.green-btn {
    background: #4E68A5;
}

/* hover darkens own color (palette-agnostic) */
.big-button:hover {
    filter: brightness(0.93);
}

/* hero stat yellow card -> white to match macet */
#start .section__item.yellow {
    background: #FFFFFF;
}

/* SEOX-2502 review (Anastasiya M): highlight compliance declaration */
.declaration-note {
    background: #EAEEF7;
    border-left: 4px solid #4E68A5;
    border-radius: 8px;
    padding: 14px 18px;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
}
.declaration-note strong {
    color: #4E68A5;
}
